-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperson_data.go
executable file
·49 lines (46 loc) · 1.2 KB
/
person_data.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
//go:generate go run ./cmd/solveur-animateur/main.go generate persons
package solveuranimateur
const count = 41
var Persons = personsMap{
0: "Anastasie Aria",
1: "Antoine Vallette",
2: "Camille Féral-Basin",
3: "Catherine Royer",
4: "Daniel Rivas",
5: "Denzel Edmond",
6: "Dominique Veilleux",
7: "Emmanuelle Douyon",
8: "Emmanuelle Piedboeuf",
9: "Emmanuelle Richer",
10: "Flavie Robert-Careau",
11: "Franck Féral-Basin",
12: "Gabriella Dickner",
13: "Geneviève Morin",
14: "Geneviève Nadeau",
15: "Guillaume Boxo",
16: "Guillaume Royer",
17: "Jacques Michiels",
18: "Jean-Michel Richer",
19: "Jean-Sébastien Houle",
20: "Justine Laporta",
21: "Laurence Douyon",
22: "Louis Serey-Larose",
23: "Mathias Ruhlmann",
24: "Matteo Rossi",
25: "Mélissa Liautaud",
26: "Nora Elblidi Gagnon",
27: "Noé Ruhlmann",
28: "Noémie Bérard",
29: "Paul Khalifé",
30: "Philippe Nadeau", // Sandrine: "phil c'est un petit crosseur"
31: "Rosalie Boucher",
32: "Rémi Fernandez Avezedo",
33: "Rémy Boulifa-Dewez",
34: "Sandrine Afonso-Huot",
35: "Sandrine Jaumard",
36: "Sandrine Thibault",
37: "Stanislas Veilleux",
38: "Tom Druet",
39: "Vincent Fontaine",
40: "Xavier Demers",
}