01 2016 档案
摘要:public class Solution { public boolean isMatch(String s, String p) { int length1 = s.length(); int length2 = p.length(); if (l...
阅读全文
摘要:public class Solution { public boolean isMatch(String s, String p) { if (p.length() == 0) { return s.length() == 0; } ...
阅读全文
摘要:O(n)时间空间复杂度public class Solution { public int maxSubArrayLen(int[] nums, int k) { HashMap map = new HashMap(); int sum = 0; in...
阅读全文
摘要:感觉我的方法逻辑不够清晰public class Solution { private List result; public List generateAbbreviations(String word) { result = new ArrayList(); ...
阅读全文

浙公网安备 33010602011771号