Бедрин Павел Александрович, 428 группа DefCounter 12216
Антон Щербаков, 523 DefCounter 12280
f1from collections import Counterf1from collections import Counter
22
3class DefCounter(Counter):3class DefCounter(Counter):
44
n5    def __init__(self, iterable=None, /, missing=-1, **kwds):n5    def __init__(self, iterable=None, missing=-1, **kwds):
6        self.missing = missing6        self.missing = missing
7        super().__init__(iterable, **kwds)7        super().__init__(iterable, **kwds)
88
9    def __missing__(self, key):9    def __missing__(self, key):
10        return self.missing10        return self.missing
1111
12    def __abs__(self):12    def __abs__(self):
t13        return sum((elem for elem in self.values() if elem > 0))t13        return sum((x for x in self.values() if x > 0))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op