배열의 원소만큼 추가하기(잘품,mapToint(Integer::intValue))

Psj·2025년 3월 3일
0

코딩테스트

목록 보기
32/47

import java.util.stream.*;
import java.util.*;

class Solution {
    public int[] solution(int[] arr) {
        List<Integer> intList = new ArrayList<>();

        for(int i : arr){
            for (int j=0; j<i; j++){
                intList.add(i);
            }
        }
        
        return intList.stream().mapToInt(Integer::intValue).toArray();
    }
}
profile
Software Developer

0개의 댓글

관련 채용 정보