Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
9
Task/Population-count/D/population-count.d
Normal file
9
Task/Population-count/D/population-count.d
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
void main() {
|
||||
import std.stdio, std.algorithm, std.range, core.bitop;
|
||||
|
||||
enum pCount = (ulong n) => popcnt(n & uint.max) + popcnt(n >> 32);
|
||||
writefln("%s\nEvil: %s\nOdious: %s",
|
||||
uint.max.iota.map!(i => pCount(3L ^^ i)).take(30),
|
||||
uint.max.iota.filter!(i => pCount(i) % 2 == 0).take(30),
|
||||
uint.max.iota.filter!(i => pCount(i) % 2).take(30));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue