Skip to content

Commit a2e3965

Browse files
committed
Add python solution
1 parent e48c4ce commit a2e3965

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Problems/09-Longest-Subsequence-With-Limited-Sum/Longest_Subsequence_With_Limite.py renamed to Problems/10-Find-the-Distance-Value-Between-Two-Arrays/Find_the_Distane_value.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,3 @@ def findTheDistanceValue(self, arr1, arr2, d):
1919
if (i >= len(arr2) or arr2[i]-n > d) and (i == 0 or n - arr2[i-1] > d):
2020
res += 1
2121
return res
22-
23-

0 commit comments

Comments
 (0)