본문 바로가기

Coding Test/프로그래머스

[프로그래머스/자바] 중복된 숫자 개수

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();
    }
}

스트림을 이용한 풀이