Skip to main content
-1
Source Link
Adám
  • 31.8k
  • 4
  • 131
  • 293

APL (Dyalog), 1918 bytes

∊'#''#',¨⍨';'⍴¨⍨⎕UCS 

Try it online!Try it online!

⎕UCS Convert to Unicode code points

';'⍴¨⍨ use each code point to reshape ( = RhoR; Reshape) a semicolon

#',¨⍨ append a hash to each string

 enlist (flatten)

APL (Dyalog), 19 bytes

∊'#',¨⍨';'⍴¨⍨⎕UCS 

Try it online!

⎕UCS Convert to Unicode code points

';'⍴¨⍨ use each code point to reshape ( = RhoR; Reshape) a semicolon

#',¨⍨ append a hash to each string

 enlist (flatten)

APL (Dyalog), 18 bytes

'#',¨⍨';'⍴¨⍨⎕UCS 

Try it online!

⎕UCS Convert to Unicode code points

';'⍴¨⍨ use each code point to reshape ( = RhoR; Reshape) a semicolon

#',¨⍨ append a hash to each string

Source Link
Adám
  • 31.8k
  • 4
  • 131
  • 293

APL (Dyalog), 19 bytes

∊'#',¨⍨';'⍴¨⍨⎕UCS 

Try it online!

⎕UCS Convert to Unicode code points

';'⍴¨⍨ use each code point to reshape ( = RhoR; Reshape) a semicolon

#',¨⍨ append a hash to each string

 enlist (flatten)