문제 설명
머쓱이는 학교에서 키 순으로 줄을 설 때 몇 번째로 서야 하는지 궁금해졌습니다.
머쓱이네 반 친구들의 키가 담긴 정수 배열 array와 머쓱이의 키 height가 매개변수로 주어질 때, 머쓱이보다 키 큰 사람 수를 return 하도록 solution 함수를 완성해보세요.
.append(), .sort()
- array: 배열에 머쓱이 키를 담고 정렬
- array.append(height)
- array.sort()
- for & if문으로 머쓱이보다 키 큰 사람 카운트
- for i in array:
if i > height: count += 1
- for i in array:
def solution(array, height):
array.append(height)
array.sort()
count = 0
for i in array:
if i > height:
count += 1
return count
.append(), .sort() 과정 생략
- array의 i를 height와 직접 비교
def solution(array, height):
count = 0
for i in array:
if i > height:
count += 1
return count
https://github.com/seonmin5/codingtest_Python
GitHub - seonmin5/codingtest_Python
Contribute to seonmin5/codingtest_Python development by creating an account on GitHub.
github.com
반응형
'Python' 카테고리의 다른 글
[Python] 모음 제거, .replace(), .join(), 리스트 컴프리헨션 (0) | 2024.07.17 |
---|---|
[Python] 짝수 홀수 개수, answer = [0, 0], answer[n%2] +=1 (1) | 2024.07.17 |
[Python] 개미 군단, (hp//5) + ((hp%5)//3) + ((hp%5)%3) (1) | 2024.07.15 |
[Python] 옷가게 할인 받기, math.floor(), int() (0) | 2024.07.12 |
[Python] 중복된 숫자 개수, list.count(), list.sort() (0) | 2024.07.11 |