First solution in Clear category for Just Fizz! by dx2-66
def checkio(num: int) -> str: return ['Fizz', str(num)][bool(num % 3)]
Nov. 30, 2022