mirror of
https://github.com/Xevion/the-office.git
synced 2025-12-11 04:08:48 -06:00
6 lines
177 B
Python
6 lines
177 B
Python
episode_counts = [6, 22, 23, 14, 26, 24, 24, 24, 23]
|
|
|
|
|
|
def check_validity(season: int, episode: int):
|
|
return (1 <= season <= 9) and (1 <= episode <= episode_counts[season])
|