win_condition = set([2,9,14,7,15]) def isBingo(input): if win_condition.issubset(set(input)): return "WIN" return "LOSE"
`
We're a place where coders share, stay up-to-date and grow their careers.
We strive for transparency and don't collect excess data.
re: Daily Challenge #76 - Bingo! (or not...) VIEW POST
FULL DISCUSSIONWhit Python
`