Skip to content

Commit f35c508

Browse files
committed
Remove print
1 parent f39c6f4 commit f35c508

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/day23.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,6 @@ pub fn part1(s: &str) -> u64 {
4646
if *g.get_unchecked(a as usize * MAX + i as usize)
4747
&& *g.get_unchecked(b as usize * MAX + i as usize)
4848
{
49-
println!(
50-
"{}{},{}{},{}{}",
51-
((a / 26) as u8 + b'a') as char,
52-
((a % 26) as u8 + b'a') as char,
53-
((b / 26) as u8 + b'a') as char,
54-
((b % 26) as u8 + b'a') as char,
55-
((i / 26) as u8 + b'a') as char,
56-
((i % 26) as u8 + b'a') as char,
57-
);
58-
5949
sum += 1;
6050
}
6151
}

0 commit comments

Comments
 (0)