Skip to content

Instantly share code, notes, and snippets.

@IlyaEremin
Created March 5, 2012 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IlyaEremin/1980113 to your computer and use it in GitHub Desktop.
Save IlyaEremin/1980113 to your computer and use it in GitHub Desktop.
def look_and_say(number, iterate)
number = number.to_s
iterate.times do
puts number
number = number.gsub(/(.)\1*/) {|s| "#{s.size}#{s[0]}"}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment