forked from YuriSpiridonov/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1566.DetectPatternofLengthMRepeatedKorMoreTimes.py
73 lines (65 loc) · 2.54 KB
/
1566.DetectPatternofLengthMRepeatedKorMoreTimes.py
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
"""
Given an array of positive integers arr, find a pattern of length m that
is repeated k or more times.
A pattern is a subarray (consecutive sub-sequence) that consists of one or
more values, repeated multiple times consecutively without overlapping.
A pattern is defined by its length and the number of repetitions.
Return true if there exists a pattern of length m that is repeated k or
more times, otherwise return false.
Example:
Input: arr = [1,2,4,4,4,4], m = 1, k = 3
Output: true
Explanation: The pattern (4) of length 1 is repeated 4 consecutive times.
Notice that pattern can be repeated k or more times but not
less.
Example:
Input: arr = [1,2,1,2,1,1,1,3], m = 2, k = 2
Output: true
Explanation: The pattern (1,2) of length 2 is repeated 2 consecutive times.
Another valid pattern (2,1) is also repeated 2 times.
Example:
Input: arr = [1,2,1,2,1,3], m = 2, k = 3
Output: false
Explanation: The pattern (1,2) is of length 2 but is repeated only 2 times.
There is no pattern of length 2 that is repeated 3 or more
times.
Example:
Input: arr = [1,2,3,1,2], m = 2, k = 2
Output: false
Explanation: Notice that the pattern (1,2) exists twice but not
consecutively, so it doesn't count.
Example:
Input: arr = [2,2,2,2], m = 2, k = 3
Output: false
Explanation: The only pattern of length 2 is (2,2) however it's repeated
only twice. Notice that we do not count overlapping
repetitions.
Constraints:
- 2 <= arr.length <= 100
- 1 <= arr[i] <= 100
- 1 <= m <= 100
- 2 <= k <= 100
"""
#Difficulty: Easy
#91 / 91 test cases passed.
#Runtime: 28 ms
#Memory Usage: 14 MB
#Runtime: 28 ms, faster than 100.00% of Python3 online submissions for Detect Pattern of Length M Repeated K or More Times.
#Memory Usage: 14 MB, less than 25.00% of Python3 online submissions for Detect Pattern of Length M Repeated K or More Times.
class Solution:
def containsPattern(self, arr: List[int], m: int, k: int) -> bool:
for i in range(len(arr)):
c = 1
j = i + m
x = i + m
y = j + m
while True:
if c == k:
return True
elif arr[i:j] == arr[x:y]:
c += 1
x += m
y += m
else:
break
return False