How to count the number of set bits in an integer in Go

1 Answer

0 votes
package main

import (
    "fmt"
    "math/bits"
)

func main() {
    num := 445; // 0001 1011 1101
    
    count := bits.OnesCount(uint(num))
    
    fmt.Printf("The number of set bits in %d is %d\n", num, count)
}




/*
run:

The number of set bits in 445 is 7

*/

 



answered Dec 10, 2024 by avibootz

Related questions

1 answer 81 views
1 answer 73 views
1 answer 106 views
2 answers 146 views
2 answers 124 views
...