125. Valid Palindrome
摘要:
1 public class Solution { 2 public boolean isPalindrome(String s) { 3 char[] str = s.toCharArray(); 4 if(str.length == 0) 5 return true; 6 for(int i = 阅读全文
posted @ 2016-03-12 13:07 菜鸟2s 阅读(135) 评论(0) 推荐(0) 编辑