-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm1218.py
36 lines (27 loc) · 1.02 KB
/
m1218.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
# Solution is O(n) both space and time
class Solution:
def longestSubsequence(self, arr: List[int], difference: int) -> int:
# for O(1) lookups
referenceDict = {}
for i in arr :
if i - difference in referenceDict.keys() :
referenceDict[i] = 1 + referenceDict[i - difference]
else :
referenceDict[i] = 1
return max(referenceDict.values())
# Old attempt that was TLE
# visited = {}
# @cache
# def findLongest(currentIndex: int) -> int:
# pointer = currentIndex - 1
# while pointer >= 0 :
# if arr[currentIndex] - arr[pointer] == difference :
# return findLongest(pointer) + 1
# pointer -= 1
# return 1
# maxx = 0
# for i in range(len(arr) - 1, -1, -1):
# if i in visited.keys():
# continue
# maxx = max(findLongest(i), maxx)
# return maxx