Skip to content

Commit 13c57fd

Browse files
committed
leetcode_1619
1 parent 50bfe34 commit 13c57fd

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
class Solution {
2+
public:
3+
double trimMean(vector<int>& arr) {
4+
double sum = 0.0;
5+
int size = arr.size(), i = size*0.05, j = size-i-1;
6+
sort(arr.begin(), arr.end());
7+
while(i<j)
8+
sum+=arr[i++]+arr[j--];
9+
return sum/(size - size*0.1);
10+
}
11+
};

0 commit comments

Comments
 (0)