Created
January 28, 2020 08:08
-
-
Save laddered/d6fec38d326bc3131db1dcba9e1a266e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function solution(N) { | |
line=N.toString(2) | |
arr=line.split('1') | |
if(arr[arr.length-1]!=''){ | |
arr.pop() | |
} | |
arr.sort() | |
if(arr[arr.length-1]!=''){ | |
return arr[arr.length - 1].length | |
} | |
return 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment