Solution
The normal solution is to use hash table:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Solution { | |
public: | |
bool containsDuplicate(vector<int>& nums) { | |
unordered_map<int, int> myMap; | |
for(int i=0; i<nums.size(); i++){ | |
if(myMap[nums[i]]==1) | |
return true; | |
else | |
myMap[nums[i]]=1; | |
} | |
return false; | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <set> | |
using namespace std; | |
class Solution { | |
public: | |
bool containsDuplicate(vector<int>& nums) { | |
return nums.size() > set<int>(nums.begin(), nums.end()).size(); | |
} | |
}; |
No comments:
Post a Comment