Skip to content

Commit 1111be4

Browse files
authored
Added Spaces
1 parent 18015ca commit 1111be4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

javascript/1361-validate-binary-tree-nodes.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ var validateBinaryTreeNodes = function(n, leftChild, rightChild) {
1515
const findRoot = () => {
1616

1717
const childrenSet = new Set();
18-
for(let i = 0; i < n; i++) {
18+
for (let i = 0; i < n; i++) {
1919
childrenSet.add(i);
2020
}
2121

22-
for(let i = 0; i < n; i++) {
22+
for (let i = 0; i < n; i++) {
2323
childrenSet.delete(leftChild[i]);
2424
childrenSet.delete(rightChild[i]);
2525
}
@@ -29,8 +29,8 @@ var validateBinaryTreeNodes = function(n, leftChild, rightChild) {
2929

3030
const dfs = (i) => {
3131

32-
if(i === -1) return true;
33-
if(visited.has(i)) return false;
32+
if (i === -1) return true;
33+
if (visited.has(i)) return false;
3434

3535
const left = leftChild[i];
3636
const right = rightChild[i];

0 commit comments

Comments
 (0)