배열내최소값

🔺 문제 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 🔺 코드 (틀림) import java.util.*; class Solution { public int[] solution(int[] arr) { int[] answer; if(arr.length == 1) { answer = new int[]{-1}; } else { // int 배열 내림차순 정렬 // : Integer 타입 배열로 변경해야 함. Integer[] realArr = Arrays.stream(arr).boxed().toArray(Integer[]::new); Arrays.sort(r..
imname1am
'배열내최소값' 태그의 글 목록