Skip to content

Commit 3c0e557

Browse files
committed
Removed example from answer.js for the third problem
1 parent 6193522 commit 3c0e557

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

daily-coding-problem/03/answer.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,6 @@ function serialize(root) {
99
return `${root.val} ${left} ${right}`;
1010
}
1111

12-
const x = (
13-
new Node('7',
14-
new Node('2',
15-
new Node('1')
16-
),
17-
new Node('5',
18-
new Node('3'),
19-
new Node('8')
20-
)
21-
)
22-
);
23-
2412
function deserialize(str) {
2513
let index = 0;
2614
const tokens = str.split(" ");

0 commit comments

Comments
 (0)