Day 15, remove debugging output

This commit is contained in:
Bill Thiede 2020-12-15 17:28:38 -08:00
parent 49319f1e21
commit 05dc0c0ecc

View File

@ -86,7 +86,6 @@ fn solution2(input: &str) -> usize {
use std::collections::HashMap;
fn solution2_impl(input: &str, idx: usize) -> usize {
dbg!(&input, idx);
let starter: Vec<_> = input
.split(',')
.map(|s| s.parse().expect("couldn't parse number"))