Ирина Филимонова, 420 DefCounter 12947
Кленин Максим Дмитриевич, 418 группа DefCounter 12012
f1from collections import Counterf1from collections import Counter
22
3class DefCounter(Counter):3class DefCounter(Counter):
44
n5    def __init__(self, *args, missing=-1):n5    def __init__(self, *maps, missing=-1):
6        super().__init__(*args)6        super().__init__(*maps)
7        self.missing = missing7        self.missing = missing
88
n9    def __missing__(self, key) -> int:n9    def __missing__(self, key):
10        return self.missing10        return self.missing
1111
12    def __abs__(self):12    def __abs__(self):
t13        return sum((x for x in self.values() if x > 0))t13        return sum((value for value in self.values() if value > 0))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op