-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsecutive.go
91 lines (76 loc) · 1.94 KB
/
consecutive.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
85
86
87
88
89
90
91
package repostats
import (
"sort"
"github.com/emanuelef/github-repo-activity-stats/stats"
)
type MaxPeriod struct {
StartDay stats.JSONDay
EndDay stats.JSONDay
TotalStars int
}
type PeakDay struct {
Day stats.JSONDay
Stars int
}
func FindMaxConsecutivePeriods(starsData []stats.StarsPerDay, consecutiveDays int) ([]MaxPeriod, []PeakDay, error) {
var maxPeriods []MaxPeriod
var peakDays []PeakDay
// Calculate maxSum and maxPeriods for consecutive periods
maxSum := 0
for i := 0; i <= len(starsData)-consecutiveDays; i++ {
sum := 0
for j := i; j < i+consecutiveDays; j++ {
sum += starsData[j].Stars
}
if sum > maxSum {
maxSum = sum
maxPeriods = []MaxPeriod{
{
StartDay: starsData[i].Day,
EndDay: starsData[i+consecutiveDays-1].Day,
TotalStars: sum,
},
}
} else if sum == maxSum {
maxPeriods = append(maxPeriods, MaxPeriod{
StartDay: starsData[i].Day,
EndDay: starsData[i+consecutiveDays-1].Day,
TotalStars: sum,
})
}
}
// Calculate peakDays
starMap := make(map[stats.JSONDay]int)
for _, data := range starsData {
starMap[data.Day] = data.Stars
}
// Sort the days by stars in descending order
var sortedDays []PeakDay
for day, stars := range starMap {
sortedDays = append(sortedDays, PeakDay{Day: day, Stars: stars})
}
sort.Slice(sortedDays, func(i, j int) bool {
return sortedDays[i].Stars > sortedDays[j].Stars
})
// Find the days with maximum stars
maxStars := sortedDays[0].Stars
for _, day := range sortedDays {
if day.Stars == maxStars {
peakDays = append(peakDays, day)
} else {
break // Days are sorted, so no need to check further
}
}
return maxPeriods, peakDays, nil
}
func NewStarsLastDays(starsData []stats.StarsPerDay, days int) int {
sum := 0
if days > len(starsData) {
days = len(starsData)
}
endIndex := len(starsData) - days
for i := endIndex; i < len(starsData); i++ {
sum += starsData[i].Stars
}
return sum
}