-
Notifications
You must be signed in to change notification settings - Fork 13
/
team_members.py
69 lines (68 loc) · 1.78 KB
/
team_members.py
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
# Obtain your ID by viewing this JSON version of the leaderboard: https://adventofcode.com/2021/leaderboard/private/view/956865.json
TEAM_MEMBERS = {
"Carrots": [
"956865", # Lee Nugent
"1597002", # Joe Wood
"1548925", # Pedro
],
"Pakchois": [
"1520356", # Dan Paddon
"1593139", # James Davis
"29692", # Conrad Godfrey
"1623856", # Chloe Mingay
"1712779", # Samuel Parrott
"1520569", # James Flemington
"961476", # Mauro Mazza
],
"Sprouts": [
"1520324", # Matt Bell
"1522520", # Mike Wyer
"960018", # Alex Kelly
],
"Bento" : [
"635495", # Jamie Coombs
],
"Kales" : [
"979912", # Rianne McCartney
],
'Kimchi': [
"959686", # Sasho Marinov
"960687", # Do Young Kim
"1631181", # Josh Wreford
"1142743", # Irene Iriarte
"1777968", # Haydn Welch
],
"Bento": [
"635495", # Jamie Coombs
"1009702", # Jiazhen Xie
"1716997", # Eliza Plowden
"1717245", # Anthony Donovan
],
"Pumpkins": [
"960687", # Nathan
"1526226", # Ken
"1520343", # Kenny
"1520317", # Arjun
],
"Potatoes": [
"1143182", # James Hallam
"966635", # Shane Dowling
"1610353", # Cheuk Ho Chan
"1722709", # Ian Holmes
"806667", # Pete Watts
],
"Fennels": [
"1552781", # James Roberts
],
"Radishes": [
"1234320", # Olga Dominguez
"1641211", # Jason Lafferty
"1551520", # Balint Dezso
"1306146", # Rob Kennedy
],
"Haricots": [
"959379", # David Torres
"1622439", # Jess
"982442", # Kira Slobodina
]
}