[프로그래머스]머쓱이보다 키 큰 사람

정선모·2022년 10월 10일
0

프로그래머스

목록 보기
64/91

배열과 반복문 조건문 사용한 간단한 문제였습니다.

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

0개의 댓글