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)
| 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'}, |
Note: