スポンサーリンク

【LeetCode】1491. Average Salary Excluding the Minimum and Maximum Salary 解答・解説【Python】

スポンサーリンク
スポンサーリンク
この記事は約2分で読めます。

 

問題

原文

You are given an array of unique integers salary where salary[i] is the salary of the ith employee.

Return the average salary of employees excluding the minimum and maximum salary. Answers within 10-5 of the actual answer will be accepted.

 

Example 1:

Example 2:

 

Constraints:

  • 3 <= salary.length <= 100
  • 1000 <= salary[i] <= 106
  • All the integers of salary are unique.

 

内容

i番目の要素がi番目の従業員の給料を示す、各要素が相異なる整数を持つリストsalaryが与えられます。

 

最大値と最小値を除いた給料の平均値を返してください。

解答は10^(-5)以内の誤差とします。

 

※正しくない可能性があります。

 

解答

解答1:Python

 

 

 

 

解答2:

 

 

 

メモ・参考・感想

 

 

 

前:1523. Count Odd Numbers in an Interval Range

次:1480. Running Sum of 1d Array

LeetCode 解答・解説記事一覧

コメント