paddockpass/ruby_algo/ex4.rb
2017-07-31 21:56:50 +02:00

25 lines
408 B
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# A palindromic number reads the same both ways. The largest palindrome made from the
# product of two 2-digit numbers is 9009 = 91 × 99.
# Find the largest palindrome made from the product of two 3-digit numbers.
x = 0
b = 100
y = []
while b < 1000
a = 100
while a < 1000
x = a * b
x = x.to_s
if x == x.reverse
y << x.to_i
end
a += 1
end
b += 1
end
puts y.sort.max