Post

첫 번째로 나오는 음수

https://school.programmers.co.kr/learn/courses/30/lessons/181896

📔 문제 설명

정수 리스트 num_list가 주어질 때, 첫 번째로 나오는 음수의 인덱스를 return하도록 solution 함수를 완성해주세요. 음수가 없다면 -1을 return합니다.

💡 입출력 예

num_listresult
[12, 4, 15, 46, 38, -2, 15]5
[13, 22, 53, 24, 15, 6]-1

💻내가 작성한 코드

1
2
3
function solution(num_list) {
  return num_list.findIndex((element) => element < 0);
}

findIndex-docs

This post is licensed under CC BY 4.0 by the author.