Skip to content

Commit 782becc

Browse files
committedMay 1, 2023
[#15] Feat: Add 멀티탭 스케줄링
1 parent ca23f36 commit 782becc

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
 

‎13334.py

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
heapq.heappush(heap, info)
2323
while heap and heap[0][0] < startPoint:
2424
heapq.heappop(heap)
25+
2526
maxPath = max(maxPath, len(heap))
2627

2728
print(maxPath)

‎9252.py

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
lengthA = len(stringA)
77
lengthB = len(stringB)
88

9-
10-
count = 0
119
dp = [[0] * (lengthB + 1) for _ in range(lengthA + 1)]
1210

1311
for i in range(1, lengthA+1):

0 commit comments

Comments
 (0)
Please sign in to comment.