Skip to content

Commit a99576b

Browse files
authored
Added space to 0096-unique-binary-search-trees.js
1 parent f6b987b commit a99576b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/0096-unique-binary-search-trees.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var numTrees = function(n) {
1515

1616
let total = 0;
1717
for(let i = 0; i < n; i++) {
18-
total += dfs(i) * dfs(n-1-i);
18+
total += dfs(i) * dfs(n - 1 - i);
1919
}
2020

2121
cache[n] = total;

0 commit comments

Comments
 (0)