1
0
Fork 0
Project-Euler/Ruby/5-b.rb

3 lines
No EOL
68 B
Ruby
Executable file

#!/usr/bin/env ruby
puts (1..20).inject(1) { |lcm, n| lcm.lcm(n) }