-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontains-duplicate-II.py
More file actions
executable file
·41 lines (33 loc) · 961 Bytes
/
contains-duplicate-II.py
File metadata and controls
executable file
·41 lines (33 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
"""
Created on Tue Apr 21 23:52:57 2020
@author: johnoyegbite
"""
# SOLVED!
"""
Problem:
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 absolute difference between i and j
is at most k.
Example 1:
Input: nums = [1,2,3,1], k = 3
Output: true
Example 2:
Input: nums = [1,0,1,1], k = 1
Output: true
Example 3:
Input: nums = [1,2,3,1,2,3], k = 2
Output: false
"""
class Solution:
def containsNearbyDuplicate(self, nums: list[int], k: int) -> bool:
nums_dict = {}
for i, num in enumerate(nums):
if num in nums_dict:
if abs(nums_dict[num][-1] - i) <= k:
return True
nums_dict[num].append(i)
else:
nums_dict[num] = [i]
return False