Skip to content

Commit 399230d

Browse files
committed
Solution of Remove Invalid Parentheses and Binary Tree Paths
1 parent 4949001 commit 399230d

File tree

3 files changed

+115
-1
lines changed

3 files changed

+115
-1
lines changed

200-300q/257.py

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
'''
2+
Given a binary tree, return all root-to-leaf paths.
3+
4+
Note: A leaf is a node with no children.
5+
6+
Example:
7+
8+
Input:
9+
10+
1
11+
/ \
12+
2 3
13+
\
14+
5
15+
16+
Output: ["1->2->5", "1->3"]
17+
18+
Explanation: All root-to-leaf paths are: 1->2->5, 1->3
19+
'''
20+
21+
# Definition for a binary tree node.
22+
# class TreeNode(object):
23+
# def __init__(self, x):
24+
# self.val = x
25+
# self.left = None
26+
# self.right = None
27+
28+
class Solution(object):
29+
def binaryTreePaths(self, root):
30+
"""
31+
:type root: TreeNode
32+
:rtype: List[str]
33+
"""
34+
if not root:
35+
return []
36+
37+
paths = []
38+
def dfs(root, curr):
39+
if root.left is None and root.right is None:
40+
paths.append(curr + str(root.val))
41+
return
42+
43+
if root.left:
44+
dfs(root.left, curr + str(root.val) + '->')
45+
if root.right:
46+
dfs(root.right, curr + str(root.val) + '->')
47+
48+
curr = ""
49+
dfs(root, curr)
50+
return paths

300-400q/301.py

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
'''
2+
Remove the minimum number of invalid parentheses in order to make the input string valid. Return all possible results.
3+
4+
Note: The input string may contain letters other than the parentheses ( and ).
5+
6+
Example 1:
7+
8+
Input: "()())()"
9+
Output: ["()()()", "(())()"]
10+
Example 2:
11+
12+
Input: "(a)())()"
13+
Output: ["(a)()()", "(a())()"]
14+
Example 3:
15+
16+
Input: ")("
17+
Output: [""]
18+
'''
19+
20+
class Solution(object):
21+
def removeInvalidParentheses(self, s):
22+
"""
23+
:type s: str
24+
:rtype: List[str]
25+
"""
26+
if not s:
27+
return [""]
28+
29+
def isValid(s):
30+
count = 0
31+
for char in s:
32+
if char == '(':
33+
count += 1
34+
elif char == ')':
35+
count -= 1
36+
if count < 0:
37+
return False
38+
return (count==0)
39+
40+
queue, result = [s], []
41+
visited = set()
42+
visited.add(s)
43+
level = False
44+
45+
while queue:
46+
new_str = queue.pop(0)
47+
if isValid(new_str):
48+
result.append(new_str)
49+
level = True
50+
51+
if level:
52+
continue
53+
54+
for index in range(len(new_str)):
55+
if not (new_str[index] == "(" or new_str[index] == ")"):
56+
continue
57+
partition_str = new_str[0:index] + new_str[index+1:]
58+
if partition_str not in visited:
59+
queue.append(partition_str)
60+
visited.add(partition_str)
61+
return result
62+
63+

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Python solution of problems from [LeetCode](https://leetcode.com/).
1818
|326|[Power of Three](https://leetcode.com/problems/power-of-three/) | [Python](./300-400q/326.py)|Easy|
1919
|322|[Coin Change](https://leetcode.com/problems/coin-change/) | [Python](./300-400q/322.py)|Medium|
2020
|315|[Count of Smaller Numbers After Self](https://leetcode.com/problems/count-of-smaller-numbers-after-self/) | [Python](./300-400q/315.py)|Hard|
21-
21+
|301|[Remove Invalid Parentheses](https://leetcode.com/problems/remove-invalid-parentheses)|[Python](./300-400q/301.py)|Hard|
2222

2323
##### [Problems 200-300q](./200-300q/)
2424
| # | Title | Solution | Difficulty |
@@ -32,6 +32,7 @@ Python solution of problems from [LeetCode](https://leetcode.com/).
3232
|283|[Move Zeros](https://leetcode.com/problems/move-zeroes)|[Python](./200-300q/283.py)|Easy|
3333
|279|[Perfect Squares](https://leetcode.com/problems/perfect-squares/) | [Python](./200-300q/279.py)|Medium|
3434
|268|[Missing Number](https://leetcode.com/problems/missing-number)|[Python](./200-300q/268.py)|Easy|
35+
|257|[Binary Tree Paths](https://leetcode.com/problems/binary-tree-paths)[Python](./200-300q/257.py)|Easy|
3536
|253|[Meeting Rooms II](https://leetcode.com/problems/meeting-rooms-ii) | [Python](./200-300q/253.py)|Medium|
3637
|240|[Search a 2D Matrix II](https://leetcode.com/problems/search-a-2d-matrix-ii/)|[Python](./200-300q/240.py)|Medium|
3738
|239|[Sliding Window Maximum](https://leetcode.com/problems/sliding-window-maximum/)| [Python](./200-300q/239.py)|Hard|

0 commit comments

Comments
 (0)