09 2021 档案
摘要:题目:https://leetcode-cn.com/problems/add-binary/ 自己的代码: public String addBinary(String a, String b) { String r=""; int flag=0; int ap=a.length(); int b
阅读全文
摘要:题目:https://leetcode-cn.com/problems/valid-palindrome/ 自己写的代码: public boolean isPalindrome(String s) { s=s.replaceAll("[^a-zA-Z0-9]",""); String s1 =""
阅读全文