We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 130333e commit a1a49efCopy full SHA for a1a49ef
2018.11.27-leetcode125/。。。.md
@@ -1,3 +1,4 @@
1
+```
2
public boolean isPalindrome(String s){
3
if (s.length() >= 2){
4
int left = 0,right = s.length()-1;
@@ -26,3 +27,4 @@ public boolean isPalindrome(String s){
26
27
}
28
return true;
29
30
+ ```
0 commit comments