Notes taken by student representatives from Cavendish University Uganda
9:30 AM (intro and pre-main event)
9:30 AM (intro and pre-main event)
Communication Systems, BIT313
Assignment 1
Assigned: Fri-2-Sept-2022
Assignment-type: Out-of-class research, in-class discussion
Due: Fri-9-Sept-2022, 2:45PM (in class) >
sample_input = """ | |
1000 | |
2000 | |
3000 | |
4000 | |
5000 | |
6000 |
sample_input = """ | |
1000 | |
2000 | |
3000 | |
4000 | |
5000 | |
6000 |
sample_input = """ | |
A Y | |
B X | |
C Z | |
""".strip().splitlines() | |
# rock, paper, scissors information from our perspective | |
stats = { | |
'X': {'score': 1, 'beats': 'C', 'beaten by': 'B', 'draws with': 'A'}, | |
'Y': {'score': 2, 'beats': 'A', 'beaten by': 'C', 'draws with': 'B'}, |