摘要: /** * Description:判断回文 * * @author 李**2019年10月28日 */ public class JudgePlalind { public static boolean isPalind(String s) { if(s == null||s.length() == 0) return true; //... 阅读全文
posted @ 2019-10-28 23:39 弘666 阅读(253) 评论(0) 推荐(0)