Skip to content

Instantly share code, notes, and snippets.

@PavelZaytsev
Created November 18, 2019 03:33
Show Gist options
  • Save PavelZaytsev/c4571bab49320a2d76b484b9477c7593 to your computer and use it in GitHub Desktop.
Save PavelZaytsev/c4571bab49320a2d76b484b9477c7593 to your computer and use it in GitHub Desktop.
public class Main {
private static boolean isPowerOfTwo(int i){
return (i & (i - 1)) == 0;
}
public static void main(String[] args) {
System.out.println(isPowerOfTwo(4));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment