Contains Duplicate II

Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the difference between i and jis at most k.

class Solution {
public:
    bool containsNearbyDuplicate(vector<int>& nums, int k) {
        map<int,int> temp;
        for(int i=0;i<nums.size();i++){
            if(temp.find(nums[i]) == temp.end()){
                temp[nums[i]] = i;
            }else if(i - temp[nums[i]]<=k){
                return true;
            }else{
                temp[nums[i]] = i;
            }
        }
        return false;
    }
};


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章