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] // This is slow
fn test_solution2() { // #[test]
for (input, want) in vec![ // fn test_solution2() {
//("0,3,6", 175594), // for (input, want) in vec![
("1,3,2", 2578), // //("0,3,6", 175594),
("2,1,3", 3544142), // ("1,3,2", 2578),
("1,2,3", 261214), // ("2,1,3", 3544142),
("2,3,1", 6895259), // ("1,2,3", 261214),
("3,2,1", 18), // ("2,3,1", 6895259),
("3,1,2", 362), // ("3,2,1", 18),
] { // ("3,1,2", 362),
assert_eq!(solution2(input), want); // ] {
} // assert_eq!(solution2(input), want);
} // }
// }
} }