-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclue.go
executable file
·52 lines (40 loc) · 1.13 KB
/
clue.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
package solveuranimateur
type clue interface {
// Concerns returns the indexes of the persons concerned by this clue.
concerns() []PersonIndex
// Valid returns whether the provided association is legal given the clue.
valid(map[PersonIndex]NumberValue) bool
}
// Basic clue implementation.
type customClue struct {
c []PersonIndex
v func(n map[PersonIndex]NumberValue) bool
}
func (clue *customClue) concerns() []PersonIndex {
return clue.c
}
func (clue *customClue) valid(n map[PersonIndex]NumberValue) bool {
return clue.v(n)
}
// The person has this number
type associationClue struct {
person PersonIndex
number NumberValue
}
func (a *associationClue) concerns() []PersonIndex {
return []PersonIndex{a.person}
}
func (a *associationClue) valid(n map[PersonIndex]NumberValue) bool {
return a.number == n[a.person]
}
// The person does not have this number.
type nonAssociationClue struct {
person PersonIndex
number NumberValue
}
func (a *nonAssociationClue) concerns() []PersonIndex {
return []PersonIndex{a.person}
}
func (a *nonAssociationClue) valid(n map[PersonIndex]NumberValue) bool {
return a.number != n[a.person]
}