Skip to content

Instantly share code, notes, and snippets.

@patriksima
Created March 22, 2021 18:38
Show Gist options
  • Save patriksima/b7f841c6d4654ec58a521f7e66e38bf5 to your computer and use it in GitHub Desktop.
Save patriksima/b7f841c6d4654ec58a521f7e66e38bf5 to your computer and use it in GitHub Desktop.
BinaryGap algortihm Codility
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