-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.py
29 lines (26 loc) · 1.12 KB
/
team.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
# COMP30024 Artificial Intelligence, Semester 1 2024
# Project Partner Nomination
# Fill in your team details here. Be sure to keep a copy of this file for use in
# future project submissions (this is how we identify your team).
metadata = {
# Choose a team name! Try to make it unique in some way, as it will be
# used to identify your team in the tournament at the end of the semester.
# - Allowed characters: A-Z, a-z, 0-9, -, _ (no spaces allowed)
# - Minimum length: 3 characters
# - Maximum length: 20 characters
"team_name": f"Algorithmic-Insight",
# Fill in the student IDs and emails of both team members here. There must
# be exactly two members in the list.
"team_members": [
{
"name": "Yi (Eden) Xu",
"student_id": "1352872",
"email": "[email protected]" # Must be @student.unimelb.edu.au address
},
{
"name": "Tung Khanh Ho",
"student_id": "1333818",
"email": "[email protected]" # Must be @student.unimelb.edu.au address
}
],
}