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
- Git
- ChatGPT
- Kaggle
- 자연어처리
- 더현대서울 맛집
- ubuntu
- 프로그래머스
- 프로그래머스 파이썬
- 맥북
- 편스토랑 우승상품
- hackerrank
- AI 경진대회
- dacon
- programmers
- 파이썬
- 코로나19
- SW Expert Academy
- 금융문자분석경진대회
- PYTHON
- 캐치카페
- Docker
- 백준
- 편스토랑
- Baekjoon
- github
- 우분투
- gs25
- leetcode
- 데이콘
- Real or Not? NLP with Disaster Tweets
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 1491. Average Salary Excluding the Minimum and Maximum Salary (Python) 본문
Programming/코딩 1일 1문제
[leetCode] 1491. Average Salary Excluding the Minimum and Maximum Salary (Python)
솜씨좋은장씨 2020. 12. 29. 00:54728x90
반응형
Given an array of unique integers salary where salary[i] is the salary of the employee i.
Return the average salary of employees excluding the minimum and maximum salary.
Example 1:
Input: salary = [4000,3000,1000,2000]
Output: 2500.00000
Explanation: Minimum salary and maximum salary are 1000 and 4000 respectively.
Average salary excluding minimum and maximum salary is (2000+3000)/2= 2500
Example 2:
Input: salary = [1000,2000,3000]
Output: 2000.00000
Explanation: Minimum salary and maximum salary are 1000 and 3000 respectively.
Average salary excluding minimum and maximum salary is (2000)/1= 2000
Example 3:
Input: salary = [6000,5000,4000,3000,2000,1000]
Output: 3500.00000
Example 4:
Input: salary = [8000,9000,2000,3000,6000,1000]
Output: 4750.00000
Constraints:
- 3 <= salary.length <= 100
- 10^3 <= salary[i] <= 10^6
- salary[i] is unique.
- Answers within 10^-5 of the actual value will be accepted as correct.
Solution
class Solution:
def average(self, salary: List[int]) -> float:
return (sum(salary) - max(salary) - min(salary)) / (len(salary)-2)
Solution 해설
먼저 이 문제는 급여 리스트를 받으면 가장 높은 급여와 가장 낮은 급여를 제외한 급여의 평균을 구하는 문제입니다.
따라서 전체 합을 구하고 거기서 최대, 최소 급여를 뺀 금액을 전체 개수 -2 로 나눈 값을 정답으로 한다.
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 1290. Convert Binary Number in a Linked List to Integer (Python) (0) | 2020.12.31 |
---|---|
[leetCode] 1295. Find Numbers with Even Number of Digits (Python) (0) | 2020.12.30 |
[leetCode] 1523. Count Odd Numbers in an Interval Range (Python) (0) | 2020.12.28 |
[leetCode] 1539. Kth Missing Positive Number (Python) (0) | 2020.12.27 |
[leetCode] 92. Reverse Linked List II (Python) (0) | 2020.12.26 |
Comments