摘要: public int[] dailyTemperatures(int[] temperatures) { int len = temperatures.length; LinkedList<Integer>[] table = new LinkedList[101]; for(int i = 30; 阅读全文
posted @ 2022-02-10 22:53 明卿册 阅读(26) 评论(0) 推荐(0)
摘要: class Solution { public boolean isAnagram(String s, String t) { if (s.length() != t.length()) { return false; } int[] table = new int[26]; for (int i 阅读全文
posted @ 2022-02-10 22:30 明卿册 阅读(25) 评论(0) 推荐(0)