Post History
Python 2, 61 bytes i=12;exec"print'YWUSQOMKIGECABDFHJLNPRTVXZ'[i:14+i];i-=1;"*13 Try it online! I tried to do it without writing the full list 'YWUSQOMKIGECABDFHJLNPRTVXZ' but couldn't get l...
#1: Initial revision
# [Python 2], 61 bytes
<!-- language-all: lang-python -->
i=12;exec"print'YWUSQOMKIGECABDFHJLNPRTVXZ'[i:14+i];i-=1;"*13
[Try it online!][TIO-krzfxlrn]
I tried to do it without writing the full list 'YWUSQOMKIGECABDFHJLNPRTVXZ' but couldn't get less than 61 bytes. Do not hesitate to give me advice :)
[Python 2]: https://docs.python.org/2/
[TIO-krzfxlrn]: https://tio.run/##K6gsycjPM/r/P9PW0Mg6tSI1WamgKDOvRD0yPDQ40N/X29Pd1dnRycXNw8vHLyAoJCwiSj0608rQRDsz1jpT19bQWknL0Pj/fwA "Python 2 – Try It Online"
