Post History
Canvas, 10 7 6 bytes Z[]/┼┼ Try it here! Creates the top portion, centers it, and mirrors it. -3 bytes from dzaima's hint. -1, found the 6 byter! Explanation Z[]/++ Z push the al...
Answer
#3: Post edited
# [Canvas](https://github.com/dzaima/Canvas), <SUP><del>10</del></SUP> 7 [bytes](https://github.com/dzaima/Canvas/blob/master/files/chartable.md)Z[│]r──[Try it here!](https://dzaima.github.io/Canvas/?u=JXVGRjNBJXVGRjNCJXUyNTAyJXVGRjNEJXVGRjUyJXUyNTAwJXUyNTAw,v=8)- Creates the top portion, centers it, and mirrors it.
- -3 bytes from dzaima's hint.
- ## Explanation
- ```
Z[|]r--- Z push the alphabet
[ ] map each prefix to| itself palindromizedr center it-- mirror downwards with 1 line overlap, without reflecting letters
- # [Canvas](https://github.com/dzaima/Canvas), <SUP><del>10 7</del></SUP> 6 [bytes](https://github.com/dzaima/Canvas/blob/master/files/chartable.md)
- Z[]/┼┼
- [Try it here!](https://dzaima.github.io/Canvas/?u=JXVGRjNBJXVGRjNCJXVGRjNEJXVGRjBGJXUyNTNDJXUyNTND,v=8)
- Creates the top portion, centers it, and mirrors it.
- -3 bytes from dzaima's hint.
- -1, found the 6 byter!
- ## Explanation
- ```
- Z[]/++
- Z push the alphabet
- [] get all prefixes
- / diagonalize by padding each line with one less than the previous
- ++ Quad palindromize, without reflecting letters
#2: Post edited
# [Canvas](https://github.com/dzaima/Canvas), 10 [bytes](https://github.com/dzaima/Canvas/blob/master/files/chartable.md)Z[│]r─^∙V╋[Try it here!](https://dzaima.github.io/Canvas/?u=JXVGRjNBJXVGRjNCJXUyNTAyJXVGRjNEJXVGRjUyJXUyNTAwJTVFJXUyMjE5ViV1MjU0Qg__,v=8)- Creates the top portion, centers it, and mirrors it.
- ## Explanation
- ```
Z[|]r-^.V+- Z push the alphabet
- [ ] map each prefix to
- | itself palindromized
- r center it
- mirror downwards with 1 line overlap^.V+ replace '^' with 'V'
- # [Canvas](https://github.com/dzaima/Canvas), <SUP><del>10</del></SUP> 7 [bytes](https://github.com/dzaima/Canvas/blob/master/files/chartable.md)
- Z[│]r──
- [Try it here!](https://dzaima.github.io/Canvas/?u=JXVGRjNBJXVGRjNCJXUyNTAyJXVGRjNEJXVGRjUyJXUyNTAwJXUyNTAw,v=8)
- Creates the top portion, centers it, and mirrors it.
- -3 bytes from dzaima's hint.
- ## Explanation
- ```
- Z[|]r--
- Z push the alphabet
- [ ] map each prefix to
- | itself palindromized
- r center it
- -- mirror downwards with 1 line overlap, without reflecting letters
#1: Initial revision
# [Canvas](https://github.com/dzaima/Canvas), 10 [bytes](https://github.com/dzaima/Canvas/blob/master/files/chartable.md) Z[│]r─^∙V╋ [Try it here!](https://dzaima.github.io/Canvas/?u=JXVGRjNBJXVGRjNCJXUyNTAyJXVGRjNEJXVGRjUyJXUyNTAwJTVFJXUyMjE5ViV1MjU0Qg__,v=8) Creates the top portion, centers it, and mirrors it. ## Explanation ``` Z[|]r-^.V+ Z push the alphabet [ ] map each prefix to | itself palindromized r center it - mirror downwards with 1 line overlap ^.V+ replace '^' with 'V'