[프로그래머스] 제일 작은 수 제거하기

ElenaPark·2021년 3월 6일
0

알고리즘

목록 보기
21/37
post-thumbnail

제일 작은 수 제거하기

풀이

function solution9(arr) {
  if (arr.length <= 1) {
    return [-1];
  } else {
    const min = Math.min(...arr);
    console.log(min);
    // splice(시작index, 갯수)
    arr.splice(arr.indexOf(min), 1);
  }
  return arr;
}

console.log(solution9([4, 3, 2, 1])); // [4,3,2]
console.log(solution9([10])); // [-1]
profile
Front-end 개발자입니다.

0개의 댓글