Skip to content

Commit c73e07c

Browse files
authored
Fixed Formatting 0958-check-completeness-of-a-binary-tree.js
1 parent b52d058 commit c73e07c

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

javascript/0958-check-completeness-of-a-binary-tree.js

+14-15
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var isCompleteTree = function(root) {
1919
// bfs until n-1 level of depth
2020

2121
const getDepth = (node) => {
22-
if(!node) return 0;
22+
if (!node) return 0;
2323
return 1 + Math.max(getDepth(node.left), getDepth(node.right));
2424
}
2525

@@ -29,43 +29,43 @@ var isCompleteTree = function(root) {
2929
q.enqueue(root);
3030

3131
const checkLastLevel = (arr) => {
32-
while(arr[arr.length - 1] === null) arr.pop();
32+
while (arr[arr.length - 1] === null) arr.pop();
3333

3434
let i = 0;
35-
while(i < arr.length) {
36-
if(arr[i] === null) return false;
35+
while (i < arr.length) {
36+
if (arr[i] === null) return false;
3737
i++;
3838
}
3939

4040
return true;
4141
}
4242

4343
let i = 0;
44-
while(i < depth) {
44+
while (i < depth) {
4545

4646
let size = q.size();
4747

48-
if(size !== 2**i) return false;
48+
if (size !== 2**i) return false;
4949

50-
while(size) {
50+
while (size) {
5151
const node = q.dequeue();
52-
if(!node.left && i !== depth-1) return false;
53-
if(!node.right && i !== depth-1) return false;
52+
if (!node.left && i !== depth - 1) return false;
53+
if (!node.right && i !== depth - 1) return false;
5454

55-
if(i !== depth - 1){
55+
if (i !== depth - 1) {
5656
q.enqueue(node.left);
5757
q.enqueue(node.right);
5858
} else {
5959

60-
if(!node.left) {
60+
if (!node.left) {
6161
q.enqueue(null);
6262
} else {
6363
q.enqueue(node.left);
6464
}
6565

66-
if(!node.right) {
66+
if (!node.right) {
6767
q.enqueue(null);
68-
} else {
68+
} else {
6969
q.enqueue(node.right);
7070
}
7171

@@ -76,7 +76,6 @@ var isCompleteTree = function(root) {
7676

7777
i++;
7878
}
79-
80-
79+
8180
return checkLastLevel(q.toArray());
8281
};

0 commit comments

Comments
 (0)