[프로그래머스] Python / 머쓱이보다 키 큰 사람
2024. 3. 21. 22:47ㆍCoding/프로그래머스-Python
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/120585
문제
코드
def solution(array, height):
array.append(height)
array.sort(reverse=True)
return array.index(height)
'Coding > 프로그래머스-Python' 카테고리의 다른 글
[프로그래머스] Python / 중복된 숫자 개수 (0) | 2024.03.21 |
---|---|
[프로그래머스] Python / 편지 (0) | 2024.03.21 |
[프로그래머스] Python / 배열 뒤집기 (0) | 2024.03.21 |
[프로그래머스] Python / 배열의 평균값 (0) | 2024.03.21 |
[프로그래머스] Python / 짝수의 합 (0) | 2024.03.21 |