✅ 문제

✅ 풀이

 

이클립스에서 문자열 메소드를 찾다가 편한것을 발견했따!.

 

(문자열).repeat(반복횟수)

 

repeat 메소드를 사용하면 편리하게 문자열을 반복할 수 있다.

🟩 String java.lang.String.repeat(int count)

Returns a string whose value is the concatenation of this string repeated count times.

If this string is empty or count is zero then the empty string is returned.

Parameters:
count number of times to repeat
Returns:
A string composed of this string repeated count times or the empty string if this string is empty or count is zero
Throws:
IllegalArgumentException - if the count is negative.
Since:
11

 

💢 아래 해결 코드!

class Solution {
    public String solution(String my_string, int k) {
        String answer = "";
        return my_string.repeat(k);
    }
}

뭔가 메소드의 도움을 받아 해결해서 내가 푼거 같지 않아서...내가 알고 있는 지식으로 재도전! 👊🏼

 

class Solution {
    public String solution(String my_string, int k) {
        String answer = "";
        
        for(int i=0;i<k;i++)
            answer+=my_string;
        
        return answer;
    }
}

 

위 방식으로 해결했다.👊🏼 👊🏼 👊🏼

+ Recent posts