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.
2 parents 130333e + a1a49ef commit e67e77bCopy full SHA for e67e77b
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