class Solution {
public int solution(int[] num_list, int n) {
int answer = 0;
for(int i=0; i<num_list.length; i++){
if(num_list[i]==n){
answer = 1;
}
}
return answer;
}
}
answer 변수를 0으로 초기화하고, 반복문을 이용해 num_list의 각 원소를 하나씩 순회하면서 n과 일치하는 원소가 있으면 answer를 1로 변경합니다. 이후 answer를 반환합니다.