2024-05-03 2024-05-03 problem 几秒读完 (大约73个字) 0次访问lc1491. 去掉最低工资和最高工资后的工资平均值题目链接:1491. 去掉最低工资和最高工资后的工资平均值 - 力扣(LeetCode) 题解 排序,调包即可。 参考代码 12345class 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许可协议 LeetCode, sortings