LeetCode 9 回文数
生活随笔
收集整理的這篇文章主要介紹了
LeetCode 9 回文数
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
https://leetcode-cn.com/problems/palindrome-number/
解決方案
class Solution {public boolean isPalindrome(int x) {String s = String.valueOf(x);for (int i = 0; i < s.length() / 2; i++) {if (s.charAt(i) != s.charAt(s.length() - i - 1)) {return false;}}return true;} }總結(jié)
以上是生活随笔為你收集整理的LeetCode 9 回文数的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: LeetCode 8 字符串转换整数 (
- 下一篇: LeetCode 10 正则表达式匹配