跳到主要内容

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

链接:1491.去掉最低工资和最高工资后的工资平均值
难度:Easy
标签:数组、排序
简介:请你返回去掉最低工资和最高工资以后,剩下员工工资的平均值。

题解 1 - python

  • 编辑时间:2024-05-03
  • 执行用时:41ms
  • 内存消耗:60.37MB
  • 编程语言:python
  • 解法介绍:遍历。
class Solution:
def average(self, salary: List[int]) -> float:
nmin, nmax = min(salary), max(salary)
return (sum(salary) - nmin - nmax) / (len(salary) - 2)