Казанцева Варвара Денисовна, 508 ExceptionTree 11886
Жан-Юль-Ян Азель, 414 группа (КФ) ExceptionTree 13074
f1class ExceptionTree:f1class ExceptionTree:
22
3    def __init__(self):3    def __init__(self):
4        self.exceptions = {1: type('Exception-1', (Exception,), {'n': 1}4        self.exceptions = {1: type('Exception-1', (Exception,), {'n': 1}
>)}>)}
55
t6    def __call__(self, n):t6    def __call__(self, index):
7        if n not in self.exceptions:7        if index not in self.exceptions:
8            parent_n = n // 28            parent_index = index // 2
9            if parent_n not in self.exceptions:9            if parent_index not in self.exceptions:
10                self(parent_n)10                self(parent_index)
11            parent_class = self.exceptions[parent_n]11            parent_exception = self.exceptions[parent_index]
12            self.exceptions[n] = type(f'Exception-{n}', (parent_class,),12            self.exceptions[index] = type(f'Exception-{index}', (parent_
> {'n': n})>exception,), {'n': index})
13        return self.exceptions[n]13        return self.exceptions[index]
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op