APL, (削除) 11 (削除ここまで) 56 bytes
65 bytes saved thanks to @Adám
' '⍴⍨≢
Uses the Dyalog Classical character set.
APL, (削除) 11 (削除ここまで) 5 bytes
6 bytes saved thanks to @Adám
' '⍴⍨≢
APL, (削除) 11 (削除ここまで) 6 bytes
5 bytes saved thanks to @Adám
' '⍴⍨≢
Uses the Dyalog Classical character set.
APL, 11(削除) 11 (削除ここまで) 5 bytes
{(⍴,⍵)⍴' '}
How?6 bytes saved thanks to @Adám
⍴' ' ⍝ shape ' ' as the
⍴,⍵ ⍝ shape of the argument'⍴⍨≢
APL, 11 bytes
{(⍴,⍵)⍴' '}
How?
⍴' ' ⍝ shape ' ' as the
⍴,⍵ ⍝ shape of the argument
APL, (削除) 11 (削除ここまで) 5 bytes
6 bytes saved thanks to @Adám
' '⍴⍨≢