✅ 문제
✅ 풀이
이클립스에서 문자열 메소드를 찾다가 편한것을 발견했따!.
(문자열).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;
}
}
위 방식으로 해결했다.👊🏼 👊🏼 👊🏼
'IT > 코딩연습!' 카테고리의 다른 글
[프로그래머스 Lv.0] ✏️ 두 수의 연산값 비교하기 (0) | 2023.07.03 |
---|---|
[프로그래머스 Lv.0] ✏️ 더 크게 합치기 (0) | 2023.06.15 |
[프로그래머스 Lv.0] ✏️문자 리스트를 문자열로 변환하기 (0) | 2023.06.13 |
[프로그래머스 Lv.0]✏️ n의 배수 (0) | 2023.06.13 |
[프로그래머스 Lv.0] ✏️ 문자열 섞기 (0) | 2023.06.13 |