Skip to content

Commit a4b7540

Browse files
authored
Add spaces after control flow statements.
Adding spaces.
1 parent 76a325f commit a4b7540

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/2864-maximum-odd-binary-number.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var maximumOddBinaryNumber = function(s) {
1010
s = s.split("").map((bit) => "0");
1111

1212
let i = 0;
13-
while(numberOf1s > 1) {
13+
while (numberOf1s > 1) {
1414
s[i] = "1";
1515
i++;
1616
numberOf1s--;

0 commit comments

Comments
 (0)