diff --git a/rust/src/day_10.rs b/rust/src/day_10.rs index f7b527a..97b6e6b 100644 --- a/rust/src/day_10.rs +++ b/rust/src/day_10.rs @@ -18,7 +18,7 @@ pub fn solve(input: &str) -> usize { .collect::>(); let mut look_and_say = LookAndSay { seq: seq }; - for _ in 0..40 { + for _ in 0..50 { look_and_say.next(); }