mirror of
https://github.com/TheAlgorithms/Ruby
synced 2025-01-06 05:24:44 +01:00
11 lines
389 B
Ruby
11 lines
389 B
Ruby
|
# 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.
|
|||
|
|
|||
|
answer = 0
|
|||
|
999.downto(99) do |i|
|
|||
|
999.downto(99) do |j|
|
|||
|
t = (i * j)
|
|||
|
answer = i * j if (t.to_s == t.to_s.reverse) && (t > answer) && (t > answer)
|
|||
|
end
|
|||
|
end
|
|||
|
puts answer
|