1396. Design Underground System
class UndergroundSystem:
def __init__(self):
self.data = {}
self.pending = {}
def checkIn(self, id: int, stationName: str, t: int) -> None:
self.pending[id] = [stationName, t]
def checkOut(self, id: int, station...
tapanrachchh.hashnode.dev1 min read