Post History
V (vim), 21 bytes ¬AZ¬YA|òlÄ26|xx>>YGpH Try it online! Explanation: ¬AZ " Insert every character from A to Z ¬YA " Insert every character from Y...
Answer
#2: Post edited
- # [V (vim)], 21 bytes
- ¬AZ¬YA|òlÄ26|xx>>YGpH
- [Try it online!][TIO-kkwtxi6o]
- [V (vim)]: https://github.com/DJMcMayhem/V
- [TIO-kkwtxi6o]: https://tio.run/##K/v//9Aax6hDayIdaw5vyjncYmRWU1FhZxfpXuDx/z8A "V (vim) – Try It Online"
- Hexdump:
- 00000000: ac41 5aac 5941 7cf2 6cc4 3236 7c78 783e .AZ.YA|.l.26|xx>
- 00000010: 3e59 4770 48 >YGpH
- # [V (vim)], 21 bytes
- ¬AZ¬YA|òlÄ26|xx>>YGpH
- [Try it online!][TIO-kkwtxi6o]
- [V (vim)]: https://github.com/DJMcMayhem/V
- [TIO-kkwtxi6o]: https://tio.run/##K/v//9Aax6hDayIdaw5vyjncYmRWU1FhZxfpXuDx/z8A "V (vim) – Try It Online"
- Explanation:
- ¬AZ " Insert every character from A to Z
- ¬YA " Insert every character from Y to A
- | " Go back to the beginning of this line
- ò " While True...
- l " Move to the right (if there is only one character
- " on this line, break the loop)
- Ä " Duplicate this line upwards
- 26| " Go to the 26th character on this line
- xx " Delete two characters
- >> " Indent this line with one space
- Y " Yank this line
- G " Go to the last line
- p " Paste the line that was just yanked downwards
- H " Go back to the first line
- " (Implicit) End loop
- Hexdump:
- 00000000: ac41 5aac 5941 7cf2 6cc4 3236 7c78 783e .AZ.YA|.l.26|xx>
- 00000010: 3e59 4770 48 >YGpH
#1: Initial revision
# [V (vim)], 21 bytes ¬AZ¬YA|òlÄ26|xx>>YGpH [Try it online!][TIO-kkwtxi6o] [V (vim)]: https://github.com/DJMcMayhem/V [TIO-kkwtxi6o]: https://tio.run/##K/v//9Aax6hDayIdaw5vyjncYmRWU1FhZxfpXuDx/z8A "V (vim) – Try It Online" Hexdump: 00000000: ac41 5aac 5941 7cf2 6cc4 3236 7c78 783e .AZ.YA|.l.26|xx> 00000010: 3e59 4770 48 >YGpH