【英文题目】(学习英语的同时,更能理解题意哟~)
Given an array of integers, find if the array contains any duplicates.
Your function should return true if any value appears at least twice in the array, and it should return false if every element is distinct.
Example 1:
Input: [1,2,3,1]
Output: true
Example 2:
Input: [1,2,3,4]
Output: false
【中文题目】
给定一个整数数组,判断是否存在重复元素。
如果任何值在数组中出现至少两次,函数返回 true。如果数组中每个元素都不相同,则返回 false。
示例 1:
输入: [1,2,3,1]
输出: true
示例 2:
输入: [1,2,3,4]
输出: false
【思路】
这道题属于很常见的hash应用,直接遍历元素存入hash表,当hash表中存在相同元素时,则返回True。
当然还有更简单的实现方法:比较nums的元素个数以及将nums转换为集合后集合中元素个数。
【代码】
python版本
class Solution(object):
def containsDuplicate(self, nums):
"""
:type nums: List[int]
:rtype: bool
"""
d = {}
for n in nums:
if n in d:
return True
d[n] =
return False
# 更简洁
# return len(nums) != len(set(nums))
C++版本
class Solution {
public:
bool containsDuplicate(vector<int>& nums) {
map<int, int> d;
for(auto n: nums){
if(d.find(n) != d.end())
return true;
d[n] = ;
}
return false;
// set<int> s(nums.begin(), nums.end());
// return nums.size() != s.size();
}
};