We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76a325f commit a4b7540Copy full SHA for a4b7540
javascript/2864-maximum-odd-binary-number.js
@@ -10,7 +10,7 @@ var maximumOddBinaryNumber = function(s) {
10
s = s.split("").map((bit) => "0");
11
12
let i = 0;
13
- while(numberOf1s > 1) {
+ while (numberOf1s > 1) {
14
s[i] = "1";
15
i++;
16
numberOf1s--;
0 commit comments