Post History
Jelly, 13 bytes ØAUƤz⁶ZUŒBŒḄY Try it online! How it works ØAUƤz⁶ZUŒBŒḄY - Main link. Takes no arguments ØA - Yield the uppercase alphabet Ƥ - Over each prefix: U ...
Answer
#2: Post edited
- # [Jelly], 13 bytes
- ØAUƤz⁶ZUŒBŒḄY
- [Try it online!][TIO-kplyuo1n]
- [Jelly]: https://github.com/DennisMitchell/jelly
[TIO-kplyuo1n]: https://tio.run/##AR4A4f9qZWxsef//w5hBVcakeuKBtlpVxZJCxZLhuIRZ//8 "Jelly – Try It Online"
- # [Jelly], 13 bytes
- ØAUƤz⁶ZUŒBŒḄY
- [Try it online!][TIO-kplyuo1n]
- [Jelly]: https://github.com/DennisMitchell/jelly
- [TIO-kplyuo1n]: https://tio.run/##AR4A4f9qZWxsef//w5hBVcakeuKBtlpVxZJCxZLhuIRZ//8 "Jelly – Try It Online"
- ## How it works
- ØAUƤz⁶ZUŒBŒḄY - Main link. Takes no arguments
- ØA - Yield the uppercase alphabet
- Ƥ - Over each prefix:
- U - Reverse it
- z⁶ - Zip, padding with spaces
- Z - Transpose
- U - Reverse each
- ŒB - Bounce each
- ŒḄ - Bounce the entire string
- Y - Join by newlines