[프로그래머스 / C++] Lv 0. 머쓱이보다 키 큰 사람

FinDer178·2024년 7월 10일
0

문제

문제링크

풀이

#include <string>
#include <vector>

using namespace std;

int solution(vector<int> array, int height) {
    int answer = 0;
    
    for (int i = 0; i < array.size(); i++) {
        if (array[i] > height) 
            answer++;
        else if (array[i] < height)
            continue;
    }
    
    return answer;
}

continue를 생각하면 쉽게 풀 수 있는 문제이다.

profile
낙관적 개발자

0개의 댓글