-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfindMaxAverage.go
More file actions
30 lines (25 loc) · 801 Bytes
/
Copy pathfindMaxAverage.go
File metadata and controls
30 lines (25 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* https://leetcode.com/problems/maximum-average-subarray-i/#/description
Given an array consisting of n integers, find the contiguous subarray of given length k that has the maximum average value. And you need to output the maximum average value.
Example 1:
Input: [1,12,-5,-6,50,3], k = 4
Output: 12.75
Explanation: Maximum average is (12-5-6+50)/4 = 51/4 = 12.75
Note:
1 <= k <= n <= 30,000.
Elements of the given array will be in the range [-10,000, 10,000].
*/
package larray
func findMaxAverage(nums []int, k int) float64 {
var max, curSum int
for i := 0; i < k && i < len(nums); i++ {
curSum += nums[i]
}
max = curSum
for i := k; i < len(nums); i++ {
curSum += nums[i] - nums[i-k]
if curSum > max {
max = curSum
}
}
return float64(max) / float64(k)
}