Add problem description copying from sol1.rb

This commit is contained in:
vzvu3k6k 2020-12-31 00:44:04 +09:00
parent bcd82560aa
commit 770fc9622c

View file

@ -1,5 +1,8 @@
# frozen_string_literal: true
# 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.
class Integer
def parindrome?
self == reverse