Skip to content

Commit afd1009

Browse files
Kurt-Yuhaoel
authored andcommitted
added some python solutions
1 parent 555706f commit afd1009

File tree

12 files changed

+212
-8
lines changed

12 files changed

+212
-8
lines changed

README.md

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

99
| # | Title | Solution | Difficulty |
1010
|---| ----- | -------- | ---------- |
11+
|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|
1112
|958|[Check Completeness of a Binary Tree](https://leetcode.com/problems/check-completeness-of-a-binary-tree/) | [Python](./algorithms/python/CheckCompletenessOfABinaryTree/isCompleteTree.py)|Medium|
1213
|951|[Flip Equivalent Binary Trees](https://leetcode.com/problems/flip-equivalent-binary-trees/) | [Python](./algorithms/python/FlipEquivalentBinaryTrees/flipEquiv.py)|Medium|
1314
|859|[Buddy Strings](https://leetcode.com/problems/buddy-strings/description/) | [C++](./algorithms/cpp/buddyStrings/BuddyStrings.cpp)|Easy|
@@ -17,6 +18,7 @@ LeetCode
1718
|837|[Most Common Word](https://leetcode.com/problems/most-common-word/) | [C++](./algorithms/cpp/mostCommonWord/MostCommonWord.cpp)|Easy|
1819
|804|[Unique Morse Code Words](https://leetcode.com/problems/unique-morse-code-words/description/) | [C++](./algorithms/cpp/uniqueMorseCodeWords/UniqueMorseCodeWords.cpp)|Easy|
1920
|771|[Jewels and Stones](https://leetcode.com/problems/jewels-and-stones/description) | [C++](./algorithms/cpp/jewelsAndStones/JewelsAndStones.cpp)|Easy|
21+
|687|[Longest Univalue Path](https://leetcode.com/problems/longest-univalue-path/) | [Python](./algorithms/python/LongestUnivaluePath/longestUnivaluePath.py)|Easy|
2022
|684|[Redundant Connection](https://leetcode.com/problems/redundant-connection/) | [Python](./algorithms/python/RedundantConnection/findRedundantConnection.py)|Medium|
2123
|671|[Second Minimum Node In a Binary Tree](https://leetcode.com/problems/second-minimum-node-in-a-binary-tree/) | [Python](./algorithms/python/SecondMinimumNodeInABinaryTree/findSecondMinimumValue.py)|Easy|
2224
|662|[Maximum Width of Binary Tree](https://leetcode.com/problems/maximum-width-of-binary-tree/) | [Python](./algorithms/python/MaximumWidthOfBinaryTree/widthOfBinaryTree.py)|Medium|
@@ -31,6 +33,7 @@ LeetCode
3133
|477|[Total Hamming Distance](https://leetcode.com/problems/total-hamming-distance/) | [C++](./algorithms/cpp/totalHammingDistance/totalHammingDistance.cpp)|Medium|
3234
|450|[DeleteNodeInABST](https://leetcode.com/problems/delete-node-in-a-bst/) | [Python](./algorithms/python/DeleteNodeInABST/deleteNode.py)|Medium|
3335
|449|[Serialize and Deserialize BST](https://leetcode.com/problems/serialize-and-deserialize-bst/) | [Python](./algorithms/python/SerializeAndDeserializeBST/serialize.py)|Medium|
36+
|437|[Path Sum III](https://leetcode.com/problems/path-sum-iii/) | [Python](./algorithms/python/PathSumIII/pathSum.py)|Medium|
3437
|418|[SentenceScreenFitting](https://leetcode.com/problems/sentence-screen-fitting/) ♥ | [C++](./algorithms/cpp/sentenceScreenFitting/sentenceScreenFitting.cpp)|Easy|
3538
|416|[Partition Equal Subset Sum](https://leetcode.com/problems/partition-equal-subset-sum/description/) | [C++](./algorithms/cpp/partitionEqualSubsetSum/PartitionEqualSubsetSum.cpp)|Medium|
3639
|415|[Add Strings](https://leetcode.com/problems/add-strings/) | [C++](./algorithms/cpp/addStrings/AddStrings.cpp)|Easy|
@@ -204,8 +207,8 @@ LeetCode
204207
|151|[Reverse Words in a String](https://oj.leetcode.com/problems/reverse-words-in-a-string/)| [C++](./algorithms/cpp/reverseWordsInAString/reverseWordsInAString.cpp), [Java](./algorithms/java/src/reverseWordsInAString/ReverseWordsInAString.java)|Medium|
205208
|150|[Evaluate Reverse Polish Notation](https://oj.leetcode.com/problems/evaluate-reverse-polish-notation/)| [C++](./algorithms/cpp/evaluateReversePolishNotation/evaluateReversePolishNotation.cpp)|Medium|
206209
|149|[Max Points on a Line](https://oj.leetcode.com/problems/max-points-on-a-line/)| [C++](./algorithms/cpp/maxPointsOnALine/maxPointsOnALine.cpp)|Hard|
207-
|148|[Sort List](https://oj.leetcode.com/problems/sort-list/)| [C++](./algorithms/cpp/sortList/sortList.cpp)|Medium|
208-
|147|[Insertion Sort List](https://oj.leetcode.com/problems/insertion-sort-list/)| [C++](./algorithms/cpp/insertionSortList/insertionSortList.cpp)|Medium|
210+
|148|[Sort List](https://oj.leetcode.com/problems/sort-list/)| [C++](./algorithms/cpp/sortList/sortList.cpp), [Python](./algorithms/python/SortList/sortList.py)|Medium|
211+
|147|[Insertion Sort List](https://oj.leetcode.com/problems/insertion-sort-list/)| [C++](./algorithms/cpp/insertionSortList/insertionSortList.cpp), [Python](./algorithms/python/InsertionSortList/insertionSortList.py)|Medium|
209212
|146|[LRU Cache](https://oj.leetcode.com/problems/lru-cache/)| [C++](./algorithms/cpp/LRUCache/LRUCache.cpp), [Java](./algorithms/java/src/lruCache/LRUCache.java)|Hard|
210213
|145|[Binary Tree Postorder Traversal](https://oj.leetcode.com/problems/binary-tree-postorder-traversal/)| [C++](./algorithms/cpp/binaryTreePostorderTraversal/binaryTreePostorderTraversal.cpp), [Python](./algorithms/python/BinaryTreePostorderTraversal/postorderTraversal.py)|Hard|
211214
|144|[Binary Tree Preorder Traversal](https://oj.leetcode.com/problems/binary-tree-preorder-traversal/)| [C++](./algorithms/cpp/binaryTreePreorderTraversal/binaryTreePreorderTraversal.cpp), [Java](./algorithms/java/src/binaryTreePreorderTraversal/binaryTreePreorderTraversal.java)|Medium|
@@ -254,23 +257,23 @@ LeetCode
254257
|101|[Symmetric Tree](https://oj.leetcode.com/problems/symmetric-tree/)| [C++](./algorithms/cpp/symmetricTree/symmetricTree.cpp)|Easy|
255258
|100|[Same Tree](https://oj.leetcode.com/problems/same-tree/)| [C++](./algorithms/cpp/sameTree/sameTree.cpp)|Easy|
256259
|99|[Recover Binary Search Tree](https://oj.leetcode.com/problems/recover-binary-search-tree/)| [C++](./algorithms/cpp/recoverBinarySearchTree/recoverBinarySearchTree.cpp)|Hard|
257-
|98|[Validate Binary Search Tree](https://oj.leetcode.com/problems/validate-binary-search-tree/)| [C++](./algorithms/cpp/validateBinarySearchTree/validateBinarySearchTree.cpp), [Java](./algorithms/java/src/validateBinarySearchTree/validateBinarySearchTree.java)|Medium|
260+
|98|[Validate Binary Search Tree](https://oj.leetcode.com/problems/validate-binary-search-tree/)| [C++](./algorithms/cpp/validateBinarySearchTree/validateBinarySearchTree.cpp), [Java](./algorithms/java/src/validateBinarySearchTree/validateBinarySearchTree.java), [Python](./algorithms/python/ValidateBinarySearchTree/isValidBST.py)|Medium|
258261
|97|[Interleaving String](https://oj.leetcode.com/problems/interleaving-string/)| [C++](./algorithms/cpp/interleavingString/interleavingString.cpp)|Hard|
259262
|96|[Unique Binary Search Trees](https://oj.leetcode.com/problems/unique-binary-search-trees/)| [C++](./algorithms/cpp/uniqueBinarySearchTrees/uniqueBinarySearchTrees.cpp), [Python](./algorithms/python/UniqueBinarySearchTrees/numTrees.py)|Medium|
260-
|95|[Unique Binary Search Trees II](https://oj.leetcode.com/problems/unique-binary-search-trees-ii/)| [C++](./algorithms/cpp/uniqueBinarySearchTrees/uniqueBinarySearchTrees.II.cpp)|Medium|
263+
|95|[Unique Binary Search Trees II](https://oj.leetcode.com/problems/unique-binary-search-trees-ii/)| [C++](./algorithms/cpp/uniqueBinarySearchTrees/uniqueBinarySearchTrees.II.cpp), [Python](./algorithms/python/UniqueBinarySearchTreesII/generateTrees.py)|Medium|
261264
|94|[Binary Tree Inorder Traversal](https://oj.leetcode.com/problems/binary-tree-inorder-traversal/)| [C++](./algorithms/cpp/binaryTreeInorderTraversal/binaryTreeInorderTraversal.cpp)|Medium|
262265
|93|[Restore IP Addresses](https://oj.leetcode.com/problems/restore-ip-addresses/)| [C++](./algorithms/cpp/restoreIPAddresses/restoreIPAddresses.cpp)|Medium|
263-
|92|[Reverse Linked List II](https://oj.leetcode.com/problems/reverse-linked-list-ii/)| [C++](./algorithms/cpp/reverseLinkedList/reverseLinkedList.II.cpp), [Java](./algorithms/java/src/reverseLinkedListII/ReverseLinkedListII.java)|Medium|
266+
|92|[Reverse Linked List II](https://oj.leetcode.com/problems/reverse-linked-list-ii/)| [C++](./algorithms/cpp/reverseLinkedList/reverseLinkedList.II.cpp), [Java](./algorithms/java/src/reverseLinkedListII/ReverseLinkedListII.java), [Python](./algorithms/python/ReverseLinkedListII/reverseBetween.py)|Medium|
264267
|91|[Decode Ways](https://oj.leetcode.com/problems/decode-ways/)| [C++](./algorithms/cpp/decodeWays/decodeWays.cpp)|Medium|
265268
|90|[Subsets II](https://oj.leetcode.com/problems/subsets-ii/)| [C++](./algorithms/cpp/subsets/subsets.II.cpp), [Java](./algorithms/java/src/subsets/subsetsII.java)|Medium|
266269
|89|[Gray Code](https://oj.leetcode.com/problems/gray-code/)| [C++](./algorithms/cpp/grayCode/grayCode.cpp)|Medium|
267270
|88|[Merge Sorted Array](https://oj.leetcode.com/problems/merge-sorted-array/)| [C++](./algorithms/cpp/mergeTwoSortedArray/mergeTwoSortedArray.cpp)|Easy|
268271
|87|[Scramble String](https://oj.leetcode.com/problems/scramble-string/)| [C++](./algorithms/cpp/scrambleString/scrambleString.cpp)|Hard|
269-
|86|[Partition List](https://oj.leetcode.com/problems/partition-list/)| [C++](./algorithms/cpp/partitionList/partitionList.cpp)|Medium|
272+
|86|[Partition List](https://oj.leetcode.com/problems/partition-list/)| [C++](./algorithms/cpp/partitionList/partitionList.cpp), [Python](./algorithms/python/PartitionList/partition.py)|Medium|
270273
|85|[Maximal Rectangle](https://oj.leetcode.com/problems/maximal-rectangle/)| [C++](./algorithms/cpp/maximalRectangle/maximalRectangle.cpp)|Hard|
271274
|84|[Largest Rectangle in Histogram](https://oj.leetcode.com/problems/largest-rectangle-in-histogram/)| [C++](./algorithms/cpp/largestRectangleInHistogram/largestRectangleInHistogram.cpp)|Hard|
272275
|83|[Remove Duplicates from Sorted List](https://oj.leetcode.com/problems/remove-duplicates-from-sorted-list/)| [C++](./algorithms/cpp/removeDuplicatesFromSortedList/removeDuplicatesFromSortedList.cpp)|Easy|
273-
|82|[Remove Duplicates from Sorted List II](https://oj.leetcode.com/problems/remove-duplicates-from-sorted-list-ii/)| [C++](./algorithms/cpp/removeDuplicatesFromSortedList/removeDuplicatesFromSortedList.II.cpp)|Medium|
276+
|82|[Remove Duplicates from Sorted List II](https://oj.leetcode.com/problems/remove-duplicates-from-sorted-list-ii/)| [C++](./algorithms/cpp/removeDuplicatesFromSortedList/removeDuplicatesFromSortedList.II.cpp), [Python](./algorithms/python/RemoveDuplicatesFromSortedListII/deleteDuplicates.py)|Medium|
274277
|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|
275278
|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|
276279
|79|[Word Search](https://oj.leetcode.com/problems/word-search/)| [C++](./algorithms/cpp/wordSearch/wordSearch.cpp)|Medium|
@@ -333,7 +336,7 @@ LeetCode
333336
|22|[Generate Parentheses](https://oj.leetcode.com/problems/generate-parentheses/)| [C++](./algorithms/cpp/generateParentheses/generateParentheses.cpp)|Medium|
334337
|21|[Merge Two Sorted Lists](https://oj.leetcode.com/problems/merge-two-sorted-lists/)| [C++](./algorithms/cpp/mergeTwoSortedList/mergeTwoSortedList.cpp)|Easy|
335338
|20|[Valid Parentheses](https://oj.leetcode.com/problems/valid-parentheses/)| [C++](./algorithms/cpp/validParentheses/validParentheses.cpp)|Easy|
336-
|19|[Remove Nth Node From End of List](https://oj.leetcode.com/problems/remove-nth-node-from-end-of-list/)| [C++](./algorithms/cpp/removeNthNodeFromEndOfList/removeNthNodeFromEndOfList.cpp)|Easy|
339+
|19|[Remove Nth Node From End of List](https://oj.leetcode.com/problems/remove-nth-node-from-end-of-list/)| [C++](./algorithms/cpp/removeNthNodeFromEndOfList/removeNthNodeFromEndOfList.cpp), [Python](./algorithms/python/RemoveNthNodeFromEndOfList/removeNthFromEnd.py)|Easy|
337340
|18|[4Sum](https://oj.leetcode.com/problems/4sum/)| [C++](./algorithms/cpp/4Sum/4Sum.cpp)|Medium|
338341
|17|[Letter Combinations of a Phone Number](https://oj.leetcode.com/problems/letter-combinations-of-a-phone-number/)| [C++](./algorithms/cpp/letterCombinationsOfAPhoneNumber/letterCombinationsOfAPhoneNumber.cpp)|Medium|
339342
|16|[3Sum Closest](https://oj.leetcode.com/problems/3sum-closest/)| [C++](./algorithms/cpp/3SumClosest/3SumClosest.cpp)|Medium|
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
def flipMatchVoyage(self, root, voyage):
2+
res = []
3+
self.i = 0
4+
def dfs(root):
5+
if not root: return True
6+
if root.val != voyage[self.i]: return False
7+
self.i += 1
8+
if root.left and root.left.val != voyage[self.i]:
9+
res.append(root.val)
10+
root.left, root.right = root.right, root.left
11+
return dfs(root.left) and dfs(root.right)
12+
return res if dfs(root) else [-1]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
def insertionSortList(self, head):
2+
if not head: return head
3+
4+
dummy = ListNode(0)
5+
curr = head
6+
prev = dummy
7+
8+
while curr:
9+
next = curr.next
10+
while prev.next and prev.next.val < curr.val:
11+
prev = prev.next
12+
13+
curr.next = prev.next
14+
prev.next = curr
15+
prev = dummy
16+
17+
curr = next
18+
19+
return dummy.next
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
def longestUnivaluePath(self, root):
2+
self.longest = 0
3+
def helper(root):
4+
if not root: return 0
5+
l, r = helper(root.left), helper(root.right)
6+
left = (l + 1) if root.left and root.left.val == root.val else 0
7+
right = (r + 1) if root.right and root.right.val == root.val else 0
8+
self.longest = max(self.longest, left + right)
9+
return max(left, right)
10+
helper(root)
11+
return self.longest
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
def partition(self, head, x):
2+
h1 = l1 = ListNode(0)
3+
h2 = l2 = ListNode(0)
4+
while head:
5+
if head.val < x:
6+
l1.next = head
7+
l1 = l1.next
8+
else:
9+
l2.next = head
10+
l2 = l2.next
11+
head = head.next
12+
l2.next = None
13+
l1.next = h2.next
14+
return h1.next
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
def pathSum(self, root, target):
2+
self.result = 0
3+
cache = {0:1}
4+
5+
def dfs(root, currPathSum):
6+
if not root: return
7+
8+
currPathSum += root.val
9+
oldPathSum = currPathSum - target
10+
11+
self.result += cache.get(oldPathSum, 0)
12+
cache[currPathSum] = cache.get(currPathSum, 0) + 1
13+
14+
15+
dfs(root.left, currPathSum)
16+
dfs(root.right, currPathSum)
17+
18+
cache[currPathSum] -= 1
19+
20+
dfs(root, 0)
21+
return self.result
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
def deleteDuplicates(self, head):
2+
dummy = prev = ListNode(0)
3+
dummy.next = head
4+
while head and head.next:
5+
if head.val == head.next.val:
6+
while head and head.next and head.val == head.next.val:
7+
head = head.next
8+
head = head.next
9+
prev.next = head
10+
else:
11+
prev = prev.next
12+
head = head.next
13+
return dummy.next
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
def removeNthFromEnd(self, head, n):
2+
slow = fast = head
3+
for i in range(n):
4+
fast = fast.next
5+
if not fast: return head.next
6+
while fast.next:
7+
fast = fast.next
8+
slow = slow.next
9+
slow.next = slow.next.next
10+
return head
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
def reverseBetween(self, head, m, n):
2+
if not head or n == m: return head
3+
p = dummy = ListNode(0)
4+
dummy.next = head
5+
for _ in range(m - 1):
6+
p = p.next
7+
tail = p.next
8+
9+
for _ in range(n - m):
10+
temp = p.next
11+
p.next = tail.next
12+
tail.next = tail.next.next
13+
p.next.next = temp
14+
return dummy.next
+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# merge sort:
2+
3+
def sortList(self, head):
4+
if not head or not head.next: return head
5+
leftHalf, rightHalf = self.split(head)
6+
left = self.sortList(leftHalf)
7+
right = self.sortList(rightHalf)
8+
return self.mergeSorted(left, right)
9+
10+
def mergeSorted(self, a, b):
11+
res = dummy = ListNode(0)
12+
while a and b:
13+
if a.val < b.val:
14+
dummy.next = a
15+
dummy = a
16+
a = a.next
17+
else:
18+
dummy.next = b
19+
dummy = b
20+
b = b.next
21+
if not a: dummy.next = b
22+
else: dummy.next = a
23+
24+
return res.next
25+
26+
def split(self, node):
27+
if not node or not node.next:
28+
return node, None
29+
slow, fast = node, node
30+
prev = None
31+
while fast.next:
32+
prev = slow
33+
slow = slow.next
34+
fast = fast.next.next
35+
if not fast: break
36+
prev.next = None
37+
return node, slow
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
def generateTrees(self, n):
2+
if n == 0: return []
3+
4+
def helper(start, end):
5+
ls = []
6+
if start > end:
7+
ls.append(None)
8+
return ls
9+
if start == end:
10+
ls.append(TreeNode(start))
11+
return ls
12+
13+
for i in range(start, end + 1):
14+
left = helper(start, i - 1)
15+
right = helper(i + 1, end)
16+
for lnode in left:
17+
for rnode in right:
18+
root = TreeNode(i)
19+
root.left = lnode
20+
root.right = rnode
21+
ls.append(root)
22+
return ls
23+
24+
return helper(1, n)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# method 1: using recursion
2+
3+
def isValidBST1(self, root, lower = float('-inf'), upper = float('inf')):
4+
"""
5+
:type root: TreeNode
6+
:rtype: bool
7+
"""
8+
if not root: return True
9+
if root.val <= lower or root.val >= upper: return False
10+
return self.isValidBST(root.left, lower, min(upper, root.val)) \
11+
and self.isValidBST(root.right, max(lower, root.val), upper)
12+
13+
14+
# method 2: a proper BST should have this porperty: inorder traversal is increasing
15+
def isValidBST2(self, root):
16+
inorder = []
17+
def helper(root):
18+
if root:
19+
helper(root.left)
20+
inorder.append(root.val)
21+
helper(root.right)
22+
23+
helper(root)
24+
for i in range(len(inorder) - 1):
25+
if inorder[i + 1] <= inorder[i]: return False
26+
return True

0 commit comments

Comments
 (0)