Skip to content

Instantly share code, notes, and snippets.

@enif-lee
Created January 5, 2017 12:33
Show Gist options
  • Save enif-lee/56b1a6a628b18ce5320cd2b916859fed to your computer and use it in GitHub Desktop.
Save enif-lee/56b1a6a628b18ce5320cd2b916859fed to your computer and use it in GitHub Desktop.
public class LogUtil {
static int log2 (int number) {
int logCount = 0;
while(number>>=1 > 0) logCount++;
return logCount;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment