We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15f114a commit 8369e9bCopy full SHA for 8369e9b
javascript/0606-construct-string-from-binary-tree.js
@@ -22,7 +22,7 @@ const dfs = (node, strArr) => {
22
23
strArr.push(node.val);
24
25
- if (node.right || node.left) strArr.push("(");
+ if (node.right || node.left) strArr.push("(");
26
dfs(node.left, strArr);
27
if (node.right || node.left) strArr.push(")");
28
0 commit comments