-
Notifications
You must be signed in to change notification settings - Fork 481
/
Copy path1215.go
51 lines (44 loc) · 958 Bytes
/
1215.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
var res []int
var l, r int
func countSteppingNumbers(low int, high int) []int {
res = make([]int, 0)
l, r = low, high
for i := 0; i <= 9; i++ {
bfs(i)
}
sort.Sort(IntSlice(res))
return res
}
func bfs(s int) {
q := []int{s}
for len(q) > 0 {
pre := q[0]
q = q[1:]
if pre >= l && pre <= r {
res = append(res, pre)
}
if pre == 0 || pre > r {
continue
}
lt := pre % 10
s1, s2 := pre * 10 + lt + 1, pre * 10 + lt - 1
if lt == 0 {
q = append(q, s1)
} else if lt == 9 {
q = append(q, s2)
} else {
q = append(q, s1)
q = append(q, s2)
}
}
}
type IntSlice []int
func (s IntSlice) Len() int {
return len(s)
}
func (s IntSlice) Swap(i, j int) {
s[i], s[j] = s[j], s[i]
}
func (s IntSlice) Less(i, j int) bool {
return s[i] < s[j]
}