Post History
Canvas, 9 7 bytes H/×║∔}r Try it here! Explanation H/×║+}r H } push empty art and start a loop from 1..n /× repeat '/' i times ║ palindromize horizontally(no overlap) ...
Answer
#2: Post edited
# [Canvas](https://github.com/dzaima/Canvas), 9 [bytes](https://github.com/dzaima/Canvas/blob/master/files/chartable.md)H\;12╋}↔║[Try it here!](https://dzaima.github.io/Canvas/?u=JXVGRjI4JXVGRjNDJXVGRjFCJXVGRjExJXVGRjEyJXUyNTRCJXVGRjVEJXUyMTk0JXUyNTUx,i=MjA_,v=8)- ## Explanation
- ```
H\;12+}↔║H } push empty art and start a loop from 1..n\ create diagonal of length i; swap with made art12+ overlap at (1,2)↔║ mirror and palindromize vertically
- # [Canvas](https://github.com/dzaima/Canvas), <sup><del>9</del></sup> 7 [bytes](https://github.com/dzaima/Canvas/blob/master/files/chartable.md)
- H/×║∔}r
- [Try it here!](https://dzaima.github.io/Canvas/?u=JXVGRjI4LyVENyV1MjU1MSV1MjIxNCV1RkY1RCV1RkY1Mg__,i=MjA_,v=8)
- ## Explanation
- ```
- H/×║+}r
- H } push empty art and start a loop from 1..n
- /× repeat '/' i times
- ║ palindromize horizontally(no overlap)
- + join with previous iteration
- r center the whole thing
#1: Initial revision
# [Canvas](https://github.com/dzaima/Canvas), 9 [bytes](https://github.com/dzaima/Canvas/blob/master/files/chartable.md) H\;12╋}↔║ [Try it here!](https://dzaima.github.io/Canvas/?u=JXVGRjI4JXVGRjNDJXVGRjFCJXVGRjExJXVGRjEyJXUyNTRCJXVGRjVEJXUyMTk0JXUyNTUx,i=MjA_,v=8) ## Explanation ``` H\;12+}↔║ H } push empty art and start a loop from 1..n \ create diagonal of length i ; swap with made art 12+ overlap at (1,2) ↔║ mirror and palindromize vertically