Remove stray debug print

This commit is contained in:
Matthew Gordon 2020-02-28 23:27:32 -05:00
parent ad2b9247b8
commit fa43552c6f
1 changed files with 0 additions and 1 deletions

View File

@ -9,7 +9,6 @@ fn spread_bits(v: u32) -> u32 {
for power in 0..9 {
result |= ((1 << power) & v) << power * 2;
}
dbg!(format!("{:b}", result));
result
}