Add tests to date roll-ups

This commit is contained in:
Deluan
2023-05-19 21:22:23 -04:00
parent 8faaa3cf91
commit 85d43d2366
2 changed files with 24 additions and 7 deletions
+2 -2
View File
@@ -196,8 +196,8 @@ func allOrNothing(items []string) (string, int) {
}
func minMax(items []int) (int, int) {
var max int = items[0]
var min int = items[0]
var max = items[0]
var min = items[0]
for _, value := range items {
max = number.Max(max, value)
if min == 0 {