We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abcc0a6 commit 3a9ad83Copy full SHA for 3a9ad83
solutions/9. Palindrome Number.md
@@ -4,7 +4,7 @@
4
首先小于0肯定不是可以直接返回false;
5
对于一般的int型数,可以先将其转换成字符串,这样判断是否回文就快多了。
6
# C++
7
-```
+``` C++
8
class Solution {
9
public:
10
bool isPalindrome(int x) {
0 commit comments