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

정선모·2022년 10월 8일
0

프로그래머스

목록 보기
60/91

반복문과 조건문을 이용한 간단한 문제였습니다.

class Solution {
    public int solution(int[] array, int n) {
        int answer = 0;
        for(int i=0;i<array.length;i++) {
            if(array[i] == n) {
                answer++;
            }
        }
        return answer;
    }
}
profile
개발자가 되어가는 비전공자

0개의 댓글