Skip to content

Instantly share code, notes, and snippets.

@lune-sta
Created August 10, 2012 21:34
Show Gist options
  • Save lune-sta/3318223 to your computer and use it in GitHub Desktop.
Save lune-sta/3318223 to your computer and use it in GitHub Desktop.
Project Euler 20
puts (1..100).inject(1){|a, b| a * b}.to_s.split(//).map(&:to_i).inject(0){|a, b| a + b} # 648
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment