-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminimum-size-subarray-sum.go
84 lines (73 loc) · 1.23 KB
/
minimum-size-subarray-sum.go
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package main
import (
"fmt"
)
const (
maxInt = 1<<31 - 1
)
func min(x, y int) int {
if x < y {
return x
}
return y
}
func minSubArrayLen(target int, nums []int) int {
n := len(nums)
ans := maxInt
ps := make([]int, n)
ps[0] = nums[0]
for i := 1; i < n; i++ {
ps[i] = nums[i] + ps[i-1]
}
var l, r int
for l <= r && r < n {
if ps[r]-ps[l]+nums[l] >= target {
ans = min(ans, r-l+1)
l++
} else {
r++
}
}
if ans == maxInt {
return 0
}
return ans
}
func main() {
testCases := []struct {
target int
nums []int
want int
}{
{
target: 7,
nums: []int{2, 3, 1, 2, 4, 3},
want: 2,
},
{
target: 4,
nums: []int{1, 4, 4},
want: 1,
},
{
target: 11,
nums: []int{1, 1, 1, 1, 1, 1, 1, 1},
want: 0,
},
}
successes := 0
for _, tc := range testCases {
x := minSubArrayLen(tc.target, tc.nums)
status := "ERROR"
if fmt.Sprint(x) == fmt.Sprint(tc.want) {
status = "OK"
successes++
}
fmt.Println(status, " Expected: ", tc.want, " Actual: ", x)
}
if l := len(testCases); successes == len(testCases) {
fmt.Printf("===\nSUCCESS: %d of %d tests ended successfully\n", successes, l)
} else {
fmt.Printf("===\nFAIL: %d tests failed\n", l-successes)
}
}