머쓱이보다 키 큰 사람
https://school.programmers.co.kr/learn/courses/30/lessons/120585
- 문제 풀이
1
2
3
4
5
6
7
8
9
10
11
12
class Solution {
public int solution(int[] array, int height) {
int count = 0;
for(int i : array){
if(i > height)
count ++;
}
return count;
}
}
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.