Skip to content

Commit 6990219

Browse files
Kurt-Yuhaoel
authored andcommitted
added some python solutions
1 parent 7efd213 commit 6990219

File tree

6 files changed

+84
-3
lines changed

6 files changed

+84
-3
lines changed

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ LeetCode
88

99
| # | Title | Solution | Difficulty |
1010
|---| ----- | -------- | ---------- |
11+
|978|[Longest Turbulent Subarray](https://leetcode.com/problems/longest-turbulent-subarray/) | [Python](./algorithms/python/LongestTurbulentSubarray/maxTurbulenceSize.py)|Medium|
1112
|977|[Squares of a Sorted Array](https://leetcode.com/problems/squares-of-a-sorted-array/) | [Python](./algorithms/python/SquaresOfSortedArray/sortedSquares.py)|Easy|
1213
|976|[Largest Perimeter Triangle](https://leetcode.com/problems/largest-perimeter-triangle/) | [Python](./algorithms/python/LargestPerimeterTriangle/largestPerimeter.py)|Easy|
1314
|971|[Flip Binary Tree To Match Preorder Traversal](https://leetcode.com/problems/flip-binary-tree-to-match-preorder-traversal/) | [Python](./algorithms/python/FlipBinaryTreeToMatchPreorderTraversal/flipMatchVoyage.py)|Medium|
@@ -16,6 +17,7 @@ LeetCode
1617
|951|[Flip Equivalent Binary Trees](https://leetcode.com/problems/flip-equivalent-binary-trees/) | [Python](./algorithms/python/FlipEquivalentBinaryTrees/flipEquiv.py)|Medium|
1718
|950|[Reveal Cards In Increasing Order](https://leetcode.com/problems/reveal-cards-in-increasing-order/) | [Python](./algorithms/python/RevealCardsInIncreasingOrder/deckRevealedIncreasing.py)|Medium|
1819
|941|[Valid Mountain Array](https://leetcode.com/problems/valid-mountain-array/) | [Python](./algorithms/python/ValidMountainArray/validMountainArray.py)|Easy|
20+
|914|[X of a Kind in a Deck of Cards](https://leetcode.com/problems/x-of-a-kind-in-a-deck-of-cards/) | [Python](./algorithms/python/XOfAKindInADeckOfCards/hasGroupsSizeX.py)|Easy|
1921
|859|[Buddy Strings](https://leetcode.com/problems/buddy-strings/description/) | [C++](./algorithms/cpp/buddyStrings/BuddyStrings.cpp)|Easy|
2022
|858|[Mirror Reflection](https://leetcode.com/problems/mirror-reflection/description/) | [C++](./algorithms/cpp/mirrorReflection/MirrorReflection.cpp)|Medium|
2123
|852|[Peak Index in a Mountain Array](https://leetcode.com/problems/peak-index-in-a-mountain-array/description/) | [C++](./algorithms/cpp/peakIndexInAMountainArray/PeakIndexInAMountainArray.cpp)|Easy|
@@ -40,6 +42,7 @@ LeetCode
4042
|643|[Maximum Average Subarray I](https://leetcode.com/problems/maximum-average-subarray-i/description/) | [C++](./algorithms/cpp/maximumAverageSubarray/MaximumAverageSubarray.I.cpp), [Python](./algorithms/python/MaximumAverageSubarrayI/findMaxAverage.py)|Easy|
4143
|628|[Maximum Product of Three Numbers](https://leetcode.com/problems/maximum-product-of-three-numbers/) | [Python](./algorithms/python/MaximumProductOfThreeNumbers/maximumProduct.py)|Easy|
4244
|623|[Add One Row to Tree](https://leetcode.com/problems/add-one-row-to-tree/) | [Python](./algorithms/python/AddOneRowToTree/addOneRow.py)|Medium|
45+
|581|[Shortest Unsorted Continuous Subarray](https://leetcode.com/problems/shortest-unsorted-continuous-subarray/) | [Python](./algorithms/python/ShortestUnsortedContinuousSubarray/findUnsortedSubarray.py)|Easy|
4346
|572|[Subtree of Another Tree](https://leetcode.com/problems/subtree-of-another-tree/) | [Python](./algorithms/python/SubtreeOfAnotherTree/isSubtree.py)|Easy|
4447
|563|[Binary Tree Tilt](https://leetcode.com/problems/binary-tree-tilt/) | [Python](./algorithms/python/BinaryTreeTilt/findTilt.py)|Easy|
4548
|543|[Diameter of Binary Tree](https://leetcode.com/problems/diameter-of-binary-tree/) | [Python](./algorithms/python/DiameterOfBinaryTree/diameterOfBinaryTree.py)|Easy|
@@ -167,8 +170,8 @@ LeetCode
167170
|223|[Rectangle Area](https://leetcode.com/problems/rectangle-area/)| [C++](./algorithms/cpp/rectangleArea/RectangleArea.cpp)|Easy|
168171
|222|[Count Complete Tree Nodes](https://leetcode.com/problems/count-complete-tree-nodes/)| [C++](./algorithms/cpp/countCompleteTreeNodes/CountCompleteTreeNodes.cpp), [Python](./algorithms/python/CountCompleteTreeNodes/countNodes.py)|Medium|
169172
|221|[Maximal Square](https://leetcode.com/problems/maximal-square/)| [C++](./algorithms/cpp/maximalSquare/MaximalSquare.cpp)|Medium|
170-
|220|[Contains Duplicate III](https://leetcode.com/problems/contains-duplicate-iii/)| [C++](./algorithms/cpp/containsDuplicate/ContainsDuplicate.III.cpp)|Medium|
171-
|219|[Contains Duplicate II](https://leetcode.com/problems/contains-duplicate-ii/)| [C++](./algorithms/cpp/containsDuplicate/ContainsDuplicate.II.cpp)|Easy|
173+
|220|[Contains Duplicate III](https://leetcode.com/problems/contains-duplicate-iii/)| [C++](./algorithms/cpp/containsDuplicate/ContainsDuplicate.III.cpp), [Python](./algorithms/python/ContainsDuplicateIII/containsNearbyAlmostDuplicate.py)|Medium|
174+
|219|[Contains Duplicate II](https://leetcode.com/problems/contains-duplicate-ii/)| [C++](./algorithms/cpp/containsDuplicate/ContainsDuplicate.II.cpp), [Python](./algorithms/python/ContainsDuplicateII/containsNearbyDuplicate.py)|Easy|
172175
|218|[The Skyline Problem](https://leetcode.com/problems/the-skyline-problem/)| [C++](./algorithms/cpp/theSkylineProblem/TheSkylineProblem.cpp)|Hard|
173176
|217|[Contains Duplicate](https://leetcode.com/problems/contains-duplicate/)| [C++](./algorithms/cpp/containsDuplicate/ContainsDuplicate.cpp)|Easy|
174177
|216|[Combination Sum III](https://leetcode.com/problems/combination-sum-iii/)| [C++](./algorithms/cpp/combinationSum/combinationSum.III.cpp)|Medium|
@@ -293,7 +296,7 @@ LeetCode
293296
|81|[Search in Rotated Sorted Array II](https://oj.leetcode.com/problems/search-in-rotated-sorted-array-ii/)| [C++](./algorithms/cpp/searchInRotatedSortedArray/searchInRotatedSortedArray.II.cpp)|Medium|
294297
|80|[Remove Duplicates from Sorted Array II](https://oj.leetcode.com/problems/remove-duplicates-from-sorted-array-ii/)| [C++](./algorithms/cpp/removeDuplicatesFromSortedArray/removeDuplicatesFromSortedArray.II.cpp)|Medium|
295298
|79|[Word Search](https://oj.leetcode.com/problems/word-search/)| [C++](./algorithms/cpp/wordSearch/wordSearch.cpp)|Medium|
296-
|78|[Subsets](https://oj.leetcode.com/problems/subsets/)| [C++](./algorithms/cpp/subsets/subsets.cpp), [Java](./algorithms/java/src/subsets/subsets.java)|Medium|
299+
|78|[Subsets](https://oj.leetcode.com/problems/subsets/)| [C++](./algorithms/cpp/subsets/subsets.cpp), [Java](./algorithms/java/src/subsets/subsets.java), [Python](./algorithms/python/Subsets/subsets.py)|Medium|
297300
|77|[Combinations](https://oj.leetcode.com/problems/combinations/)| [C++](./algorithms/cpp/combinations/combinations.cpp)|Medium|
298301
|76|[Minimum Window Substring](https://oj.leetcode.com/problems/minimum-window-substring/)| [C++](./algorithms/cpp/minimumWindowSubstring/minimumWindowSubstring.cpp)|Hard|
299302
|75|[Sort Colors](https://oj.leetcode.com/problems/sort-colors/)| [C++](./algorithms/cpp/sortColors/sortColors.cpp)|Medium|
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Method 1: using set
2+
3+
def containsNearbyDuplicate(self, nums, k):
4+
if len(nums) <= k + 1: return len(nums) != len(set(nums))
5+
if k == 0: return False
6+
s = set(nums[:k])
7+
for i in range(k, len(nums)):
8+
if nums[i] in s: return True
9+
else:
10+
s.remove(nums[i - k])
11+
s.add(nums[i])
12+
return False
13+
14+
# Method 2: using dictionary
15+
def containsNearbyDuplicate(self, nums, k):
16+
d = {}
17+
for i, n in enumerate(nums):
18+
if n in d and i - d[v] <= k:
19+
return True
20+
d[n] = i
21+
return False
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
def containsNearbyAlmostDuplicate(self, nums, k, t):
2+
if k < 1 or t < 0: return False
3+
d = {}
4+
w = t + 1
5+
for i, n in enumerate(nums):
6+
m = n // w
7+
if m in d: return True
8+
if m - 1 in d and abs(d[m-1] - n) <= t: return True
9+
if m + 1 in d and abs(d[m+1] - n) <= t: return True
10+
d[m] = n
11+
if i >= k: del d[nums[i - k] // w]
12+
return False
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
def maxTurbulenceSize(self, A):
2+
res = inc = dec = 1
3+
for i in range(1, len(A)):
4+
if A[i] > A[i - 1]:
5+
inc = dec + 1
6+
dec = 1
7+
elif A[i] < A[i - 1]:
8+
dec = inc + 1
9+
inc = 1
10+
else:
11+
inc = 1
12+
dec = 1
13+
res = max(res, max(inc, dec))
14+
return res

algorithms/python/Subsets/subsets.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
def subsets(self, nums):
2+
res = []
3+
def backtracking(temp, start):
4+
res.append(temp[:])
5+
for i in range(start, len(nums)):
6+
temp.append(nums[i])
7+
backtracking(temp, i + 1)
8+
temp.pop()
9+
10+
backtracking([], 0)
11+
return res
12+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Method 1: find the greatest common divisor using iteration
2+
3+
def hasGroupsSizeX(self, deck):
4+
if len(deck) < 2: return False
5+
vals = collections.Counter(deck).values()
6+
for n in range(2, max(vals) + 1):
7+
if all(v % n == 0 for v in vals): return True
8+
return False
9+
10+
# Method 2: find the greatest common divisor using reduce
11+
# Time complexity: O(n)
12+
def hasGroupsSizeX(self, deck):
13+
from functools import reduce
14+
if len(deck) < 2: return False
15+
vals = collections.Counter(deck).values()
16+
def gcd(a, b):
17+
while b: a, b = b, a % b
18+
return a
19+
return reduce(gcd, vals)

0 commit comments

Comments
 (0)