-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
84 lines (69 loc) · 1.36 KB
/
main.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"
"strconv"
"strings"
)
func main() {
var input string
fmt.Scan(&input)
minmax := strings.Split(input, "-")
min, _ := strconv.Atoi(minmax[0])
max, _ := strconv.Atoi(minmax[1])
fmt.Printf("Part 1: %d\n", numberOfValidPasswords(min, max, false))
fmt.Printf("Part 2: %d\n", numberOfValidPasswords(min, max, true))
}
func numberOfValidPasswords(min, max int, strictDouble bool) int {
var count int
for pass := min + skipahead(min); pass <= max; pass += skipahead(pass) {
if validPassword(pass, strictDouble) {
count++
}
}
return count
}
func validPassword(pass int, strictDouble bool) bool {
var digits int
counts := make(map[int]int)
for last := pass % 10; pass > 0; pass /= 10 {
digits++
cur := pass % 10
counts[cur]++
if cur > last {
return false
}
last = cur
}
var double bool
for _, v := range counts {
if v >= 2 && (!strictDouble || v == 2) {
double = true
break
}
}
return double && digits == 6
}
func skipahead(pass int) int {
var digits []int
p := pass
if p%10 == 9 {
p++
}
for ; p > 0; p /= 10 {
digits = append(digits, p%10)
}
for n := len(digits) - 1; n > 0; n-- {
if digits[n-1] < digits[n] {
npass := pass
for i := 0; i < n+1; i++ {
npass /= 10
}
for i := 0; i < n+1; i++ {
npass *= 10
npass += digits[n]
}
return npass - pass
}
}
return 1
}