Skip to content

Commit e3d80fb

Browse files
authored
Add spaces after control flow statements.
1 parent 51c2487 commit e3d80fb

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

javascript/0701-insert-into-a-binary-search-tree.js

+12-13
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,17 @@
1414
* @return {TreeNode}
1515
*/
1616
var insertIntoBST = function(root, val) {
17-
18-
const dfs = (root) => {
19-
if(!root) {
20-
return new TreeNode(val);
21-
}
22-
if(val > root.val) {
23-
root.right = dfs(root.right);
24-
} else {
25-
root.left = dfs(root.left);
26-
}
17+
return dfs(root, val);
18+
};
19+
20+
const dfs = (root, val) => {
21+
if (!root) {
22+
return new TreeNode(val);
23+
}
24+
if (val > root.val) {
25+
root.right = dfs(root.right, val);
2726
return root;
2827
}
29-
30-
return dfs(root);
31-
};
28+
root.left = dfs(root.left, val);
29+
return root;
30+
}

0 commit comments

Comments
 (0)