Leetcode – Palindrome Number
This one was a little more tricky than the last. Name: Palindrome NumberDifficulty: EasyDescription: Return true if a number reads the same backwards, false otherwise. Example: Given 121 return true Given 10 return false Given -121 return false, because 121- is not the same as -121. To solve this problem, I first copied the original […]