We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51c2487 commit e3d80fbCopy full SHA for e3d80fb
javascript/0701-insert-into-a-binary-search-tree.js
@@ -14,18 +14,17 @@
14
* @return {TreeNode}
15
*/
16
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
+ return dfs(root, val);
+};
+
+const dfs = (root, val) => {
+ if (!root) {
+ return new TreeNode(val);
+ }
+ if (val > root.val) {
+ root.right = dfs(root.right, val);
27
return root;
28
}
29
30
- return dfs(root);
31
-};
+ root.left = dfs(root.left, val);
+ return root;
+}
0 commit comments