Мозговых Василий Владимирович, 401 группа ClassOnly 14604
Горошко Артём Дмитриевич, 321 группа ClassOnly 15203
f1from itertools import productf1from itertools import product
n2slots = set((''.join(abcd) for abcd in product('abcd', repeat=4)))n2arr = set((''.join(i) for i in product('abcd', repeat=4)))
33
4class Struct:4class Struct:
n5    __slots__ = set()n5    __slots__ = tuple()
66
t7    def __getattribute__(self, attr):t7    def __getattribute__(self, name):
8        if attr in slots:8        if name in arr:
9            return attr9            return name
10        else:10        else:
11            raise AttributeError11            raise AttributeError
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op