-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlotto.go
68 lines (50 loc) · 915 Bytes
/
lotto.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
package main
import (
"math/rand"
"time"
"strconv"
"strings"
"sort"
)
type Lotto struct {
generated []int
rng *rand.Rand
}
func NewLotto() *Lotto {
seed := rand.NewSource(time.Now().UnixNano())
rng := rand.New(seed)
lotto := &Lotto{
generated: make([]int, 0),
rng: rng,
}
lotto.generate()
return lotto
}
func (lotto *Lotto) generate() (*Lotto) {
generated := map[int]bool{}
for {
if len(generated) >= 6 {
break
}
v := lotto.rng.Int() % 45 + 1
if !generated[v] {
generated[v] = true
}
}
for k := range generated {
lotto.generated = append(lotto.generated, k)
}
sort.Ints(lotto.generated)
return lotto
}
func (lotto *Lotto) ToString() string {
buffer := make([]string, 0)
for _, v := range lotto.generated {
buffer = append(buffer, strconv.Itoa(v))
}
return strings.Join(buffer, ", ")
}
func main() {
lotto := NewLotto()
println(lotto.ToString())
}