정수 리스트 num_list와 찾으려는 정수 n이 주어질 때, num_list안에 n이 있으면 1을 없으면 0을 return하도록 solution 함수를 완성해주세요.
num_list | n | result |
---|---|---|
[1, 2, 3, 4, 5] | 3 | 1 |
[15, 98, 23, 2, 15] | 20 | 0 |
function solution(num_list, n) {
for (let i = 0; i < num_list.length; i++) {
if (num_list[i] == n) return 1;
}
return 0;
}
includes()
사용
const solution=(l,n)=>+(l.includes(n))
function solution(num_list, n) {
var answer = 0;
for(let i of num_list){
if(i==n){
return 1;
}
}
return answer;
}