🔗 문제
https://school.programmers.co.kr/learn/courses/30/lessons/120585
💻 Code
def solution(array, height):
answer = 0
for h in array:
if h > height:
answer += 1
return answer
'Algorithm > 프로그래머스' 카테고리의 다른 글
[Python] 문자 리스트를 문자열로 변환하기 (0) | 2023.11.10 |
---|---|
[Lv.0/Python] 특정 문자 제거하기 (0) | 2023.07.28 |
[Lv.0/Python] 점의 위치 구하기 (0) | 2023.07.28 |
[Lv.0/Python] 짝수 홀수 개수 (0) | 2023.07.28 |
[Lv.0/Python] 자릿수 더하기 (0) | 2023.07.28 |