Кленин Максим Дмитриевич, 418 группа DefCounter 12012
Олег Алексеевич Бугай, ФКИ, группа 108м DefCounter 13061
f1from collections import Counterf1from collections import Counter
22
3class DefCounter(Counter):3class DefCounter(Counter):
44
n5    def __init__(self, *maps, missing=-1):n5    def __init__(self, *args, missing=-1):
6        super().__init__(*maps)6        super().__init__(*args)
7        self.missing = missing7        self.missing = missing
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((value for value in self.values() if value > 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