본문 바로가기
C++

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

by 띰쥬 2025. 9. 4.
728x90
반응형
SMALL

#include <string>
#include <vector>

using namespace std;

int solution(vector<int> array, int n) {
    int answer = 0;


    for (auto a:array)
        if(a==n)answer++;
    
    return answer;
}

728x90
반응형
LIST

댓글