Skip to content

Commit 8637c07

Browse files
authored
Add Space.
1 parent 52c4ab6 commit 8637c07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/1443-minimum-time-to-collect-all-apples-in-a-tree.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const dfs = (curr, pre, graph, hasApple) => {
2020
pathLen += dfs(nextNode, curr, graph, hasApple);
2121
}
2222

23-
if (pathLen > 0 || hasApple[curr]) return pathLen+2;
23+
if (pathLen > 0 || hasApple[curr]) return pathLen + 2;
2424
return 0;
2525
}
2626

0 commit comments

Comments
 (0)