Created
March 22, 2021 18:38
-
-
Save patriksima/b7f841c6d4654ec58a521f7e66e38bf5 to your computer and use it in GitHub Desktop.
BinaryGap algortihm Codility
This file contains 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
public int solution(int N) | |
{ | |
if (N < 5) return 0; | |
var bits = Convert.ToString(N, 2).Length; | |
int result = 0; | |
int gap = 0; | |
bool canCount = false; | |
while (bits > 0) | |
{ | |
if ((N & 1) == 1) | |
{ | |
result = Math.Max(result, gap); | |
gap = 0; | |
canCount = true; | |
} | |
else | |
{ | |
if (canCount) ++gap; | |
} | |
N >>= 1; | |
--bits; | |
} | |
return result; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment