Easy
- Palindrome Number
Given an integerx
, return true ifx
is palindrome integer.
An integer is a palindrome when it reads the same backward as forward.
For example, 121 is a palindrome while 123 is not.
1 | class Solution { |
- Roman to Integer
1 | int romanToInt(string s) |