Day 15, comment out slow test.

This commit is contained in:
Bill Thiede 2020-12-18 09:35:20 -08:00
parent 4045d014f4
commit de31fdf400

View File

@ -149,18 +149,19 @@ mod tests {
}
}
//#[test]
fn test_solution2() {
for (input, want) in vec![
//("0,3,6", 175594),
("1,3,2", 2578),
("2,1,3", 3544142),
("1,2,3", 261214),
("2,3,1", 6895259),
("3,2,1", 18),
("3,1,2", 362),
] {
assert_eq!(solution2(input), want);
}
}
// This is slow
// #[test]
// fn test_solution2() {
// for (input, want) in vec![
// //("0,3,6", 175594),
// ("1,3,2", 2578),
// ("2,1,3", 3544142),
// ("1,2,3", 261214),
// ("2,3,1", 6895259),
// ("3,2,1", 18),
// ("3,1,2", 362),
// ] {
// assert_eq!(solution2(input), want);
// }
// }
}