[LeetCode/Java] 9. Palindrome Number (easy)
·
개발 ━━━━━/Algorithm
Problem https://leetcode.com/problems/palindrome-number/description/ LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com Solution class Solution { public boolean isPalindrome(int x) { String[] arr = Integer.toString(x).split(""..