Skip to content

Commit 8e164e9

Browse files
authored
Add spaces after control flow statements.
1 parent 8d299bb commit 8e164e9

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

javascript/0450-delete-node-in-a-bst.js

+11-9
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,28 @@
1515
* @return {TreeNode}
1616
*/
1717
var deleteNode = function(root, key) {
18-
if(!root) return root;
18+
if (!root) return root;
1919

20-
if(key === root.val) {
21-
if(!root.left) return root.right;
22-
if(!root.right) return root.left;
20+
if (key === root.val) {
21+
if (!root.left) return root.right;
22+
if (!root.right) return root.left;
2323

2424
// find the smallest val in right bst
2525
let curr = root.right;
26-
while(curr.left) {
26+
while (curr.left) {
2727
curr = curr.left;
2828
}
2929
// change the curr value
3030
root.val = curr.val;
3131

3232
root.right = deleteNode(root.right, root.val);
33-
} else if(key < root.val) {
33+
34+
return root;
35+
}
36+
if (key < root.val) {
3437
root.left = deleteNode(root.left, key);
35-
} else {
36-
root.right = deleteNode(root.right, key);
38+
return root;
3739
}
38-
40+
root.right = deleteNode(root.right, key);
3941
return root;
4042
};

0 commit comments

Comments
 (0)