Skip to content

Commit 76c3a8f

Browse files
committed
feat: add solutions to lc problem: No.0639
No.0639.Decode Ways II
1 parent 636dd79 commit 76c3a8f

File tree

9 files changed

+622
-272
lines changed

9 files changed

+622
-272
lines changed

solution/0000-0099/0057.Insert Interval/Solution.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
class Solution:
2-
def insert(self, intervals: List[List[int]], newInterval: List[int]) -> List[List[int]]:
2+
def insert(
3+
self, intervals: List[List[int]], newInterval: List[int]
4+
) -> List[List[int]]:
35
st, ed = newInterval
46
ans = []
57
insert = False

solution/0100-0199/0155.Min Stack/Solution.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
class MinStack:
2-
32
def __init__(self):
43
self.stk1 = []
54
self.stk2 = [inf]

0 commit comments

Comments
 (0)