본문 바로가기

Coding Test/프로그래머스

[프로그래머스/자바] 문자 반복 출력하기

class Solution {
    public String solution(String my_string, int n) {
        String answer = "";
        
        for(int i=0; i<my_string.length(); i++) {
            answer += my_string.substring(i, i+1).repeat(n);
        }
        
        return answer;
    }
}