A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary representation of N.
For example, number 9 has binary representation 1001 and contains a binary gap of length 2. The number 529 has binary representation 1000010001 and contains two binary gaps: one of length 4 and one of length 3. The number 20 has binary representation 10100 and contains one binary gap of length 1. The number 15 has binary representation 1111 and has no binary gaps. The number 32 has binary representation 100000 and has no binary gaps.
Write a function:
function solution(N);
that, given a positive integer N, returns the length of its longest binary gap. The function should return 0 if N doesn't contain a binary gap.
For example, given N = 1041 the function should return 5, because N has binary representation 10000010001 and so its longest binary gap is of length 5. Given N = 32 the function should return 0, because N has binary representation '100000' and thus no binary gaps.
Write an efficient algorithm for the following assumptions:
- N is an integer within the range [1..2,147,483,647].
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary)
}
[9]
example test n=1041=10000010001_2
tested program terminated with exit code 1
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
10000010001
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
1111
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
100000
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
1001
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(typeof binary)
}
[9]
example test n=1041=10000010001_2
tested program terminated with exit code 1
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
string
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
string
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
string
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
string
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
let biggestGap = 0;
let currentGap = 0;
for (let i = 0; i < binary.length; i++) {
if ()
}
console.log(typeof binary)
}
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
let biggestGap = 0;
let currentGap = 0;
for (let i = 01; i < binary.length; i++) {
if ()
}
console.log(typeof binary)
}
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] )
}
console.log(typeof binary)
}
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0' && binary[i - 1] === '1') {
currentGap = 1;
}
}
console.log(typeof binary)
}
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0' && binary[i - 1] === '1') {
currentGap = 1;
}
if (binary[i] === '1' && binary[i - 1] === '0') {
}
}
console.log(typeof binary)
}
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0' && binary[i - 1] === '1') {
currentGap = 1;
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
console.log(typeof binary)
}
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0' && binary[i - 1] === '1') {
currentGap = 1;
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
console.log(biggestGap)
}
[9]
example test n=1041=10000010001_2
tested program terminated with exit code 1
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
1
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
0
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
0
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
1
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0' && binary[i - 1] === '1') {
currentGap = 1;
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
console.log(biggestGap)
}
[9]
example test n=1041=10000010001_2
tested program terminated with exit code 1
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
10000010001 1
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
1111 0
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
100000 0
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
1001 1
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0' && binary[i - 1] === '1') {
currentGap = 1;
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
console.log(biggestGap)
}
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0' && binary[i - 1] === '1') {
currentGap = 1;
}
if (binary[i] === '0') {
currentGap++;
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
console.log(biggestGap)
}
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0' && binary[i - 1] === '1') {
currentGap = 1;
}
if (binary[i] === '0') {
currentGap++;
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
console.log(biggestGap)
}
[9]
example test n=1041=10000010001_2
tested program terminated with exit code 1
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
10000010001 6
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
1111 0
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
100000 0
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
1001 3
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0') && binary[i - 1] === '1') {
currentGap = 1;
}
if (binary[i] === '0') {
currentGap++;
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
console.log(biggestGap)
}
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0') {
if (binary[i - 1] === '0') {
currentGap++;
} else {
currentGap = 1;
}
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
console.log(biggestGap)
}
[9]
example test n=1041=10000010001_2
tested program terminated with exit code 1
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
10000010001 5
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
1111 0
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
100000 0
Invalid result type, integer expected, 'undefined' found Perhaps you are missing a 'return'?stdout:
1001 2
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0') {
if (binary[i - 1] === '0') {
currentGap++;
} else {
currentGap = 1;
}
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
og(biggestGap)
}
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0') {
if (binary[i - 1] === '0') {
currentGap++;
} else {
currentGap = 1;
}
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
return biggestGap;
}
[9]
10000010001
1111
100000
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0') {
if (binary[i - 1] === '0') {
currentGap++;
} else {
currentGap = 1;
}
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
return biggestGap;
}
94654654654654
10000010001
1111
100000
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0') {
if (binary[i - 1] === '0') {
currentGap++;
} else {
currentGap = 1;
}
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
return biggestGap;
}
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0') {
if (binary[i - 1] === '0') {
currentGap++;
} else {
currentGap = 1;
}
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
return biggestGap;
}
[2147483647]
10000010001
1111
100000
function result: 0
1111111111111111111111111111111
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0') {
if (binary[i - 1] === '0') {
currentGap++;
} else {
currentGap = 1;
}
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
return biggestGap;
}
[2147483647]
[0]
10000010001
1111
100000
function result: 0
1111111111111111111111111111111
function result: 0
0
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0') {
if (binary[i - 1] === '0') {
currentGap++;
} else {
currentGap = 1;
}
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
return biggestGap;
}
[2147483647]
[0]
[2147483646]
10000010001
1111
100000
function result: 0
1111111111111111111111111111111
function result: 0
0
function result: 0
1111111111111111111111111111110
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
console.log(binary);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0') {
if (binary[i - 1] === '0') {
currentGap++;
} else {
currentGap = 1;
}
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
return biggestGap;
}
[2147483647]
[0]
[1576458745]
10000010001
1111
100000
function result: 0
1111111111111111111111111111111
function result: 0
0
function result: 2
1011101111101101101100111111001
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0') {
if (binary[i - 1] === '0') {
currentGap++;
} else {
currentGap = 1;
}
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
return biggestGap;
}
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0') {
if (binary[i - 1] === '0') {
currentGap++;
} else {
currentGap = 1;
}
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
return biggestGap;
}
[2147483647]
[0]
[1576458745]
function result: 0
function result: 0
function result: 2
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0') {
if (binary[i - 1] === '0') {
currentGap++;
} else {
currentGap = 1;
}
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
return biggestGap;
}
[2147483647]
[0]
[1576458745]
function result: 0
function result: 0
function result: 2
// you can write to stdout for debugging purposes, e.g.
// console.log('this is a debug message');
function solution(N) {
if (N < 0) {
return 0;
}
const binary = N.toString(2);
let biggestGap = 0;
let currentGap = 0;
for (let i = 1; i < binary.length; i++) {
if (binary[i] === '0') {
if (binary[i - 1] === '0') {
currentGap++;
} else {
currentGap = 1;
}
}
if (binary[i] === '1' && binary[i - 1] === '0') {
if (biggestGap < currentGap) {
biggestGap = currentGap;
}
}
}
return biggestGap;
}
The solution obtained perfect score.