We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6b987b commit a99576bCopy full SHA for a99576b
javascript/0096-unique-binary-search-trees.js
@@ -15,7 +15,7 @@ var numTrees = function(n) {
15
16
let total = 0;
17
for(let i = 0; i < n; i++) {
18
- total += dfs(i) * dfs(n-1-i);
+ total += dfs(i) * dfs(n - 1 - i);
19
}
20
21
cache[n] = total;
0 commit comments