class Solution {
public String solution(int[] food) {
StringBuilder sb = new StringBuilder();
for (int i = 1; i < food.length; i++) {
for (int j = 0; j < food[i] / 2; j++) {
sb.append(i);
}
}
return sb.toString() + "0" + sb.reverse().toString();
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 쿼드압축 후 개수 세기 (0) | 2023.11.27 |
---|---|
[프로그래머스/자바] 신규 아이디 추천 (1) | 2023.11.27 |
[프로그래머스/자바] 문자열 내 p와 y의 개수 (0) | 2023.11.27 |
[프로그래머스/자바] 문자열 압축 (0) | 2023.11.27 |
[프로그래머스/자바] 이상한 문자 만들기 (1) | 2023.11.27 |