always very funny when you mistype 'fuzz' and copilot helpfully suggests
fizzbuzz = lambda x:
print(
"Fizz"*(x%3==0) +
"Buzz"*(x%5==0)
or print(x)
)
if I was looking for that you would be very close but still fail the interview, copilot.
