Function bitwise_popcount

Source
pub fn bitwise_popcount(n: u64) -> [u64; 64]
Expand description

0以上n以下の自然数について、2進数表記で各桁のビットが1である個数を数える。

§Problems