class Solution {
public int solution(int[] array, int height) {
int answer = 0;
for(int num : array) {
if(num > height) answer ++;
}
return answer;
}
}
import java.util.Arrays;
class Solution {
public int solution(int[] array, int height) {
return (int) Arrays.stream(array).filter(value -> value > height).count();
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 중앙값 구하기 (0) | 2023.04.12 |
---|---|
[프로그래머스/자바] 배열 자르기 (0) | 2023.04.10 |
[프로그래머스/자바] 짝수 홀수 개수 (0) | 2023.03.31 |
[프로그래머스/자바] 배열 뒤집기 (0) | 2023.03.30 |
[프로그래머스/자바] 피자 나눠 먹기(1) (0) | 2023.03.29 |