0217.Contains-Duplicate¶
題目¶
Given an integer array nums, return true if any value appears at least twice in the array, and return false if every element is distinct.
Example 1:
Example 2:
Example 3:
Constraints:
- 1 <= nums.length <= 105
- -109 <= nums[i] <= 109
題目大意¶
解題思路¶
來源¶
解答¶
https://github.com/kimi0230/LeetcodeGolang/blob/master/Leetcode/0217.Contains-Duplicate/main.go
package containsduplicate
func ContainsDuplicate(nums []int) bool {
numsMap := make(map[int]bool, len(nums))
for _, v := range nums {
if numsMap[v] {
return true
}
numsMap[v] = true
}
return false
}