Skip to content

Instantly share code, notes, and snippets.

@Laski
Laski / score.py
Last active September 7, 2020 20:31
Código base de ejemplo para mi artículo sobre anotaciones de tipos en Python 3
from collections import defaultdict
class KillEvent:
def __init__(self, killer, victim):
self.killer = killer
self.victim = victim
class Match:
def __init__(self, players):
self.players = players