매일 조금씩

프로그래머스 level1 : 푸드 파이트 대회 - Java 본문

알고리즘

프로그래머스 level1 : 푸드 파이트 대회 - Java

mezo 2023. 6. 2. 11:11
728x90
반응형

class Solution {
    public String solution(int[] food) {
        String answer = "0";
        for(int i = food.length - 1; i >= 1; i--){
            String now = "";
            int count = food[i] / 2;
            for(int j = 0; j < count; j ++){
                now += i;
            }
            answer = now + answer + now;
        }
        return answer;
    }
}

 

728x90
반응형