2016年6月28日
摘要: public class Solution { public boolean isPalindrome(String s) { if(s == null) return true; int start = 0; int end = s.length()-1; char l,r; while(start = 'A' && c = 'a' && c = ... 阅读全文
posted @ 2016-06-28 14:36 新猪先生 阅读(220) 评论(0) 推荐(0) 编辑