摘要: 阅读全文
posted @ 2020-07-22 19:49 Sexyomaru 阅读(139) 评论(0) 推荐(0)
摘要: class Solution { public int maxEvents(int[][] events) { Arrays.sort(events, Comparator.comparingInt(o -> o[0])); PriorityQueue<Integer> queue = new Pr 阅读全文
posted @ 2020-07-22 15:54 Sexyomaru 阅读(142) 评论(0) 推荐(0)
摘要: class Solution { public int findTheLongestSubstring(String s) { int n = s.length(); int[] pos = new int[32]; // 11111最大为31,记录所有状态可能的情况开32就可以了 // pos[s 阅读全文
posted @ 2020-07-22 13:45 Sexyomaru 阅读(178) 评论(0) 推荐(0)