Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SW Expert Academy
- ChatGPT
- gs25
- 백준
- 우분투
- 자연어처리
- Baekjoon
- 데이콘
- Docker
- PYTHON
- Real or Not? NLP with Disaster Tweets
- dacon
- Kaggle
- 프로그래머스 파이썬
- 코로나19
- 금융문자분석경진대회
- 캐치카페
- hackerrank
- 프로그래머스
- Git
- 편스토랑 우승상품
- AI 경진대회
- 맥북
- ubuntu
- leetcode
- github
- 편스토랑
- 더현대서울 맛집
- 파이썬
- programmers
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 위클리 챌린지 2주차 - 상호 평가 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 프로그래머스의 위클리 챌린지 2주차 문제인 상호 평가 입니다.
Solution
def get_person_grade(score):
grade = "F"
if score >= 90:
grade = "A"
elif 80 <= score < 90:
grade = "B"
elif 70 <= score < 80:
grade = "C"
elif 50 <= score < 70:
grade = "D"
return grade
def solution(scores):
answer = ''
person_num = len(scores[0])
for person in range(person_num):
person_scores = []
person_number = len(scores[0])
for idx in range(person_num):
person_scores.append(scores[idx][person])
person_total_score = sum(person_scores)
if ((max(person_scores) == person_scores[person]) or (min(person_scores) == person_scores[person])) and person_scores.count(person_scores[person]) < 2:
person_total_score -= person_scores[person]
person_number -= 1
person_avg_score = person_total_score / person_number
person_grade = get_person_grade(person_avg_score)
answer += person_grade
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 11399번 : ATM (Python) (0) | 2021.08.13 |
---|---|
[Programmes] 2021 Dev-Matching: 웹 백엔드 개발자(상반기) - 로또의 최고 순위와 최저 순위 (Python) (0) | 2021.08.12 |
[BaekJoon] 3986번 : 좋은 단어 (Python) (0) | 2021.08.10 |
[BaekJoon] 2857번 : FBI (Python) (4) | 2021.08.09 |
[BaekJoon] 11719번 : 그대로 출력하기 2 (Python) (0) | 2021.08.08 |
Comments