From 1697560761b53063032db99c6d615dc418e1b7e5 Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Thu, 21 Apr 2016 08:53:49 -0700 Subject: [PATCH] [rust][10.1] --- rust/src/day_10.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }