9. Palindrome Number - Easy 前往題目 想法 很久以前做過的題目,只記得轉成string,忘了不轉要怎麼弄 思路 用mod特性建立x的reverse 比較reversed x和x是否相等 Codeclass Solution { public boolean isPalindrome(int x) { // Negative number is always false if(x < 0){ return false; } int xx = x; // Temp for x int y = 0; // Reverse order while(xx > 0){ // Last number of xx int lastNum = xx % 10; // remove recorded num xx /= 10; // Make num from the first digit y = y * 10 + lastNum; } return x==y; } } Leetcode > Medium #Leetcode #心得 #Math 9. Palindrome Number - Easy https://f88083.github.io/2024/01/19/9-Palindrome-Number-Easy/ 作者 Simon Lai 發布於 2024年1月19日 許可協議 108. Convert Sorted Array to Binary Search Tree - Easy 上一篇 863. All Nodes Distance K in Binary Tree - Medium 下一篇 Please enable JavaScript to view the comments