| 12345678910111213141516171819202122232425 |
- def Counter(iterable):
- a = {}
- for x in iterable:
- if x in a:
- a[x] += 1
- else:
- a[x] = 1
- return a
- class defaultdict(dict):
- def __init__(self, default_factory, *args):
- super().__init__(*args)
- self._enable_instance_dict()
- self.default_factory = default_factory
- def __missing__(self, key):
- self[key] = self.default_factory()
- return self[key]
- def __repr__(self) -> str:
- return f"defaultdict({self.default_factory}, {super().__repr__()})"
- def copy(self):
- return defaultdict(self.default_factory, self)
|