217. Contains Duplicate - Easy 前往題目 之前寫的文章 思路 使用HashSet Codeclass Solution { public boolean containsDuplicate(int[] nums) { Set<Integer> set = new HashSet<>(); for (int num : nums) { if (set.contains(num)) return true; set.add(num); } return false; } } Leetcode > Easy #Leetcode #心得 #Array #Hash Table #Sorting 217. Contains Duplicate - Easy https://f88083.github.io/2024/04/03/217-Contains-Duplicate-Easy/ 作者 Simon Lai 發布於 2024年4月3日 許可協議 62. Unique Paths - Medium 上一篇 2215. Find the Difference of Two Arrays - Easy 下一篇 Please enable JavaScript to view the comments