[프그] 문자 반복 출력하기

dano Lee·2023년 4월 25일
0

문제

문자열 my_string과 정수 n이 매개변수로 주어질 때, my_string에 들어있는 각 문자를 n만큼 반복한 문자열을 return 하도록 solution 함수를 완성해보세요.

입출력 예

"hello"의 각 문자를 세 번씩 반복한 "hhheeellllllooo"를 return 합니다.

해답

function solution(my_string, n) {
    let answer = '';
    for(let i = 0; i< my_string.length; i++){
        answer += my_string[i].repeat(n)
    }
    return answer;
}
profile
세상에 이로운 영향력을 퍼뜨리고 싶은 프론트엔드 개발자 입니다.

0개의 댓글