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