You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
advent-of-code/day_10.rb

10 lines
207 B

9 years ago
class Integer
def look_and_say
self.to_s.chars.slice_when {|a,b| a != b }.map {|i| "#{i.size}#{i[0]}" }.join.to_i
end
end
seed = 1113122113
9 years ago
50.times { seed = seed.look_and_say }
9 years ago
puts seed.to_s.size