LeetCode回文数
Posted lettleshel
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode回文数相关的知识,希望对你有一定的参考价值。
class Solution { public: bool isPalindrome(int x) { string str; str=to_string(x); int len=str.size(); for(int i=0;i<=len/2;i++){ if(str[i]!=str[len-i-1]) return false; } return true; } };
还没有解决的问题:你能不将整数转为字符串来解决这个问题吗?(思考ing)
以上是关于LeetCode回文数的主要内容,如果未能解决你的问题,请参考以下文章