lc1491. 去掉最低工资和最高工资后的工资平均值

题目链接:1491. 去掉最低工资和最高工资后的工资平均值 - 力扣(LeetCode)

题解

排序,调包即可。

参考代码

1
2
3
4
5
class Solution:
def average(self, salary: List[int]) -> float:
salary.sort()

return sum(salary[1:-1])/len(salary[1:-1])

lc1491. 去掉最低工资和最高工资后的工资平均值

https://blog.xiang578.com/problem/lc1491.html

作者

Ryen Xiang

发布于

2024-05-03

更新于

2024-05-03

许可协议


网络回响

评论