This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
ikachan
/
leetcode-go
Suivre
1
Voter
1
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Aborescence:
cfdbb83721
Branches
Tags
master
leetcode-go
/
leetcode
/
easy
/
342.power-of-four.go
342.power-of-four.go
93 B
Historique
Raw
1
2
3
func isPowerOfFour(num int) bool {
return (num & (num-1) == 0) && (num & 0x55555555 != 0)
}