Skip to content

Commit

Permalink
Merge pull request neetcode-gh#1490 from rafiq/patch-3
Browse files Browse the repository at this point in the history
Update Solution to 253-Meeting-Rooms-ii.py
  • Loading branch information
Ahmad-A0 authored Dec 22, 2022
2 parents d978d29 + b305f8f commit 6f9899e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/253-Meeting-Rooms-ii.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ class Solution:
"""

def minMeetingRooms(self, intervals):
start = sorted([i.start for i in intervals])
end = sorted([i.end for i in intervals])
start = sorted([i[0] for i in intervals])
end = sorted([i[1] for i in intervals])

res, count = 0, 0
s, e = 0, 0
Expand Down

0 comments on commit 6f9899e

Please sign in to comment.