Skip to content

Commit 2e7229f

Browse files
committed
fix : add time and space complexity
1 parent fffbaa9 commit 2e7229f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

meeting-rooms-ii/samthekorean.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# TS : O(n log n)
2+
# SC : O(n)
13
class Solution:
24
def minMeetingRooms(self, intervals: List[List[int]]) -> int:
35
pairs = []

0 commit comments

Comments
 (0)