2019年3月31日
摘要: ```java class Solution { public boolean isLongPressedName(String name, String typed) { int i = 0, j = 0; while (i 阅读全文
posted @ 2019-03-31 18:35 王 帅 阅读(99) 评论(0) 推荐(0) 编辑
摘要: ```java class Solution { public int numUniqueEmails(String[] emails) { Set s = new HashSet(); for (String e: emails) { int idx = e.indexOf("@"); String host... 阅读全文
posted @ 2019-03-31 09:39 王 帅 阅读(65) 评论(0) 推荐(0) 编辑