Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- TypeScript
- Express
- class
- Bull
- 공룡게임
- Queue
- Python
- Dinosaur
- dfs
- react
- MySQL
- mongoose
- Sequelize
- AWS
- game
- MongoDB
- OCR
- nodejs
- 자료구조
- typeORM
- jest
- GIT
- flask
- 정렬
- JavaScript
- cookie
- nestjs
- 게임
- Nest.js
Archives
- Today
- Total
포시코딩
[프로그래머스][Lv.0] 등수 매기기 - 작성중 본문
728x90
문제
https://school.programmers.co.kr/learn/courses/30/lessons/120882
내 풀이
def solution(score):
score = [(x+y)/2 for [x, y] in score]
spair = [*score]
result = [0] * len(score)
x = 1
while len(spair) > 0:
m = max(spair)
temp = 0
for i, e in enumerate(score):
if e == m:
result[i] = x
temp += 1
while spair.count(m) > 0:
spair.remove(m)
x += temp
return result
다른 풀이
728x90
'자료구조알고리즘 > 문제풀이' 카테고리의 다른 글
[프로그래머스][힙(Heap)] 더 맵게 (1) | 2023.04.13 |
---|---|
[프로그래머스][Lv.0][재귀] 치킨 쿠폰 (0) | 2023.01.16 |
[프로그래머스][Lv.0] 다항식 더하기 (0) | 2023.01.14 |
[프로그래머스][Lv.0] 최빈값 구하기 (0) | 2023.01.11 |
[프로그래머스][Lv.0] 유한소수 판별하기* (0) | 2023.01.10 |