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

This commit is contained in:
轩辕龙儿 2022-04-12 10:16:22 +08:00
parent 7b4586be03
commit d1f5222acc
2 changed files with 116 additions and 0 deletions

View File

@ -0,0 +1,71 @@
//给你一个整数数组 salary 数组里每个数都是 唯一 其中 salary[i] 是第 i 个员工的工资
//
// 请你返回去掉最低工资和最高工资以后剩下员工工资的平均值
//
//
//
// 示例 1
//
// 输入salary = [4000,3000,1000,2000]
//输出2500.00000
//解释最低工资和最高工资分别是 1000 4000
//去掉最低工资和最高工资以后的平均工资是 (2000+3000)/2= 2500
//
//
// 示例 2
//
// 输入salary = [1000,2000,3000]
//输出2000.00000
//解释最低工资和最高工资分别是 1000 3000
//去掉最低工资和最高工资以后的平均工资是 (2000)/1= 2000
//
//
// 示例 3
//
// 输入salary = [6000,5000,4000,3000,2000,1000]
//输出3500.00000
//
//
// 示例 4
//
// 输入salary = [8000,9000,2000,3000,6000,1000]
//输出4750.00000
//
//
//
//
// 提示
//
//
// 3 <= salary.length <= 100
// 10^3 <= salary[i] <= 10^6
// salary[i] 是唯一的
// 与真实值误差在 10^-5 以内的结果都将视为正确答案
//
// Related Topics 数组 排序 👍 33 👎 0
package leetcode.editor.cn;
import java.util.Arrays;
//1491:去掉最低工资和最高工资后的工资平均值
public class AverageSalaryExcludingTheMinimumAndMaximumSalary {
public static void main(String[] args) {
Solution solution = new AverageSalaryExcludingTheMinimumAndMaximumSalary().new Solution();
// TO TEST
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public double average(int[] salary) {
Arrays.sort(salary);
double avg = 0d;
for (int i = 1; i < salary.length - 1; i++) {
avg += salary[i];
}
return avg / (salary.length - 2);
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,45 @@
<p>给你一个整数数组&nbsp;<code>salary</code>&nbsp;,数组里每个数都是 <strong>唯一</strong>&nbsp;的,其中&nbsp;<code>salary[i]</code> 是第&nbsp;<code>i</code>&nbsp;个员工的工资。</p>
<p>请你返回去掉最低工资和最高工资以后,剩下员工工资的平均值。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre><strong>输入:</strong>salary = [4000,3000,1000,2000]
<strong>输出:</strong>2500.00000
<strong>解释:</strong>最低工资和最高工资分别是 1000 和 4000 。
去掉最低工资和最高工资以后的平均工资是 (2000+3000)/2= 2500
</pre>
<p><strong>示例 2</strong></p>
<pre><strong>输入:</strong>salary = [1000,2000,3000]
<strong>输出:</strong>2000.00000
<strong>解释:</strong>最低工资和最高工资分别是 1000 和 3000 。
去掉最低工资和最高工资以后的平均工资是 (2000)/1= 2000
</pre>
<p><strong>示例 3</strong></p>
<pre><strong>输入:</strong>salary = [6000,5000,4000,3000,2000,1000]
<strong>输出:</strong>3500.00000
</pre>
<p><strong>示例 4</strong></p>
<pre><strong>输入:</strong>salary = [8000,9000,2000,3000,6000,1000]
<strong>输出:</strong>4750.00000
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>3 &lt;= salary.length &lt;= 100</code></li>
<li><code>10^3&nbsp;&lt;= salary[i] &lt;= 10^6</code></li>
<li><code>salary[i]</code>&nbsp;是唯一的。</li>
<li>与真实值误差在&nbsp;<code>10^-5</code> 以内的结果都将视为正确答案。</li>
</ul>
<div><div>Related Topics</div><div><li>数组</li><li>排序</li></div></div><br><div><li>👍 33</li><li>👎 0</li></div>