We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4b7540 commit 6804180Copy full SHA for 6804180
javascript/2864-maximum-odd-binary-number.js
@@ -6,7 +6,7 @@
6
*/
7
var maximumOddBinaryNumber = function(s) {
8
9
- let numberOf1s = s.split("").filter((bit) => bit==="1").length;
+ let numberOf1s = s.split("").filter((bit) => bit === "1").length;
10
s = s.split("").map((bit) => "0");
11
12
let i = 0;
0 commit comments