Search posts...
class Solution { public int solution(int[] array, int height) { int answer = 0; for(int i : array){ if(i>height){ answer++; } } return answer; } }
송승현의 블로그