1
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful

This commit is contained in:
xinian
2026-02-19 14:54:36 +08:00
committed by cnb
parent 91c04b1d5e
commit 16b6adf1a1

View File

@@ -3,6 +3,13 @@ package bitset32
import "math/bits"
func popcntSlice(s []uint32) uint64 {
// int r = 0;
// while(n)
// {
// n &= (n - 1);
// ++r;
// }
var cnt int
for _, x := range s {
cnt += bits.OnesCount32(x)