Skip to content

Commit be5fe52

Browse files
authored
Fixing Formatting 0894-all-possible-full-binary-trees.js
1 parent c01e62e commit be5fe52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

javascript/0894-all-possible-full-binary-trees.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
var allPossibleFBT = function(n) {
1717

1818
// even number of nodes can't make a full binary tree.
19-
if(!(n%2)) return [];
19+
if(!(n % 2)) return [];
2020

2121
const dfs = (n) => {
2222
if(n === 1) return [new TreeNode(0)];
2323

2424
const allPossibleTrees = [];
25-
for(let i = 1; i < n; i+=2) {
25+
for(let i = 1; i < n; i += 2) {
2626

2727
const leftNumOfNodes = i;
2828
const rightNumOfNodes = n - i - 1;

0 commit comments

Comments
 (0)