Skip to content

Instantly share code, notes, and snippets.

@rphuber
Created May 28, 2021 13:58
Show Gist options
  • Save rphuber/596905c452215f771dbf5784f3d1256b to your computer and use it in GitHub Desktop.
Save rphuber/596905c452215f771dbf5784f3d1256b to your computer and use it in GitHub Desktop.
func CountBits(x int) int {
numBits := 0
for x != 0 {
numBits += x & 1
x >>= 1
}
return numBits
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment