Skip to content

Commit fd08481

Browse files
committed
Runtime: 117 ms (Top 31.08%) | Memory: 46.1 MB (Top 80.63%)
1 parent a35704c commit fd08481

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/F/Find Bottom Left Tree Value/Find Bottom Left Tree Value.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 117 ms (Top 31.08%) | Memory: 46.1 MB (Top 80.63%)
12
var findBottomLeftValue = function(root) {
23
let arr=[];
34
let q=[root];
@@ -12,4 +13,4 @@ var findBottomLeftValue = function(root) {
1213
}
1314
}
1415
return arr[arr.length-1]
15-
};
16+
};

0 commit comments

Comments
 (0)