https://leetcode.com/explore/interview/card/top-interview-questions-easy/92/array/578/
Explore - LeetCode
LeetCode Explore is the best place for everyone to start practicing and learning on LeetCode. No matter if you are a beginner or a master, there are always new topics waiting for you to explore.
leetcode.com
Note : Kinda easy one when we can use a hash-table type structure...like map or dictionary.
But it's interesting since using a List could not be an answer because it's timed out.
( List is kinda extended array. So the searching cannot be fast.! )
public bool ContainsDuplicate(int[] nums) {
// using dic.
Dictionary<int, int> dicTemp = new Dictionary<int, int>();
for(int k = 0; k < nums.Length; ++k)
{
if(dicTemp.ContainsKey( nums[k] ))
return true;
dicTemp.Add(nums[k], 0);
}
// using list = timeout.
/*List<int> listTemp = new List<int>();
for(int k = 0; k < nums.Length; ++k)
{
if(listTemp.Contains(nums[k]))
return true;
listTemp.Add(nums[k]);
}*/
return false;
}
'Leetcode > Top Interview 150' 카테고리의 다른 글
[Array/String][Easy] 27. Remove Element (0) | 2024.04.28 |
---|---|
[Array/String][Easy] 88. Merge Sorted Array (0) | 2024.04.28 |
Array - Rotate Array (0) | 2021.05.27 |
Array - Best Time to Buy and Sell Stock II (0) | 2021.05.23 |
Array - Remove Duplicates from Sorted Array (0) | 2021.05.23 |