int[][] to Integer[][] 이중배열 Wrapper class로 변환

이건영·2023년 10월 10일
0
post-custom-banner
public int input(int[][] scores) {
		Integer[][] wrapper = Stream.of(scores)
			.map(arr -> IntStream.of(arr).boxed().toArray(Integer[]::new))
			.toArray(Integer[][]::new);
            
}
profile
일단 해보자

0개의 댓글