Skip to main content
added 162 characters in body
Source Link
Cinaski
  • 2.3k
  • 1
  • 9
  • 17

MATL, 44 3 bytes

t&lstY" 

Try it online!Try it online!

Explanation:

t % duplicate elements Y" % replicate elements of array % (implicit) convert to string and display 

MATL, 4 bytes

t&ls 

Try it online!

MATL, 4 3 bytes

tY" 

Try it online!

Explanation:

t % duplicate elements Y" % replicate elements of array % (implicit) convert to string and display 
Source Link
Cinaski
  • 2.3k
  • 1
  • 9
  • 17

MATL, 4 bytes

t&ls 

Try it online!