Saturday, July 9, 2016

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 j is at most k.

Solution:

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

No comments:

Post a Comment