Skip to content

Instantly share code, notes, and snippets.

@yuuki
Created July 26, 2012 05:50
Show Gist options
  • Save yuuki/3180478 to your computer and use it in GitHub Desktop.
Save yuuki/3180478 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
r = (100 .. 999).to_a.map do |i|
(i .. 999).to_a.map do |j|
s = i * j
s.to_s == s.to_s.reverse ? s : nil
end.compact!.max
end.compact!.max
puts r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment