Comments on Repeat the characters
Parent
Repeat the characters
Given a string and a non-negative integer $n$, output a new string in which each character is repeated $n$ times.
Test cases:
"abc", 1 -> "abc"
"Hello", 0 -> ""
"double", 2 -> "ddoouubbllee"
"Hi", 4 -> "HHHHiiii"
"", 20 -> ""
[Ruby], 34 29 bytes ```ruby …
3y ago
[Haskell], 18 bytes …
3y ago
[Python 3], 34 bytes …
3y ago
Rockstar, 90 bytes list …
3y ago
JavaScript, 36 bytes …
3y ago
Japt `-m`, 2 bytes pV …
3y ago
[C (gcc)], 56 bytes …
3y ago
[jq], 32 27 bytes -5 bytes (t …
3y ago
[Jelly], 1 byte x Tr …
3y ago
[APL (Dyalog Unicode)], 1 byte …
3y ago
[shortC], 40 37 bytes i …
3y ago
[Python 3], 53 38 bytes …
3y ago
J, 1 byte ``` # ``` Tr …
3y ago
Ruby, 23 bytes ```ruby ->{ …
3y ago
0 comment threads