2017年5月7日
摘要: 1 44 Wildcard Match 双指针 public boolean isMatch(String s, String p) { int idxs = 0, idxp = 0, idxstart = -1, idxmatch = 0; while (idxs < s.length()) { 阅读全文
posted @ 2017-05-07 19:49 wheleetcode 阅读(115) 评论(0) 推荐(0)