Post

원소들의 곱과 합

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

📔 문제 설명

정수 배열 arr가 주어집니다. 이때 arr의 원소는 1 또는 0입니다. 정수 idx가 주어졌을 때, idx보다 크면서 배열의 값이 1인 가장 작은 인덱스를 찾아서 반환하는 solution 함수를 완성해 주세요.

단, 만약 그러한 인덱스가 없다면 -1을 반환합니다.

💡 입출력 예

arridxresult
[0, 0, 0, 1]13
[1, 0, 0, 1, 0, 0]4-1
[1, 1, 1, 1, 0]33

💻내가 작성한 코드

1
2
3
function solution(arr, idx) {
  return arr.findIndex((el, i) => i >= idx && el === 1);
}

💻다른 사람 코드

indexOf(찾을 요소, 검색 시작할 인덱스)

1
const solution = (a, i) => a.indexOf(1, i);
This post is licensed under CC BY 4.0 by the author.