Compare commits

...

2 Commits

Author SHA1 Message Date
wangsiyuan 465b042d7e Update test.java 2023-09-09 14:53:42 +08:00
wangsiyuan c43301205e Update Solution.java 2023-09-09 14:53:38 +08:00
2 changed files with 5 additions and 4 deletions

View File

@ -148,4 +148,8 @@ public class Solution {
} }
return strs[0]; return strs[0];
} }
public static ListNode mergeTwoLists(ListNode list1, ListNode list2) {
}
} }

View File

@ -21,10 +21,7 @@ public class test {
// System.out.println(result); // System.out.println(result);
// int m = Solution.majorityElement(nums1); // int m = Solution.majorityElement(nums1);
// System.out.println(m); // System.out.println(m);
HashMap<Integer,Integer> map = new HashMap<>();
HashSet<Integer> set1 = new HashSet<>();
new LinkedHashSet<>();
new TreeSet<>();
} }
} }