#3: Post edited
by
trichoplax
·
2023-06-19T10:25:39Z (over 1 year ago)
Add finalized tag now that the sandbox can be filtered to exclude tags
Repeat the characters [FINALIZED]
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 -> ""
```
#2: Post edited
by
celtschk
·
2021-09-09T18:05:17Z (over 3 years ago)
posted as challenge
Repeat the characters
Repeat the characters [FINALIZED]
#1: Initial revision
by
celtschk
·
2021-09-07T06:26:43Z (over 3 years ago)
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 -> ""
```