Desktop only
Coding Challenges are optimized for Desktop
Come back on a wider screen - the live editor needs room to breathe. You can still read the problem brief above.
Come back on a wider screen - the live editor needs room to breathe. You can still read the problem brief above.
def parse_events(events: list[dict], close_open: bool = False) -> dict[str, list[tuple[int, int]]]: ...def payout(events: list[dict], rate: float) -> float: ...def payout_with_bonus(events: list[dict], rate: float, multiplier: float = 2) -> float: ...def payout_report(events: list[dict], rate: float, multiplier: float = 2) -> dict[str, float]: ...