Python FizzBuzz challenge

    ____  __  ____    ___________
   / __ \/ / / / /   / ____/ ___/
  / /_/ / / / / /   / __/  \__ \
 / _, _/ /_/ / /___/ /___ ___/ /
/_/ |_|\____/_____/_____//____/
                

There exists a legendary version, fizzbuzz.py, that meets all requirements of the classic FizzBuzz program and has these properties:


$ python2 fizzbuzz.py | md5sum

d0e6e868d231a6e1fbd87cc2c092676b -

$ python3 fizzbuzz.py | md5sum

d0e6e868d231a6e1fbd87cc2c092676b -

$ md5sum fizzbuzz.py

5d4dcb62fdf1fadf549344f449ba483d fizzbuzz.py

$ grep "[cfvwx]" fizzbuzz.py

# (no output)

$ wc fizzbuzz.py

1 1 115 fizzbuzz.py


The unique set of characters used in the source code, in order of first appearance, is:



a=list(mpr,nge10);[2:3]'Fz*45Bu6\.jo

Can you recover the original fizzbuzz.py?


Send your reconstruction and tell us how did you solve it to fizzbuzz@interjektio.fi — and show us your mastery of Python.