프로그래머스 120912 7의 개수

1 개요[ | ]

프로그래머스 120912 7의 개수

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(vector<int> array) {
    int answer = 0;
    for(int num: array) {
        while(num > 0) {
            if(num%10 == 7) {
                answer++;
            }
            num /= 10;
        }
    }
    return answer;
}
#include <string>
#include <vector>

using namespace std;

int solution(vector<int> array) {
    int answer = 0;
    for(int num: array) {
        for(char ch: to_string(num)) {
            if(ch == '7') {
                answer++;
            }
        }
    }
    return answer;
}