class Solution {
public int solution(int[] array, int n) {
int answer = 0;
for(int number : array){
if(number == n) answer++;
}
return answer;
}
}
import java.util.Arrays;
class Solution {
public int solution(int[] array, int n) {
return (int) Arrays.stream(array).filter(i -> i == n).count();
}
}
스트림을 이용한 풀이
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 없는 숫자 더하기 (0) | 2023.03.13 |
---|---|
[프로그래머스/자바] 점의 위치 구하기 (0) | 2023.03.13 |
[프로그래머스/자바] 배열 원소의 길이 (0) | 2023.03.08 |
[프로그래머스/자바] 개미 군단 (0) | 2023.03.07 |
[프로그래머스/자바] 자릿수 더하기 (0) | 2023.03.07 |