id
int64 0
799
| prompt
stringlengths 265
2.95k
| answer
stringclasses 10
values | pythoncode
stringlengths 267
2.95k
| num_nodes
int64 3
10
| num_edges
int64 3
48
| avg_node_edge
float64 1
4.8
| graph_density
float64 0.11
1
| num_classes
int64 2
10
| avg_node_class
float64 1
5
| max_num_field
int64 1
10
| min_num_field
int64 1
3
| avg_num_field
float64 1
6.5
| path_length
int64 3
10
| max_node_visits
int64 1
5
| max_edge_visits
int64 1
5
| unique_node_number
int64 2
8
| path_node_coverage
float64 0.2
1
| unique_edge_number
int64 2
9
| path_edge_coverage
float64 0.07
1
| num_cycle
int64 0
8
| shortest_cycle
int64 2
7
⌀ | longest_cycle
int64 2
10
⌀ | average_cycle
float64 2
7
⌀ | unique_edge_label
int64 1
7
| max_label_occurrences
int64 1
10
| max_label_consecutive
int64 1
10
| max_node_outdegree
int64 1
3
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
500 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: A = None
self.w: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = B("e")
f = D("f")
g = C("g")
h = B("h")
a.z = h
b.z = e
b.y = e
b.x = e
c.z = a
c.y = b
c.x = f
d.z = b
d.w = b
d.y = f
d.x = a
e.z = h
e.y = h
e.x = b
f.z = b
f.w = b
f.y = d
f.x = a
g.z = a
g.y = e
g.x = f
h.z = b
h.x = b
h.y = e
assert h.x.y.y.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: A = None
self.w: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = B("e")
f = D("f")
g = C("g")
h = B("h")
a.z = h
b.z = e
b.y = e
b.x = e
c.z = a
c.y = b
c.x = f
d.z = b
d.w = b
d.y = f
d.x = a
e.z = h
e.y = h
e.x = b
f.z = b
f.w = b
f.y = d
f.x = a
g.z = a
g.y = e
g.x = f
h.z = b
h.x = b
h.y = e
assert h.x.y.y.txt == "h" | 8 | 18 | 2.25 | 0.321429 | 4 | 2 | 4 | 1 | 2.75 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.166667 | 1 | 3 | 3 | 3 | 2 | 2 | 2 | 1 |
501 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: H = None
self.x: D = None
self.w: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: H = None
self.y: E = None
self.x: C = None
self.w: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: H = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.w: C = None
self.v: H = None
self.u: D = None
self.t: B = None
self.s: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = d
a.x = d
a.y = h
a.w = b
a.v = b
b.z = h
b.y = e
b.x = c
b.w = g
c.z = a
c.y = h
c.x = b
d.z = e
d.x = e
d.y = a
e.z = a
f.z = e
f.y = a
g.z = d
g.y = d
g.u = d
g.s = d
g.x = c
g.w = c
g.v = h
g.t = b
h.z = c
h.y = d
assert g.x.z.w.y.z.v.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: H = None
self.x: D = None
self.w: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: H = None
self.y: E = None
self.x: C = None
self.w: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: H = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.w: C = None
self.v: H = None
self.u: D = None
self.t: B = None
self.s: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = d
a.x = d
a.y = h
a.w = b
a.v = b
b.z = h
b.y = e
b.x = c
b.w = g
c.z = a
c.y = h
c.x = b
d.z = e
d.x = e
d.y = a
e.z = a
f.z = e
f.y = a
g.z = d
g.y = d
g.u = d
g.s = d
g.x = c
g.w = c
g.v = h
g.t = b
h.z = c
h.y = d
assert g.x.z.w.y.z.v.txt == "b" | 8 | 21 | 2.625 | 0.375 | 8 | 1 | 8 | 1 | 3.5 | 6 | 2 | 1 | 5 | 0.625 | 6 | 0.285714 | 2 | 3 | 3 | 3 | 5 | 2 | 1 | 2 |
502 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.x: E = None
self.w: C = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: F = None
self.w: A = None
self.v: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: C = None
self.w: A = None
self.v: A = None
self.u: A = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = G("h")
a.z = d
a.v = d
a.y = f
a.x = e
a.w = c
b.z = c
b.y = c
c.z = e
c.y = e
c.x = f
c.v = f
c.w = a
d.z = e
d.y = g
d.x = c
d.t = c
d.w = a
d.v = a
d.u = a
e.z = g
f.z = b
f.y = a
g.z = b
g.y = e
h.z = b
h.y = e
assert c.y.z.z.z.y.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.x: E = None
self.w: C = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: F = None
self.w: A = None
self.v: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: C = None
self.w: A = None
self.v: A = None
self.u: A = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = G("h")
a.z = d
a.v = d
a.y = f
a.x = e
a.w = c
b.z = c
b.y = c
c.z = e
c.y = e
c.x = f
c.v = f
c.w = a
d.z = e
d.y = g
d.x = c
d.t = c
d.w = a
d.v = a
d.u = a
e.z = g
f.z = b
f.y = a
g.z = b
g.y = e
h.z = b
h.y = e
assert c.y.z.z.z.y.z.txt == "g" | 8 | 19 | 2.375 | 0.339286 | 7 | 1.142857 | 7 | 1 | 3.428571 | 6 | 2 | 2 | 4 | 0.5 | 4 | 0.210526 | 3 | 4 | 4 | 4 | 2 | 4 | 3 | 1 |
503 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = C("e")
f = A("f")
g = A("g")
h = A("h")
a.z = h
a.y = b
b.z = g
c.z = d
c.y = d
c.x = e
d.z = b
d.y = e
e.z = d
e.y = d
e.x = c
f.z = h
f.y = b
g.z = a
g.y = b
h.z = g
h.y = b
assert d.z.z.z.y.z.z.z.y.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = C("e")
f = A("f")
g = A("g")
h = A("h")
a.z = h
a.y = b
b.z = g
c.z = d
c.y = d
c.x = e
d.z = b
d.y = e
e.z = d
e.y = d
e.x = c
f.z = h
f.y = b
g.z = a
g.y = b
h.z = g
h.y = b
assert d.z.z.z.y.z.z.z.y.txt == "b" | 8 | 15 | 1.875 | 0.267857 | 4 | 2 | 3 | 1 | 2 | 8 | 3 | 2 | 5 | 0.625 | 6 | 0.4 | 4 | 3 | 7 | 4 | 2 | 6 | 3 | 2 |
504 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: C = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = A("e")
f = D("f")
g = D("g")
h = C("h")
a.z = g
a.y = e
b.z = a
b.y = a
b.x = c
c.z = a
c.y = h
c.x = h
c.w = b
d.z = b
d.y = e
e.z = f
e.y = a
f.z = b
f.y = e
g.z = b
g.y = a
h.z = a
h.y = c
h.x = c
h.w = b
assert c.w.y.z.y.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: C = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = A("e")
f = D("f")
g = D("g")
h = C("h")
a.z = g
a.y = e
b.z = a
b.y = a
b.x = c
c.z = a
c.y = h
c.x = h
c.w = b
d.z = b
d.y = e
e.z = f
e.y = a
f.z = b
f.y = e
g.z = b
g.y = a
h.z = a
h.y = c
h.x = c
h.w = b
assert c.w.y.z.y.y.txt == "e" | 8 | 18 | 2.25 | 0.321429 | 4 | 2 | 4 | 2 | 2.75 | 5 | 2 | 1 | 5 | 0.625 | 5 | 0.277778 | 1 | 2 | 2 | 2 | 3 | 3 | 2 | 2 |
505 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: E = None
self.w: E = None
self.v: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: H = None
self.y: G = None
self.x: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: E = None
self.x: A = None
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: C = None
self.w: A = None
self.v: A = None
self.u: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: E = None
self.w: B = None
self.v: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = e
a.x = e
a.w = e
a.y = d
a.v = h
b.z = c
b.y = a
b.x = f
c.z = f
c.y = e
d.z = h
e.z = h
e.x = h
e.y = g
f.z = h
f.y = e
f.x = a
f.w = g
g.z = a
g.w = a
g.v = a
g.y = d
g.x = c
g.u = f
h.z = e
h.x = e
h.y = c
h.w = b
h.v = b
assert b.y.v.w.x.x.v.w.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: E = None
self.w: E = None
self.v: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: H = None
self.y: G = None
self.x: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: E = None
self.x: A = None
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: C = None
self.w: A = None
self.v: A = None
self.u: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: E = None
self.w: B = None
self.v: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = e
a.x = e
a.w = e
a.y = d
a.v = h
b.z = c
b.y = a
b.x = f
c.z = f
c.y = e
d.z = h
e.z = h
e.x = h
e.y = g
f.z = h
f.y = e
f.x = a
f.w = g
g.z = a
g.w = a
g.v = a
g.y = d
g.x = c
g.u = f
h.z = e
h.x = e
h.y = c
h.w = b
h.v = b
assert b.y.v.w.x.x.v.w.txt == "b" | 8 | 22 | 2.75 | 0.392857 | 8 | 1 | 6 | 1 | 3.625 | 7 | 3 | 2 | 4 | 0.5 | 5 | 0.227273 | 4 | 3 | 7 | 4.4 | 4 | 2 | 2 | 2 |
506 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = B("d")
e = B("e")
f = A("f")
g = B("g")
h = B("h")
a.z = c
a.y = g
b.z = a
c.z = a
d.z = f
e.z = a
f.z = d
f.y = h
g.z = a
h.z = f
assert e.z.y.z.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = B("d")
e = B("e")
f = A("f")
g = B("g")
h = B("h")
a.z = c
a.y = g
b.z = a
c.z = a
d.z = f
e.z = a
f.z = d
f.y = h
g.z = a
h.z = f
assert e.z.y.z.txt == "a" | 8 | 10 | 1.25 | 0.178571 | 2 | 4 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.3 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
507 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = A("c")
d = A("d")
e = B("e")
f = B("f")
g = B("g")
h = A("h")
a.z = c
a.y = b
b.z = e
c.z = h
c.y = g
d.z = a
d.y = f
e.z = g
f.z = g
g.z = f
h.z = d
h.y = g
assert c.z.y.z.z.z.z.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = A("c")
d = A("d")
e = B("e")
f = B("f")
g = B("g")
h = A("h")
a.z = c
a.y = b
b.z = e
c.z = h
c.y = g
d.z = a
d.y = f
e.z = g
f.z = g
g.z = f
h.z = d
h.y = g
assert c.z.y.z.z.z.z.z.txt == "f" | 8 | 12 | 1.5 | 0.214286 | 2 | 4 | 2 | 1 | 1.5 | 7 | 3 | 3 | 4 | 0.5 | 4 | 0.333333 | 4 | 2 | 4 | 2.666667 | 2 | 6 | 5 | 1 |
508 | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.x: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: D = None
self.w: A = None
self.v: B = None
self.u: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = B("h")
a.z = d
b.z = g
b.y = a
c.z = a
d.z = f
d.y = a
e.z = d
e.x = d
e.y = f
f.z = b
f.y = c
g.z = c
g.y = a
g.w = a
g.x = d
g.v = h
g.u = h
h.z = g
h.y = a
assert d.z.y.z.z.z.y.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.x: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: D = None
self.w: A = None
self.v: B = None
self.u: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = B("h")
a.z = d
b.z = g
b.y = a
c.z = a
d.z = f
d.y = a
e.z = d
e.x = d
e.y = f
f.z = b
f.y = c
g.z = c
g.y = a
g.w = a
g.x = d
g.v = h
g.u = h
h.z = g
h.y = a
assert d.z.y.z.z.z.y.txt == "c" | 8 | 16 | 2 | 0.285714 | 7 | 1.142857 | 6 | 1 | 2.428571 | 6 | 2 | 2 | 4 | 0.5 | 4 | 0.25 | 3 | 4 | 4 | 4 | 2 | 4 | 3 | 1 |
509 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = B("d")
e = B("e")
f = B("f")
g = B("g")
h = A("h")
a.z = f
b.z = c
c.z = g
d.z = f
e.z = c
f.z = e
g.z = c
h.z = d
assert c.z.z.z.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = B("d")
e = B("e")
f = B("f")
g = B("g")
h = A("h")
a.z = f
b.z = c
c.z = g
d.z = f
e.z = c
f.z = e
g.z = c
h.z = d
assert c.z.z.z.z.txt == "c" | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 4 | 3 | 2 | 2 | 0.25 | 2 | 0.25 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
510 | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: D = None
self.w: E = None
self.v: B = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = B("g")
h = D("h")
a.z = f
a.y = e
a.x = e
b.z = g
b.y = g
b.v = g
b.x = d
b.w = e
b.u = f
c.z = b
d.z = h
d.y = e
e.z = d
e.y = a
f.z = b
f.y = a
g.z = b
g.y = b
g.v = b
g.x = d
g.w = e
g.u = f
h.z = d
h.y = e
assert d.y.z.y.z.z.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: D = None
self.w: E = None
self.v: B = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = B("g")
h = D("h")
a.z = f
a.y = e
a.x = e
b.z = g
b.y = g
b.v = g
b.x = d
b.w = e
b.u = f
c.z = b
d.z = h
d.y = e
e.z = d
e.y = a
f.z = b
f.y = a
g.z = b
g.y = b
g.v = b
g.x = d
g.w = e
g.u = f
h.z = d
h.y = e
assert d.y.z.y.z.z.y.txt == "e" | 8 | 19 | 2.375 | 0.339286 | 6 | 1.333333 | 6 | 1 | 2.666667 | 6 | 3 | 2 | 3 | 0.375 | 4 | 0.210526 | 4 | 2 | 5 | 3 | 2 | 3 | 2 | 2 |
511 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = B("e")
f = B("f")
g = C("g")
h = C("h")
a.z = c
a.y = g
b.z = d
c.z = b
c.y = a
c.x = f
d.z = e
d.x = e
d.y = a
e.z = g
f.z = d
g.z = b
g.y = a
g.x = e
h.z = b
h.y = a
h.x = f
assert h.y.y.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = B("e")
f = B("f")
g = C("g")
h = C("h")
a.z = c
a.y = g
b.z = d
c.z = b
c.y = a
c.x = f
d.z = e
d.x = e
d.y = a
e.z = g
f.z = d
g.z = b
g.y = a
g.x = e
h.z = b
h.y = a
h.x = f
assert h.y.y.z.txt == "b" | 8 | 16 | 2 | 0.285714 | 3 | 2.666667 | 3 | 1 | 2 | 3 | 1 | 1 | 4 | 0.5 | 3 | 0.1875 | 0 | null | null | null | 2 | 2 | 2 | 1 |
512 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: F = None
self.w: A = None
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: F = None
self.w: C = None
self.v: E = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = B("g")
h = C("h")
a.z = d
a.x = d
a.y = h
b.z = c
b.y = h
b.x = f
b.w = a
b.v = g
c.z = f
c.y = f
c.x = f
c.w = h
c.v = e
c.u = g
d.z = g
d.y = b
e.z = a
e.y = g
e.x = b
f.z = e
g.z = c
g.y = c
g.x = f
g.w = a
g.v = b
h.z = f
h.y = f
h.x = f
h.w = c
h.v = e
h.u = b
assert h.w.z.z.x.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: F = None
self.w: A = None
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: F = None
self.w: C = None
self.v: E = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = B("g")
h = C("h")
a.z = d
a.x = d
a.y = h
b.z = c
b.y = h
b.x = f
b.w = a
b.v = g
c.z = f
c.y = f
c.x = f
c.w = h
c.v = e
c.u = g
d.z = g
d.y = b
e.z = a
e.y = g
e.x = b
f.z = e
g.z = c
g.y = c
g.x = f
g.w = a
g.v = b
h.z = f
h.y = f
h.x = f
h.w = c
h.v = e
h.u = b
assert h.w.z.z.x.txt == "b" | 8 | 25 | 3.125 | 0.446429 | 6 | 1.333333 | 6 | 1 | 3.333333 | 4 | 1 | 1 | 5 | 0.625 | 4 | 0.16 | 0 | null | null | null | 3 | 2 | 2 | 1 |
513 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: E = None
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: B = None
self.w: A = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = E("f")
g = C("g")
h = C("h")
a.z = b
b.z = a
b.y = d
b.x = f
b.w = e
c.z = e
c.y = e
d.z = g
d.y = h
d.v = h
d.x = b
d.w = a
e.z = d
f.z = d
g.z = f
g.y = f
h.z = f
h.y = e
assert a.z.w.z.z.z.z.y.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: E = None
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: B = None
self.w: A = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = E("f")
g = C("g")
h = C("h")
a.z = b
b.z = a
b.y = d
b.x = f
b.w = e
c.z = e
c.y = e
d.z = g
d.y = h
d.v = h
d.x = b
d.w = a
e.z = d
f.z = d
g.z = f
g.y = f
h.z = f
h.y = e
assert a.z.w.z.z.z.z.y.txt == "h" | 8 | 15 | 1.875 | 0.267857 | 5 | 1.6 | 5 | 1 | 2.6 | 7 | 2 | 1 | 7 | 0.875 | 7 | 0.466667 | 1 | 3 | 3 | 3 | 3 | 5 | 4 | 2 |
514 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = B("d")
e = A("e")
f = A("f")
g = B("g")
h = A("h")
a.z = h
b.z = c
b.y = e
c.z = g
c.y = f
d.z = b
d.y = h
e.z = f
f.z = h
g.z = d
g.y = a
h.z = a
assert g.z.y.z.z.z.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = B("d")
e = A("e")
f = A("f")
g = B("g")
h = A("h")
a.z = h
b.z = c
b.y = e
c.z = g
c.y = f
d.z = b
d.y = h
e.z = f
f.z = h
g.z = d
g.y = a
h.z = a
assert g.z.y.z.z.z.z.txt == "h" | 8 | 12 | 1.5 | 0.214286 | 2 | 4 | 2 | 1 | 1.5 | 6 | 3 | 2 | 4 | 0.5 | 4 | 0.333333 | 3 | 2 | 4 | 2.5 | 2 | 5 | 4 | 1 |
515 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: H = None
self.x: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: B = None
self.w: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: D = None
self.w: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.w: B = None
self.v: A = None
self.u: A = None
self.t: B = None
self.s: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: B = None
self.w: E = None
self.v: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = d
a.y = h
a.x = b
a.w = b
b.z = g
b.y = h
c.z = b
c.y = d
c.x = e
d.z = b
d.y = f
d.x = e
e.z = c
e.y = c
e.x = b
e.w = h
f.z = c
f.y = e
f.x = d
f.w = d
g.z = d
g.y = d
g.x = c
g.s = c
g.w = b
g.t = b
g.v = a
g.u = a
h.z = a
h.y = c
h.x = b
h.w = e
h.v = e
assert c.y.y.y.y.x.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: H = None
self.x: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: B = None
self.w: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: D = None
self.w: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.w: B = None
self.v: A = None
self.u: A = None
self.t: B = None
self.s: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: B = None
self.w: E = None
self.v: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = d
a.y = h
a.x = b
a.w = b
b.z = g
b.y = h
c.z = b
c.y = d
c.x = e
d.z = b
d.y = f
d.x = e
e.z = c
e.y = c
e.x = b
e.w = h
f.z = c
f.y = e
f.x = d
f.w = d
g.z = d
g.y = d
g.x = c
g.s = c
g.w = b
g.t = b
g.v = a
g.u = a
h.z = a
h.y = c
h.x = b
h.w = e
h.v = e
assert c.y.y.y.y.x.txt == "e" | 8 | 25 | 3.125 | 0.446429 | 8 | 1 | 8 | 2 | 4.125 | 5 | 2 | 1 | 4 | 0.5 | 5 | 0.2 | 2 | 2 | 4 | 3 | 2 | 4 | 4 | 2 |
516 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.x: B = None
self.w: B = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: D = None
self.w: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: D = None
self.w: B = None
self.v: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = E("g")
h = D("h")
a.z = e
a.y = d
b.z = f
b.y = e
c.z = b
c.x = b
c.w = b
c.v = b
c.y = f
d.z = a
d.y = a
d.x = c
e.z = a
e.y = c
e.x = d
e.w = h
f.z = d
f.x = d
f.y = a
f.v = a
f.w = b
g.z = a
g.y = c
g.x = h
g.w = h
h.z = a
h.y = a
h.x = c
assert e.y.z.z.y.y.y.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.x: B = None
self.w: B = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: D = None
self.w: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: D = None
self.w: B = None
self.v: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = E("g")
h = D("h")
a.z = e
a.y = d
b.z = f
b.y = e
c.z = b
c.x = b
c.w = b
c.v = b
c.y = f
d.z = a
d.y = a
d.x = c
e.z = a
e.y = c
e.x = d
e.w = h
f.z = d
f.x = d
f.y = a
f.v = a
f.w = b
g.z = a
g.y = c
g.x = h
g.w = h
h.z = a
h.y = a
h.x = c
assert e.y.z.z.y.y.y.y.txt == "d" | 8 | 20 | 2.5 | 0.357143 | 6 | 1.333333 | 5 | 2 | 3.5 | 7 | 2 | 2 | 6 | 0.75 | 6 | 0.3 | 2 | 2 | 2 | 2 | 2 | 5 | 4 | 1 |
517 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: C = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = A("e")
f = D("f")
g = C("g")
h = B("h")
a.z = e
a.y = c
b.z = e
c.z = b
c.y = d
c.x = g
c.w = h
d.z = b
e.z = a
e.y = c
f.z = h
g.z = b
g.y = f
g.x = c
g.w = h
h.z = a
assert e.y.x.w.z.z.z.z.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: C = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = A("e")
f = D("f")
g = C("g")
h = B("h")
a.z = e
a.y = c
b.z = e
c.z = b
c.y = d
c.x = g
c.w = h
d.z = b
e.z = a
e.y = c
f.z = h
g.z = b
g.y = f
g.x = c
g.w = h
h.z = a
assert e.y.x.w.z.z.z.z.txt == "e" | 8 | 16 | 2 | 0.285714 | 4 | 2 | 4 | 1 | 2 | 7 | 3 | 2 | 5 | 0.625 | 6 | 0.375 | 3 | 2 | 7 | 4 | 4 | 4 | 4 | 2 |
518 | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: H = None
self.x: D = None
self.w: F = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.x: C = None
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: H = None
self.y: G = None
self.x: D = None
self.w: H = None
self.v: H = None
self.u: F = None
self.t: G = None
self.s: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: G = None
self.w: A = None
self.v: E = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.y: E = None
self.x: C = None
self.w: D = None
self.v: A = None
self.u: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = f
a.w = f
a.v = f
a.y = h
a.x = d
b.z = f
b.y = d
b.x = c
b.w = e
c.z = h
c.w = h
c.v = h
c.y = g
c.t = g
c.x = d
c.u = f
c.s = e
d.z = e
d.v = e
d.y = c
d.u = c
d.x = g
d.w = a
e.z = c
e.y = g
f.z = e
f.y = a
f.x = c
g.z = d
h.z = g
h.y = e
h.u = e
h.x = c
h.w = d
h.v = a
assert f.x.y.z.x.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: H = None
self.x: D = None
self.w: F = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.x: C = None
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: H = None
self.y: G = None
self.x: D = None
self.w: H = None
self.v: H = None
self.u: F = None
self.t: G = None
self.s: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: G = None
self.w: A = None
self.v: E = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.y: E = None
self.x: C = None
self.w: D = None
self.v: A = None
self.u: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = f
a.w = f
a.v = f
a.y = h
a.x = d
b.z = f
b.y = d
b.x = c
b.w = e
c.z = h
c.w = h
c.v = h
c.y = g
c.t = g
c.x = d
c.u = f
c.s = e
d.z = e
d.v = e
d.y = c
d.u = c
d.x = g
d.w = a
e.z = c
e.y = g
f.z = e
f.y = a
f.x = c
g.z = d
h.z = g
h.y = e
h.u = e
h.x = c
h.w = d
h.v = a
assert f.x.y.z.x.txt == "g" | 8 | 27 | 3.375 | 0.482143 | 8 | 1 | 8 | 1 | 4.375 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.148148 | 1 | 2 | 2 | 2 | 3 | 2 | 1 | 1 |
519 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = B("e")
f = A("f")
g = A("g")
h = D("h")
a.z = c
a.y = h
a.x = h
b.z = a
b.y = c
c.z = g
d.z = h
d.y = f
d.x = e
e.z = a
e.y = c
f.z = c
f.y = h
f.x = h
g.z = c
g.y = h
g.x = h
h.z = d
h.y = g
h.x = b
assert h.y.z.z.z.z.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = B("e")
f = A("f")
g = A("g")
h = D("h")
a.z = c
a.y = h
a.x = h
b.z = a
b.y = c
c.z = g
d.z = h
d.y = f
d.x = e
e.z = a
e.y = c
f.z = c
f.y = h
f.x = h
g.z = c
g.y = h
g.x = h
h.z = d
h.y = g
h.x = b
assert h.y.z.z.z.z.z.txt == "c" | 8 | 17 | 2.125 | 0.303571 | 4 | 2 | 3 | 1 | 2.25 | 6 | 3 | 3 | 3 | 0.375 | 3 | 0.176471 | 4 | 2 | 4 | 2.666667 | 2 | 5 | 5 | 1 |
520 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = B("e")
f = A("f")
g = C("g")
h = A("h")
a.z = f
b.z = d
c.z = f
d.z = a
e.z = c
f.z = h
g.z = f
h.z = a
assert b.z.z.z.z.z.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = B("e")
f = A("f")
g = C("g")
h = A("h")
a.z = f
b.z = d
c.z = f
d.z = a
e.z = c
f.z = h
g.z = f
h.z = a
assert b.z.z.z.z.z.z.txt == "f" | 8 | 8 | 1 | 0.142857 | 3 | 2.666667 | 1 | 1 | 1 | 6 | 2 | 2 | 5 | 0.625 | 5 | 0.625 | 2 | 3 | 3 | 3 | 1 | 6 | 6 | 1 |
521 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = A("c")
d = A("d")
e = A("e")
f = A("f")
g = A("g")
h = A("h")
a.z = c
b.z = c
c.z = g
d.z = e
e.z = c
f.z = g
g.z = e
h.z = f
assert c.z.z.z.z.z.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = A("c")
d = A("d")
e = A("e")
f = A("f")
g = A("g")
h = A("h")
a.z = c
b.z = c
c.z = g
d.z = e
e.z = c
f.z = g
g.z = e
h.z = f
assert c.z.z.z.z.z.txt == "e" | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 5 | 2 | 2 | 3 | 0.375 | 3 | 0.375 | 3 | 3 | 3 | 3 | 1 | 5 | 5 | 1 |
522 | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: C = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: D = None
self.w: B = None
self.v: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = D("f")
g = D("g")
h = B("h")
a.z = c
b.z = a
b.y = h
b.x = f
c.z = a
d.z = e
d.w = e
d.y = f
d.x = c
e.z = c
e.y = c
e.x = g
e.w = b
e.v = a
f.z = e
f.w = e
f.y = g
f.x = c
g.z = e
g.w = e
g.y = d
g.x = c
h.z = a
h.y = b
h.x = f
assert h.y.y.z.z.z.z.z.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: C = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: D = None
self.w: B = None
self.v: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = D("f")
g = D("g")
h = B("h")
a.z = c
b.z = a
b.y = h
b.x = f
c.z = a
d.z = e
d.w = e
d.y = f
d.x = c
e.z = c
e.y = c
e.x = g
e.w = b
e.v = a
f.z = e
f.w = e
f.y = g
f.x = c
g.z = e
g.w = e
g.y = d
g.x = c
h.z = a
h.y = b
h.x = f
assert h.y.y.z.z.z.z.z.z.txt == "c" | 8 | 21 | 2.625 | 0.375 | 5 | 1.6 | 5 | 1 | 2.8 | 8 | 3 | 3 | 4 | 0.5 | 5 | 0.238095 | 5 | 2 | 4 | 2.571429 | 2 | 6 | 6 | 2 |
523 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: B = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: A = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = A("f")
g = B("g")
h = C("h")
a.z = f
b.z = d
b.y = g
b.x = g
b.w = c
c.z = d
c.y = d
c.x = a
c.w = e
d.z = f
e.z = f
f.z = a
g.z = d
g.y = b
g.x = b
g.w = h
h.z = e
h.w = e
h.y = d
h.x = a
assert g.w.x.z.z.z.z.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: B = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: A = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = A("f")
g = B("g")
h = C("h")
a.z = f
b.z = d
b.y = g
b.x = g
b.w = c
c.z = d
c.y = d
c.x = a
c.w = e
d.z = f
e.z = f
f.z = a
g.z = d
g.y = b
g.x = b
g.w = h
h.z = e
h.w = e
h.y = d
h.x = a
assert g.w.x.z.z.z.z.txt == "a" | 8 | 16 | 2 | 0.285714 | 4 | 2 | 4 | 1 | 2.5 | 6 | 3 | 2 | 4 | 0.5 | 4 | 0.25 | 3 | 2 | 4 | 2.5 | 3 | 4 | 4 | 1 |
524 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: B = None
self.w: A = None
self.v: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = B("f")
g = E("g")
h = C("h")
a.z = e
a.y = e
a.x = g
b.z = a
c.z = d
c.y = d
d.z = a
d.y = b
e.z = f
e.y = a
e.w = a
e.x = b
e.v = b
f.z = a
g.z = b
g.v = b
g.y = a
g.w = a
g.x = f
h.z = d
h.y = d
assert c.y.z.z.y.x.w.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: B = None
self.w: A = None
self.v: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = B("f")
g = E("g")
h = C("h")
a.z = e
a.y = e
a.x = g
b.z = a
c.z = d
c.y = d
d.z = a
d.y = b
e.z = f
e.y = a
e.w = a
e.x = b
e.v = b
f.z = a
g.z = b
g.v = b
g.y = a
g.w = a
g.x = f
h.z = d
h.y = d
assert c.y.z.z.y.x.w.txt == "a" | 8 | 14 | 1.75 | 0.25 | 5 | 1.6 | 5 | 1 | 2.6 | 6 | 3 | 1 | 5 | 0.625 | 6 | 0.428571 | 2 | 2 | 4 | 2.666667 | 4 | 2 | 2 | 2 |
525 | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: C = None
self.x: D = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: C = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: E = None
self.w: A = None
self.v: D = None
self.u: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = C("g")
h = C("h")
a.z = d
b.z = f
b.y = h
b.x = d
b.w = g
c.z = a
c.y = b
c.x = g
c.w = d
d.z = f
d.y = b
d.x = g
e.z = h
e.y = a
f.z = d
f.v = d
f.u = d
f.y = b
f.x = e
f.w = a
g.z = a
g.y = b
g.x = c
g.w = d
h.z = a
h.y = b
h.x = c
h.w = d
assert a.z.x.x.w.x.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: C = None
self.x: D = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: C = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: E = None
self.w: A = None
self.v: D = None
self.u: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = C("g")
h = C("h")
a.z = d
b.z = f
b.y = h
b.x = d
b.w = g
c.z = a
c.y = b
c.x = g
c.w = d
d.z = f
d.y = b
d.x = g
e.z = h
e.y = a
f.z = d
f.v = d
f.u = d
f.y = b
f.x = e
f.w = a
g.z = a
g.y = b
g.x = c
g.w = d
h.z = a
h.y = b
h.x = c
h.w = d
assert a.z.x.x.w.x.txt == "g" | 8 | 26 | 3.25 | 0.464286 | 6 | 1.333333 | 6 | 1 | 3.333333 | 5 | 2 | 2 | 4 | 0.5 | 4 | 0.153846 | 2 | 3 | 3 | 3 | 3 | 3 | 2 | 1 |
526 | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: G = None
self.w: A = None
self.v: H = None
self.u: B = None
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.w: H = None
self.v: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = d
b.z = f
c.z = e
c.t = e
c.y = b
c.u = b
c.x = g
c.w = a
c.v = h
d.z = b
d.y = g
e.z = f
e.y = d
f.z = d
f.y = d
f.x = c
f.v = c
f.w = h
g.z = h
h.z = c
assert c.w.z.z.z.z.z.z.x.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: G = None
self.w: A = None
self.v: H = None
self.u: B = None
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.w: H = None
self.v: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = d
b.z = f
c.z = e
c.t = e
c.y = b
c.u = b
c.x = g
c.w = a
c.v = h
d.z = b
d.y = g
e.z = f
e.y = d
f.z = d
f.y = d
f.x = c
f.v = c
f.w = h
g.z = h
h.z = c
assert c.w.z.z.z.z.z.z.x.txt == "c" | 8 | 16 | 2 | 0.285714 | 8 | 1 | 7 | 1 | 2.5 | 8 | 2 | 2 | 5 | 0.625 | 6 | 0.375 | 4 | 3 | 8 | 4.25 | 3 | 6 | 6 | 2 |
527 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.x: F = None
self.w: A = None
self.v: B = None
self.u: B = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.x: E = None
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: G = None
self.x: B = None
self.w: C = None
self.v: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = E("h")
a.z = e
a.y = f
a.x = c
b.z = c
c.z = f
c.x = f
c.y = g
c.w = a
c.t = a
c.v = b
c.u = b
d.z = g
d.y = b
d.w = b
d.x = h
e.z = a
e.v = a
e.y = g
e.x = b
e.w = c
f.z = b
g.z = a
h.z = a
h.v = a
h.y = g
h.x = b
h.w = c
assert c.v.z.w.x.x.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.x: F = None
self.w: A = None
self.v: B = None
self.u: B = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.x: E = None
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: G = None
self.x: B = None
self.w: C = None
self.v: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = E("h")
a.z = e
a.y = f
a.x = c
b.z = c
c.z = f
c.x = f
c.y = g
c.w = a
c.t = a
c.v = b
c.u = b
d.z = g
d.y = b
d.w = b
d.x = h
e.z = a
e.v = a
e.y = g
e.x = b
e.w = c
f.z = b
g.z = a
h.z = a
h.v = a
h.y = g
h.x = b
h.w = c
assert c.v.z.w.x.x.txt == "f" | 8 | 21 | 2.625 | 0.375 | 7 | 1.142857 | 7 | 1 | 3.142857 | 5 | 3 | 1 | 4 | 0.5 | 5 | 0.238095 | 2 | 2 | 4 | 2.666667 | 4 | 2 | 2 | 3 |
528 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = C("e")
f = C("f")
g = B("g")
h = D("h")
a.z = f
a.x = f
a.y = b
b.z = a
b.y = a
b.x = g
c.z = h
d.z = h
e.z = d
f.z = h
g.z = a
g.y = a
g.x = b
h.z = d
assert c.z.z.z.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = C("e")
f = C("f")
g = B("g")
h = D("h")
a.z = f
a.x = f
a.y = b
b.z = a
b.y = a
b.x = g
c.z = h
d.z = h
e.z = d
f.z = h
g.z = a
g.y = a
g.x = b
h.z = d
assert c.z.z.z.z.txt == "d" | 8 | 11 | 1.375 | 0.196429 | 4 | 2 | 3 | 1 | 2 | 4 | 2 | 2 | 3 | 0.375 | 3 | 0.272727 | 2 | 2 | 2 | 2 | 1 | 4 | 4 | 1 |
529 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: F = None
self.w: B = None
self.v: C = None
self.u: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: D = None
self.w: E = None
self.v: D = None
self.u: D = None
self.t: G = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: F = None
self.x: F = None
self.w: H = None
self.v: C = None
self.u: F = None
self.t: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: G = None
self.x: E = None
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: B = None
self.w: C = None
self.v: B = None
self.u: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = b
a.y = b
a.w = b
a.x = f
a.v = c
a.u = g
b.z = d
b.x = d
b.v = d
b.u = d
b.y = e
b.w = e
b.t = g
b.s = g
c.z = g
c.y = f
d.z = c
e.z = g
e.y = f
e.x = f
e.u = f
e.w = h
e.t = h
e.v = c
f.z = a
f.y = g
f.w = g
f.x = e
g.z = c
g.w = c
g.y = b
g.x = b
g.v = b
g.u = e
h.z = e
assert d.z.y.z.u.u.u.x.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: F = None
self.w: B = None
self.v: C = None
self.u: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: D = None
self.w: E = None
self.v: D = None
self.u: D = None
self.t: G = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: F = None
self.x: F = None
self.w: H = None
self.v: C = None
self.u: F = None
self.t: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: G = None
self.x: E = None
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: B = None
self.w: C = None
self.v: B = None
self.u: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = b
a.y = b
a.w = b
a.x = f
a.v = c
a.u = g
b.z = d
b.x = d
b.v = d
b.u = d
b.y = e
b.w = e
b.t = g
b.s = g
c.z = g
c.y = f
d.z = c
e.z = g
e.y = f
e.x = f
e.u = f
e.w = h
e.t = h
e.v = c
f.z = a
f.y = g
f.w = g
f.x = e
g.z = c
g.w = c
g.y = b
g.x = b
g.v = b
g.u = e
h.z = e
assert d.z.y.z.u.u.u.x.txt == "e" | 8 | 21 | 2.625 | 0.375 | 8 | 1 | 8 | 1 | 4.375 | 7 | 2 | 1 | 6 | 0.75 | 7 | 0.333333 | 2 | 2 | 4 | 3 | 4 | 3 | 3 | 2 |
530 | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = C("e")
f = B("f")
g = C("g")
h = A("h")
a.z = c
b.z = d
b.y = c
c.z = h
c.y = f
d.z = h
d.y = f
e.z = a
e.y = f
f.z = c
f.y = e
g.z = h
g.y = b
h.z = c
assert d.y.z.z.z.y.y.y.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = C("e")
f = B("f")
g = C("g")
h = A("h")
a.z = c
b.z = d
b.y = c
c.z = h
c.y = f
d.z = h
d.y = f
e.z = a
e.y = f
f.z = c
f.y = e
g.z = h
g.y = b
h.z = c
assert d.y.z.z.z.y.y.y.y.txt == "e" | 8 | 14 | 1.75 | 0.25 | 3 | 2.666667 | 2 | 1 | 1.666667 | 8 | 3 | 2 | 5 | 0.625 | 7 | 0.5 | 4 | 2 | 6 | 3.2 | 2 | 5 | 4 | 2 |
531 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.x: A = None
self.w: B = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: D = None
self.w: F = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = A("g")
h = B("h")
a.z = d
a.y = e
b.z = f
b.y = d
b.v = d
b.x = g
b.w = h
c.z = d
c.x = d
c.y = h
c.v = h
c.w = f
d.z = f
d.y = c
e.z = b
e.x = b
e.y = a
f.z = c
f.y = h
g.z = d
g.y = e
h.z = f
h.y = d
h.v = d
h.x = g
h.w = b
assert a.y.y.y.x.y.y.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.x: A = None
self.w: B = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: D = None
self.w: F = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = A("g")
h = B("h")
a.z = d
a.y = e
b.z = f
b.y = d
b.v = d
b.x = g
b.w = h
c.z = d
c.x = d
c.y = h
c.v = h
c.w = f
d.z = f
d.y = c
e.z = b
e.x = b
e.y = a
f.z = c
f.y = h
g.z = d
g.y = e
h.z = f
h.y = d
h.v = d
h.x = g
h.w = b
assert a.y.y.y.x.y.y.txt == "c" | 8 | 21 | 2.625 | 0.375 | 6 | 1.333333 | 5 | 2 | 3.166667 | 6 | 2 | 2 | 5 | 0.625 | 5 | 0.238095 | 2 | 2 | 2 | 2 | 2 | 5 | 3 | 2 |
532 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.w: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: C = None
self.w: D = None
self.v: E = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: H = None
self.x: H = None
self.w: F = None
self.v: A = None
self.u: F = None
self.t: E = None
self.s: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.y: G = None
self.x: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: H = None
self.x: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: G = None
self.w: E = None
self.v: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = d
a.y = d
a.x = c
a.w = g
b.z = c
b.x = c
b.y = a
b.w = d
b.v = e
b.u = f
c.z = b
c.y = h
c.x = h
c.s = h
c.w = f
c.u = f
c.v = a
c.t = e
d.z = a
e.z = d
f.z = g
f.y = g
f.x = e
g.z = d
g.y = h
g.x = e
h.z = a
h.y = b
h.x = g
h.w = e
h.v = c
assert g.x.z.z.w.z.z.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.w: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: C = None
self.w: D = None
self.v: E = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: H = None
self.x: H = None
self.w: F = None
self.v: A = None
self.u: F = None
self.t: E = None
self.s: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.y: G = None
self.x: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: H = None
self.x: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: G = None
self.w: E = None
self.v: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = d
a.y = d
a.x = c
a.w = g
b.z = c
b.x = c
b.y = a
b.w = d
b.v = e
b.u = f
c.z = b
c.y = h
c.x = h
c.s = h
c.w = f
c.u = f
c.v = a
c.t = e
d.z = a
e.z = d
f.z = g
f.y = g
f.x = e
g.z = d
g.y = h
g.x = e
h.z = a
h.y = b
h.x = g
h.w = e
h.v = c
assert g.x.z.z.w.z.z.y.txt == "d" | 8 | 25 | 3.125 | 0.446429 | 8 | 1 | 8 | 1 | 3.875 | 7 | 3 | 2 | 4 | 0.5 | 6 | 0.24 | 4 | 2 | 5 | 3.4 | 4 | 4 | 2 | 2 |
533 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: E = None
self.w: C = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: D = None
self.w: D = None
self.v: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = A("f")
g = C("g")
h = A("h")
a.z = b
a.y = b
a.x = b
b.z = h
b.y = h
c.z = d
c.y = b
c.v = b
c.x = e
c.w = g
d.z = e
d.y = f
e.z = b
e.y = b
e.x = d
e.w = d
e.v = d
f.z = b
f.y = b
f.x = b
g.z = d
g.y = b
g.v = b
g.x = e
g.w = c
h.z = b
h.y = b
h.x = b
assert b.y.z.z.x.y.y.y.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: E = None
self.w: C = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: D = None
self.w: D = None
self.v: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = A("f")
g = C("g")
h = A("h")
a.z = b
a.y = b
a.x = b
b.z = h
b.y = h
c.z = d
c.y = b
c.v = b
c.x = e
c.w = g
d.z = e
d.y = f
e.z = b
e.y = b
e.x = d
e.w = d
e.v = d
f.z = b
f.y = b
f.x = b
g.z = d
g.y = b
g.v = b
g.x = e
g.w = c
h.z = b
h.y = b
h.x = b
assert b.y.z.z.x.y.y.y.txt == "h" | 8 | 16 | 2 | 0.285714 | 5 | 1.6 | 5 | 2 | 3.4 | 7 | 4 | 3 | 2 | 0.25 | 5 | 0.3125 | 6 | 2 | 6 | 3.333333 | 3 | 4 | 3 | 3 |
534 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: G = None
self.x: E = None
self.w: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: D = None
self.w: B = None
self.v: D = None
self.u: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: H = None
self.y: F = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: E = None
self.x: D = None
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = e
a.y = c
b.z = c
b.y = g
b.x = e
b.w = h
c.z = e
c.y = g
c.x = d
c.v = d
c.w = b
c.u = f
d.z = h
d.y = f
d.x = c
e.z = c
e.y = a
e.x = b
f.z = h
f.y = e
f.x = d
f.w = b
g.z = e
h.z = g
assert e.z.y.z.y.z.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: G = None
self.x: E = None
self.w: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: D = None
self.w: B = None
self.v: D = None
self.u: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: H = None
self.y: F = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: E = None
self.x: D = None
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = e
a.y = c
b.z = c
b.y = g
b.x = e
b.w = h
c.z = e
c.y = g
c.x = d
c.v = d
c.w = b
c.u = f
d.z = h
d.y = f
d.x = c
e.z = c
e.y = a
e.x = b
f.z = h
f.y = e
f.x = d
f.w = b
g.z = e
h.z = g
assert e.z.y.z.y.z.txt == "e" | 8 | 23 | 2.875 | 0.410714 | 8 | 1 | 6 | 1 | 3 | 5 | 3 | 1 | 4 | 0.5 | 5 | 0.217391 | 2 | 2 | 5 | 3.333333 | 2 | 3 | 1 | 2 |
535 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = B("d")
e = A("e")
f = A("f")
g = A("g")
h = B("h")
a.z = c
b.z = e
b.y = a
c.z = f
c.y = a
d.z = e
d.y = g
e.z = h
f.z = h
g.z = d
h.z = a
h.y = a
assert c.y.z.z.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = B("d")
e = A("e")
f = A("f")
g = A("g")
h = B("h")
a.z = c
b.z = e
b.y = a
c.z = f
c.y = a
d.z = e
d.y = g
e.z = h
f.z = h
g.z = d
h.z = a
h.y = a
assert c.y.z.z.z.txt == "h" | 8 | 11 | 1.375 | 0.196429 | 2 | 4 | 2 | 1 | 1.5 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.363636 | 1 | 2 | 2 | 2 | 2 | 3 | 3 | 2 |
536 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: A = None
self.w: G = None
self.v: G = None
self.u: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.y: C = None
self.x: B = None
self.w: G = None
self.v: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: G = None
self.w: G = None
self.v: D = None
self.u: C = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: F = None
self.w: D = None
self.v: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = F("h")
a.z = c
a.y = h
b.z = a
b.x = a
b.y = f
b.w = g
b.v = g
b.u = g
c.z = g
d.z = g
d.w = g
d.y = c
d.x = b
d.v = a
e.z = b
e.y = a
e.x = g
e.w = g
e.v = d
e.t = d
e.u = c
f.z = c
f.y = b
f.x = h
f.w = d
f.v = d
g.z = c
h.z = c
h.y = b
h.x = f
h.w = d
h.v = d
assert a.y.x.y.v.z.z.z.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: A = None
self.w: G = None
self.v: G = None
self.u: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.y: C = None
self.x: B = None
self.w: G = None
self.v: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: G = None
self.w: G = None
self.v: D = None
self.u: C = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: F = None
self.w: D = None
self.v: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = F("h")
a.z = c
a.y = h
b.z = a
b.x = a
b.y = f
b.w = g
b.v = g
b.u = g
c.z = g
d.z = g
d.w = g
d.y = c
d.x = b
d.v = a
e.z = b
e.y = a
e.x = g
e.w = g
e.v = d
e.t = d
e.u = c
f.z = c
f.y = b
f.x = h
f.w = d
f.v = d
g.z = c
h.z = c
h.y = b
h.x = f
h.w = d
h.v = d
assert a.y.x.y.v.z.z.z.z.txt == "g" | 8 | 24 | 3 | 0.428571 | 7 | 1.142857 | 7 | 1 | 3.857143 | 8 | 3 | 2 | 6 | 0.75 | 6 | 0.25 | 3 | 2 | 4 | 2.5 | 4 | 4 | 4 | 1 |
537 | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: A = None
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: C = None
self.w: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = C("g")
h = D("h")
a.z = g
b.z = g
b.y = c
b.x = h
c.z = a
c.y = g
c.x = g
d.z = e
d.y = b
e.z = f
e.y = a
e.x = a
f.z = a
f.y = e
f.x = c
f.w = b
g.z = a
g.y = c
g.x = c
h.z = e
h.y = b
assert b.x.z.z.z.z.x.y.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: A = None
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: C = None
self.w: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = C("g")
h = D("h")
a.z = g
b.z = g
b.y = c
b.x = h
c.z = a
c.y = g
c.x = g
d.z = e
d.y = b
e.z = f
e.y = a
e.x = a
f.z = a
f.y = e
f.x = c
f.w = b
g.z = a
g.y = c
g.x = c
h.z = e
h.y = b
assert b.x.z.z.z.z.x.y.txt == "g" | 8 | 18 | 2.25 | 0.321429 | 6 | 1.333333 | 4 | 1 | 2.666667 | 7 | 2 | 1 | 7 | 0.875 | 7 | 0.388889 | 1 | 2 | 2 | 2 | 3 | 4 | 4 | 1 |
538 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = A("d")
e = B("e")
f = B("f")
g = B("g")
h = B("h")
a.z = e
a.y = d
b.z = d
c.z = d
d.z = g
d.y = a
e.z = d
f.z = d
g.z = d
h.z = d
assert d.y.z.z.z.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = A("d")
e = B("e")
f = B("f")
g = B("g")
h = B("h")
a.z = e
a.y = d
b.z = d
c.z = d
d.z = g
d.y = a
e.z = d
f.z = d
g.z = d
h.z = d
assert d.y.z.z.z.z.txt == "d" | 8 | 10 | 1.25 | 0.178571 | 2 | 4 | 2 | 1 | 1.5 | 5 | 3 | 1 | 4 | 0.5 | 5 | 0.5 | 2 | 2 | 5 | 3.333333 | 2 | 4 | 4 | 2 |
539 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: E = None
self.w: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: A = None
self.w: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = C("f")
g = B("g")
h = B("h")
a.z = d
a.y = h
b.z = h
b.y = e
b.x = e
b.w = g
c.z = f
c.y = f
d.z = e
d.y = e
e.z = d
e.w = d
e.y = b
e.x = a
f.z = c
f.y = c
g.z = b
g.y = e
g.x = e
g.w = h
h.z = g
h.y = e
h.x = e
h.w = b
assert b.w.y.y.x.z.z.z.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: E = None
self.w: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: A = None
self.w: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = C("f")
g = B("g")
h = B("h")
a.z = d
a.y = h
b.z = h
b.y = e
b.x = e
b.w = g
c.z = f
c.y = f
d.z = e
d.y = e
e.z = d
e.w = d
e.y = b
e.x = a
f.z = c
f.y = c
g.z = b
g.y = e
g.x = e
g.w = h
h.z = g
h.y = e
h.x = e
h.w = b
assert b.w.y.y.x.z.z.z.y.txt == "e" | 8 | 17 | 2.125 | 0.303571 | 5 | 1.6 | 4 | 2 | 2.8 | 8 | 4 | 2 | 4 | 0.5 | 7 | 0.411765 | 5 | 2 | 6 | 3.125 | 4 | 3 | 3 | 2 |
540 | class A:
def __init__(self, txt: str):
self.z: G = None
self.y: E = None
self.x: F = None
self.w: C = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.x: F = None
self.w: G = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: C = None
self.x: D = None
self.w: G = None
self.v: A = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: A = None
self.w: B = None
self.v: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = C("h")
a.z = g
a.y = e
a.x = f
a.v = f
a.w = c
b.z = e
b.y = f
b.x = f
b.w = g
b.v = h
c.z = e
d.z = a
d.y = h
d.x = c
e.z = g
e.w = g
e.y = c
e.u = c
e.x = d
e.v = a
f.z = b
f.w = b
f.y = h
f.x = a
f.v = g
g.z = f
g.y = e
h.z = e
assert h.z.y.z.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: G = None
self.y: E = None
self.x: F = None
self.w: C = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.x: F = None
self.w: G = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: C = None
self.x: D = None
self.w: G = None
self.v: A = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: A = None
self.w: B = None
self.v: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = C("h")
a.z = g
a.y = e
a.x = f
a.v = f
a.w = c
b.z = e
b.y = f
b.x = f
b.w = g
b.v = h
c.z = e
d.z = a
d.y = h
d.x = c
e.z = g
e.w = g
e.y = c
e.u = c
e.x = d
e.v = a
f.z = b
f.w = b
f.y = h
f.x = a
f.v = g
g.z = f
g.y = e
h.z = e
assert h.z.y.z.txt == "e" | 8 | 23 | 2.875 | 0.410714 | 7 | 1.142857 | 6 | 1 | 3.857143 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.130435 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
541 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: E = None
self.w: H = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: H = None
self.x: G = None
self.w: C = None
self.v: A = None
self.u: E = None
self.t: C = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.x: H = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: D = None
self.w: D = None
self.v: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = e
a.x = e
a.v = e
a.y = g
a.w = h
b.z = f
b.y = h
b.x = g
b.s = g
b.w = c
b.t = c
b.v = a
b.u = e
c.z = e
c.x = e
c.y = d
d.z = e
e.z = f
e.y = d
e.x = h
e.w = b
f.z = d
f.x = d
f.w = d
f.y = b
f.v = g
g.z = b
g.y = c
h.z = d
h.y = a
assert e.w.y.z.z.w.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: E = None
self.w: H = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: H = None
self.x: G = None
self.w: C = None
self.v: A = None
self.u: E = None
self.t: C = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.x: H = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: D = None
self.w: D = None
self.v: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = e
a.x = e
a.v = e
a.y = g
a.w = h
b.z = f
b.y = h
b.x = g
b.s = g
b.w = c
b.t = c
b.v = a
b.u = e
c.z = e
c.x = e
c.y = d
d.z = e
e.z = f
e.y = d
e.x = h
e.w = b
f.z = d
f.x = d
f.w = d
f.y = b
f.v = g
g.z = b
g.y = c
h.z = d
h.y = a
assert e.w.y.z.z.w.txt == "b" | 8 | 23 | 2.875 | 0.410714 | 8 | 1 | 8 | 1 | 3.75 | 5 | 2 | 2 | 4 | 0.5 | 4 | 0.173913 | 2 | 4 | 4 | 4 | 3 | 2 | 2 | 1 |
542 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: H = None
self.x: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: F = None
self.w: F = None
self.v: E = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: H = None
self.y: A = None
self.x: H = None
self.w: F = None
self.v: A = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: E = None
self.x: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.x: C = None
self.w: A = None
self.v: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: C = None
self.w: A = None
self.v: C = None
self.u: C = None
self.t: D = None
self.s: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = b
a.y = h
a.x = h
b.z = c
b.y = e
b.v = e
b.x = f
b.w = f
b.u = f
c.z = g
d.z = h
d.x = h
d.y = a
d.v = a
d.w = f
d.u = b
e.z = b
e.y = d
f.z = h
f.x = h
f.y = e
g.z = f
g.y = b
g.x = c
g.v = c
g.w = a
h.z = a
h.w = a
h.y = e
h.x = c
h.v = c
h.u = c
h.t = d
h.s = b
assert g.x.z.z.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: H = None
self.x: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: F = None
self.w: F = None
self.v: E = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: H = None
self.y: A = None
self.x: H = None
self.w: F = None
self.v: A = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: E = None
self.x: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.x: C = None
self.w: A = None
self.v: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: C = None
self.w: A = None
self.v: C = None
self.u: C = None
self.t: D = None
self.s: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = b
a.y = h
a.x = h
b.z = c
b.y = e
b.v = e
b.x = f
b.w = f
b.u = f
c.z = g
d.z = h
d.x = h
d.y = a
d.v = a
d.w = f
d.u = b
e.z = b
e.y = d
f.z = h
f.x = h
f.y = e
g.z = f
g.y = b
g.x = c
g.v = c
g.w = a
h.z = a
h.w = a
h.y = e
h.x = c
h.v = c
h.u = c
h.t = d
h.s = b
assert g.x.z.z.z.txt == "h" | 8 | 23 | 2.875 | 0.410714 | 8 | 1 | 8 | 1 | 4.25 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.173913 | 1 | 2 | 2 | 2 | 2 | 3 | 3 | 2 |
543 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: H = None
self.x: F = None
self.w: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: H = None
self.x: F = None
self.w: A = None
self.v: E = None
self.u: G = None
self.t: F = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: A = None
self.x: G = None
self.w: H = None
self.v: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: G = None
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.y: C = None
self.x: F = None
self.w: G = None
self.v: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = e
a.y = h
a.x = f
a.w = g
b.z = g
b.u = g
b.y = h
b.x = f
b.t = f
b.w = a
b.s = a
b.v = e
c.z = a
d.z = f
d.v = f
d.y = a
d.x = g
d.w = h
e.z = d
e.y = g
f.z = d
f.y = b
f.w = b
f.x = g
g.z = b
g.y = b
g.x = c
h.z = g
h.w = g
h.y = c
h.x = f
h.v = a
assert a.x.x.x.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: H = None
self.x: F = None
self.w: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: H = None
self.x: F = None
self.w: A = None
self.v: E = None
self.u: G = None
self.t: F = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: A = None
self.x: G = None
self.w: H = None
self.v: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: G = None
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.y: C = None
self.x: F = None
self.w: G = None
self.v: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = e
a.y = h
a.x = f
a.w = g
b.z = g
b.u = g
b.y = h
b.x = f
b.t = f
b.w = a
b.s = a
b.v = e
c.z = a
d.z = f
d.v = f
d.y = a
d.x = g
d.w = h
e.z = d
e.y = g
f.z = d
f.y = b
f.w = b
f.x = g
g.z = b
g.y = b
g.x = c
h.z = g
h.w = g
h.y = c
h.x = f
h.v = a
assert a.x.x.x.txt == "c" | 8 | 25 | 3.125 | 0.446429 | 8 | 1 | 8 | 1 | 4 | 3 | 1 | 1 | 4 | 0.5 | 3 | 0.12 | 0 | null | null | null | 1 | 3 | 3 | 1 |
544 | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.x: C = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: H = None
self.w: F = None
self.v: E = None
self.u: F = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: H = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: B = None
self.w: H = None
self.v: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: G = None
self.w: A = None
self.v: A = None
self.u: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: B = None
self.w: C = None
self.v: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = f
a.y = g
a.x = c
a.w = d
b.z = a
b.y = d
b.t = d
b.x = h
b.w = f
b.u = f
b.v = e
c.z = h
c.y = d
d.z = e
d.y = b
d.x = b
d.w = h
d.v = g
e.z = a
e.w = a
e.v = a
e.y = c
e.x = g
e.u = g
f.z = d
f.y = h
g.z = b
g.y = b
g.x = h
h.z = e
h.v = e
h.y = d
h.x = b
h.w = c
assert d.x.z.y.x.w.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.x: C = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: H = None
self.w: F = None
self.v: E = None
self.u: F = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: H = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: B = None
self.w: H = None
self.v: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: G = None
self.w: A = None
self.v: A = None
self.u: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: B = None
self.w: C = None
self.v: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = f
a.y = g
a.x = c
a.w = d
b.z = a
b.y = d
b.t = d
b.x = h
b.w = f
b.u = f
b.v = e
c.z = h
c.y = d
d.z = e
d.y = b
d.x = b
d.w = h
d.v = g
e.z = a
e.w = a
e.v = a
e.y = c
e.x = g
e.u = g
f.z = d
f.y = h
g.z = b
g.y = b
g.x = h
h.z = e
h.v = e
h.y = d
h.x = b
h.w = c
assert d.x.z.y.x.w.txt == "c" | 8 | 26 | 3.25 | 0.464286 | 8 | 1 | 7 | 2 | 4.25 | 5 | 1 | 1 | 6 | 0.75 | 5 | 0.192308 | 0 | null | null | null | 4 | 2 | 1 | 1 |
545 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: A = None
self.w: E = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: C = None
self.w: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: B = None
self.w: B = None
self.v: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = E("f")
g = B("g")
h = A("h")
a.z = e
a.v = e
a.y = f
a.w = f
a.x = h
b.z = h
b.y = g
b.w = g
b.x = c
c.z = d
c.y = b
d.z = g
e.z = c
e.y = d
e.x = b
e.w = b
e.v = a
f.z = c
f.y = d
f.x = b
f.w = b
f.v = a
g.z = h
g.y = b
g.w = b
g.x = c
h.z = f
h.y = f
h.v = f
h.x = a
h.w = e
assert g.x.z.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: A = None
self.w: E = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: C = None
self.w: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: B = None
self.w: B = None
self.v: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = E("f")
g = B("g")
h = A("h")
a.z = e
a.v = e
a.y = f
a.w = f
a.x = h
b.z = h
b.y = g
b.w = g
b.x = c
c.z = d
c.y = b
d.z = g
e.z = c
e.y = d
e.x = b
e.w = b
e.v = a
f.z = c
f.y = d
f.x = b
f.w = b
f.v = a
g.z = h
g.y = b
g.w = b
g.x = c
h.z = f
h.y = f
h.v = f
h.x = a
h.w = e
assert g.x.z.z.txt == "g" | 8 | 23 | 2.875 | 0.410714 | 5 | 1.6 | 5 | 1 | 3.4 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.130435 | 1 | 3 | 3 | 3 | 2 | 2 | 2 | 1 |
546 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: A = None
self.w: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = C("f")
g = A("g")
h = C("h")
a.z = e
a.y = d
b.z = e
c.z = a
d.z = g
d.y = b
e.z = g
e.x = g
e.y = d
e.w = f
f.z = a
g.z = e
g.y = d
h.z = g
assert f.z.y.z.y.y.z.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: A = None
self.w: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = C("f")
g = A("g")
h = C("h")
a.z = e
a.y = d
b.z = e
c.z = a
d.z = g
d.y = b
e.z = g
e.x = g
e.y = d
e.w = f
f.z = a
g.z = e
g.y = d
h.z = g
assert f.z.y.z.y.y.z.txt == "e" | 8 | 13 | 1.625 | 0.232143 | 5 | 1.6 | 4 | 1 | 2 | 6 | 2 | 1 | 6 | 0.75 | 6 | 0.461538 | 1 | 2 | 2 | 2 | 2 | 3 | 2 | 2 |
547 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = A("e")
f = D("f")
g = B("g")
h = D("h")
a.z = e
a.y = c
a.x = g
b.z = g
b.y = c
c.z = b
d.z = b
d.y = b
e.z = a
e.y = c
e.x = b
f.z = b
f.y = b
g.z = b
g.y = c
h.z = b
h.y = b
assert b.z.z.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = A("e")
f = D("f")
g = B("g")
h = D("h")
a.z = e
a.y = c
a.x = g
b.z = g
b.y = c
c.z = b
d.z = b
d.y = b
e.z = a
e.y = c
e.x = b
f.z = b
f.y = b
g.z = b
g.y = c
h.z = b
h.y = b
assert b.z.z.z.txt == "g" | 8 | 14 | 1.75 | 0.25 | 4 | 2 | 3 | 1 | 2 | 3 | 2 | 2 | 2 | 0.25 | 2 | 0.142857 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
548 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = D("f")
g = D("g")
h = A("h")
a.z = b
b.z = g
b.y = h
c.z = b
c.y = a
d.z = b
e.z = b
f.z = b
g.z = b
h.z = b
assert c.y.z.y.z.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = D("f")
g = D("g")
h = A("h")
a.z = b
b.z = g
b.y = h
c.z = b
c.y = a
d.z = b
e.z = b
f.z = b
g.z = b
h.z = b
assert c.y.z.y.z.z.txt == "g" | 8 | 10 | 1.25 | 0.178571 | 4 | 2 | 2 | 1 | 1.5 | 5 | 2 | 1 | 5 | 0.625 | 5 | 0.5 | 1 | 2 | 2 | 2 | 2 | 3 | 2 | 2 |
549 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: C = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: D = None
self.w: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = D("f")
g = C("g")
h = B("h")
a.z = b
a.y = b
b.z = c
c.z = e
c.y = a
c.x = g
c.w = b
d.z = a
d.w = a
d.y = e
d.x = e
e.z = a
e.w = a
e.y = f
e.x = f
f.z = a
f.w = a
f.y = d
f.x = d
g.z = f
g.y = a
g.x = c
g.w = h
h.z = g
assert h.z.z.z.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: C = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: D = None
self.w: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = D("f")
g = C("g")
h = B("h")
a.z = b
a.y = b
b.z = c
c.z = e
c.y = a
c.x = g
c.w = b
d.z = a
d.w = a
d.y = e
d.x = e
e.z = a
e.w = a
e.y = f
e.x = f
f.z = a
f.w = a
f.y = d
f.x = d
g.z = f
g.y = a
g.x = c
g.w = h
h.z = g
assert h.z.z.z.z.txt == "b" | 8 | 17 | 2.125 | 0.303571 | 4 | 2 | 4 | 1 | 2.75 | 4 | 1 | 1 | 5 | 0.625 | 4 | 0.235294 | 0 | null | null | null | 1 | 4 | 4 | 1 |
550 | class A:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: A = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: G = None
self.x: G = None
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = e
b.z = a
b.y = e
c.z = f
c.y = a
c.x = d
d.z = f
d.y = h
e.z = f
f.z = a
f.y = g
f.x = g
f.w = g
g.z = e
h.z = f
h.y = f
assert e.z.z.z.z.z.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: A = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: G = None
self.x: G = None
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = e
b.z = a
b.y = e
c.z = f
c.y = a
c.x = d
d.z = f
d.y = h
e.z = f
f.z = a
f.y = g
f.x = g
f.w = g
g.z = e
h.z = f
h.y = f
assert e.z.z.z.z.z.txt == "a" | 8 | 13 | 1.625 | 0.232143 | 8 | 1 | 4 | 1 | 2 | 5 | 2 | 2 | 3 | 0.375 | 3 | 0.230769 | 3 | 3 | 3 | 3 | 1 | 5 | 5 | 1 |
551 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = C("e")
f = A("f")
g = B("g")
h = C("h")
a.z = d
a.y = e
b.z = f
b.y = d
b.x = g
c.z = a
c.y = e
c.x = d
d.z = a
e.z = a
e.y = c
e.x = d
f.z = d
f.y = h
g.z = f
g.y = d
g.x = b
h.z = a
h.y = e
h.x = d
assert f.y.z.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = C("e")
f = A("f")
g = B("g")
h = C("h")
a.z = d
a.y = e
b.z = f
b.y = d
b.x = g
c.z = a
c.y = e
c.x = d
d.z = a
e.z = a
e.y = c
e.x = d
f.z = d
f.y = h
g.z = f
g.y = d
g.x = b
h.z = a
h.y = e
h.x = d
assert f.y.z.y.txt == "e" | 8 | 20 | 2.5 | 0.357143 | 4 | 2 | 3 | 1 | 2.25 | 3 | 1 | 1 | 4 | 0.5 | 3 | 0.15 | 0 | null | null | null | 2 | 2 | 1 | 1 |
552 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = A("d")
e = B("e")
f = A("f")
g = A("g")
h = A("h")
a.z = f
b.z = a
c.z = a
d.z = g
e.z = a
f.z = a
g.z = a
h.z = a
assert f.z.z.z.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = A("d")
e = B("e")
f = A("f")
g = A("g")
h = A("h")
a.z = f
b.z = a
c.z = a
d.z = g
e.z = a
f.z = a
g.z = a
h.z = a
assert f.z.z.z.txt == "a" | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 3 | 2 | 2 | 2 | 0.25 | 2 | 0.25 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
553 | class A:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: G = None
self.x: E = None
self.w: C = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: G = None
self.x: A = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.x: G = None
self.w: A = None
self.v: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: G = None
self.x: B = None
self.w: C = None
self.v: C = None
self.u: G = None
self.t: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = D("h")
a.z = g
a.y = b
b.z = a
b.v = a
b.y = g
b.x = e
b.w = c
c.z = h
c.y = g
c.x = a
c.w = b
d.z = e
d.y = f
d.x = g
d.w = a
d.v = b
e.z = b
e.x = b
e.y = g
e.u = g
e.t = g
e.w = c
e.v = c
f.z = g
f.y = a
g.z = d
h.z = e
h.y = f
h.x = g
h.w = a
h.v = b
assert c.z.v.y.z.v.z.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: G = None
self.x: E = None
self.w: C = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: G = None
self.x: A = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.x: G = None
self.w: A = None
self.v: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: G = None
self.x: B = None
self.w: C = None
self.v: C = None
self.u: G = None
self.t: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = D("h")
a.z = g
a.y = b
b.z = a
b.v = a
b.y = g
b.x = e
b.w = c
c.z = h
c.y = g
c.x = a
c.w = b
d.z = e
d.y = f
d.x = g
d.w = a
d.v = b
e.z = b
e.x = b
e.y = g
e.u = g
e.t = g
e.w = c
e.v = c
f.z = g
f.y = a
g.z = d
h.z = e
h.y = f
h.x = g
h.w = a
h.v = b
assert c.z.v.y.z.v.z.z.txt == "g" | 8 | 26 | 3.25 | 0.464286 | 7 | 1.142857 | 7 | 1 | 3.714286 | 7 | 2 | 1 | 6 | 0.75 | 7 | 0.269231 | 2 | 3 | 4 | 3.5 | 3 | 4 | 2 | 2 |
554 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: C = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: B = None
self.w: C = None
self.v: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = A("f")
g = B("g")
h = D("h")
a.z = e
a.y = e
b.z = f
b.w = f
b.y = g
b.x = c
c.z = f
d.z = b
d.x = b
d.y = h
d.w = c
d.v = f
e.z = b
f.z = e
f.y = e
g.z = f
g.y = b
g.x = c
g.w = a
h.z = g
h.x = g
h.y = d
h.w = c
h.v = f
assert d.x.x.z.z.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: C = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: B = None
self.w: C = None
self.v: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = A("f")
g = B("g")
h = D("h")
a.z = e
a.y = e
b.z = f
b.w = f
b.y = g
b.x = c
c.z = f
d.z = b
d.x = b
d.y = h
d.w = c
d.v = f
e.z = b
f.z = e
f.y = e
g.z = f
g.y = b
g.x = c
g.w = a
h.z = g
h.x = g
h.y = d
h.w = c
h.v = f
assert d.x.x.z.z.z.txt == "b" | 8 | 19 | 2.375 | 0.339286 | 5 | 1.6 | 5 | 1 | 2.6 | 5 | 2 | 1 | 5 | 0.625 | 5 | 0.263158 | 1 | 4 | 4 | 4 | 2 | 3 | 3 | 1 |
555 | class A:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: D = None
self.w: A = None
self.v: D = None
self.u: G = None
self.t: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = C("h")
a.z = e
b.z = e
b.t = e
b.y = g
b.u = g
b.x = d
b.v = d
b.w = a
c.z = d
c.y = h
d.z = b
d.y = f
e.z = d
e.y = c
e.x = f
f.z = e
f.y = c
f.x = a
g.z = h
g.y = e
h.z = d
h.y = c
assert b.v.z.y.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: D = None
self.w: A = None
self.v: D = None
self.u: G = None
self.t: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = C("h")
a.z = e
b.z = e
b.t = e
b.y = g
b.u = g
b.x = d
b.v = d
b.w = a
c.z = d
c.y = h
d.z = b
d.y = f
e.z = d
e.y = c
e.x = f
f.z = e
f.y = c
f.x = a
g.z = h
g.y = e
h.z = d
h.y = c
assert b.v.z.y.y.txt == "e" | 8 | 19 | 2.375 | 0.339286 | 7 | 1.142857 | 7 | 1 | 2.857143 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.210526 | 1 | 2 | 2 | 2 | 3 | 2 | 2 | 2 |
556 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = B("e")
f = A("f")
g = D("g")
h = D("h")
a.z = g
a.y = c
b.z = d
b.y = c
c.z = g
c.y = g
d.z = c
e.z = d
e.y = c
f.z = h
f.y = c
g.z = c
h.z = c
assert d.z.z.z.y.z.z.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = B("e")
f = A("f")
g = D("g")
h = D("h")
a.z = g
a.y = c
b.z = d
b.y = c
c.z = g
c.y = g
d.z = c
e.z = d
e.y = c
f.z = h
f.y = c
g.z = c
h.z = c
assert d.z.z.z.y.z.z.z.txt == "c" | 8 | 12 | 1.5 | 0.214286 | 4 | 2 | 2 | 1 | 1.75 | 7 | 4 | 3 | 3 | 0.375 | 4 | 0.333333 | 5 | 2 | 6 | 3.111111 | 2 | 6 | 3 | 2 |
557 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = B("d")
e = A("e")
f = B("f")
g = C("g")
h = B("h")
a.z = e
a.x = e
a.y = c
b.z = f
b.y = c
c.z = h
c.y = d
d.z = h
d.y = c
e.z = a
e.x = a
e.y = c
f.z = h
f.y = g
g.z = h
g.y = h
h.z = d
h.y = g
assert h.y.y.z.y.z.z.y.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = B("d")
e = A("e")
f = B("f")
g = C("g")
h = B("h")
a.z = e
a.x = e
a.y = c
b.z = f
b.y = c
c.z = h
c.y = d
d.z = h
d.y = c
e.z = a
e.x = a
e.y = c
f.z = h
f.y = g
g.z = h
g.y = h
h.z = d
h.y = g
assert h.y.y.z.y.z.z.y.y.txt == "d" | 8 | 15 | 1.875 | 0.267857 | 3 | 2.666667 | 3 | 2 | 2.333333 | 8 | 3 | 2 | 4 | 0.5 | 6 | 0.4 | 5 | 2 | 5 | 3.285714 | 2 | 5 | 2 | 2 |
558 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = B("e")
f = D("f")
g = C("g")
h = A("h")
a.z = f
a.y = g
a.x = c
b.z = c
c.z = g
c.y = a
c.x = d
d.z = c
d.y = e
e.z = c
f.z = c
f.y = e
g.z = c
g.y = h
g.x = f
h.z = f
h.y = c
h.x = c
assert c.z.y.x.z.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = B("e")
f = D("f")
g = C("g")
h = A("h")
a.z = f
a.y = g
a.x = c
b.z = c
c.z = g
c.y = a
c.x = d
d.z = c
d.y = e
e.z = c
f.z = c
f.y = e
g.z = c
g.y = h
g.x = f
h.z = f
h.y = c
h.x = c
assert c.z.y.x.z.z.txt == "c" | 8 | 17 | 2.125 | 0.303571 | 4 | 2 | 3 | 1 | 2.25 | 5 | 3 | 2 | 3 | 0.375 | 4 | 0.235294 | 3 | 2 | 5 | 3.25 | 3 | 3 | 2 | 2 |
559 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: D = None
self.w: B = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.x: E = None
self.w: B = None
self.v: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: F = None
self.x: A = None
self.w: F = None
self.v: C = None
self.u: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = D("g")
h = E("h")
a.z = c
a.v = c
a.y = g
a.x = g
a.w = b
b.z = d
b.y = e
c.z = h
c.y = e
d.z = g
d.v = g
d.y = f
d.x = e
d.w = b
e.z = c
e.v = c
e.y = f
e.w = f
e.x = a
e.u = a
f.z = d
g.z = d
g.v = d
g.y = f
g.x = e
g.w = b
h.z = c
h.v = c
h.y = f
h.w = f
h.x = a
h.u = a
assert a.w.z.w.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: D = None
self.w: B = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.x: E = None
self.w: B = None
self.v: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: F = None
self.x: A = None
self.w: F = None
self.v: C = None
self.u: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = D("g")
h = E("h")
a.z = c
a.v = c
a.y = g
a.x = g
a.w = b
b.z = d
b.y = e
c.z = h
c.y = e
d.z = g
d.v = g
d.y = f
d.x = e
d.w = b
e.z = c
e.v = c
e.y = f
e.w = f
e.x = a
e.u = a
f.z = d
g.z = d
g.v = d
g.y = f
g.x = e
g.w = b
h.z = c
h.v = c
h.y = f
h.w = f
h.x = a
h.u = a
assert a.w.z.w.y.txt == "e" | 8 | 22 | 2.75 | 0.392857 | 6 | 1.333333 | 6 | 1 | 3.5 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.181818 | 1 | 2 | 2 | 2 | 3 | 2 | 1 | 2 |
560 | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: G = None
self.w: A = None
self.v: A = None
self.u: G = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.x: D = None
self.w: C = None
self.v: D = None
self.u: F = None
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: F = None
self.x: C = None
self.w: A = None
self.v: G = None
self.u: B = None
self.t: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.x: D = None
self.w: D = None
self.v: G = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: C = None
self.w: F = None
self.v: B = None
self.u: B = None
self.t: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = D("h")
a.z = c
b.z = h
b.y = e
c.z = e
c.y = a
c.w = a
c.v = a
c.x = g
c.u = g
c.t = d
d.z = b
d.y = f
d.u = f
d.x = h
d.v = h
d.w = c
d.t = a
e.z = g
e.v = g
e.y = f
e.x = c
e.t = c
e.w = a
e.u = b
f.z = g
f.v = g
f.y = b
f.x = h
f.w = h
f.u = c
g.z = e
g.y = a
g.x = c
g.t = c
g.w = f
g.v = b
g.u = b
h.z = b
h.y = f
h.u = f
h.x = d
h.v = d
h.w = c
h.t = a
assert c.z.v.w.x.u.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: G = None
self.w: A = None
self.v: A = None
self.u: G = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.x: D = None
self.w: C = None
self.v: D = None
self.u: F = None
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: F = None
self.x: C = None
self.w: A = None
self.v: G = None
self.u: B = None
self.t: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.x: D = None
self.w: D = None
self.v: G = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: C = None
self.w: F = None
self.v: B = None
self.u: B = None
self.t: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = D("h")
a.z = c
b.z = h
b.y = e
c.z = e
c.y = a
c.w = a
c.v = a
c.x = g
c.u = g
c.t = d
d.z = b
d.y = f
d.u = f
d.x = h
d.v = h
d.w = c
d.t = a
e.z = g
e.v = g
e.y = f
e.x = c
e.t = c
e.w = a
e.u = b
f.z = g
f.v = g
f.y = b
f.x = h
f.w = h
f.u = c
g.z = e
g.y = a
g.x = c
g.t = c
g.w = f
g.v = b
g.u = b
h.z = b
h.y = f
h.u = f
h.x = d
h.v = d
h.w = c
h.t = a
assert c.z.v.w.x.u.txt == "f" | 8 | 31 | 3.875 | 0.553571 | 7 | 1.142857 | 7 | 1 | 5.285714 | 5 | 2 | 1 | 5 | 0.625 | 5 | 0.16129 | 1 | 2 | 2 | 2 | 5 | 1 | 1 | 1 |
561 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: C = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = B("f")
g = D("g")
h = A("h")
a.z = e
a.y = h
a.x = c
a.w = b
b.z = e
b.y = c
c.z = a
c.y = b
d.z = b
d.y = a
e.z = b
e.y = h
f.z = d
f.y = c
g.z = b
g.y = a
h.z = g
h.y = a
h.x = c
h.w = f
assert a.x.y.y.y.z.y.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: C = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = B("f")
g = D("g")
h = A("h")
a.z = e
a.y = h
a.x = c
a.w = b
b.z = e
b.y = c
c.z = a
c.y = b
d.z = b
d.y = a
e.z = b
e.y = h
f.z = d
f.y = c
g.z = b
g.y = a
h.z = g
h.y = a
h.x = c
h.w = f
assert a.x.y.y.y.z.y.txt == "h" | 8 | 20 | 2.5 | 0.357143 | 4 | 2 | 4 | 2 | 2.5 | 6 | 2 | 2 | 5 | 0.625 | 5 | 0.25 | 2 | 2 | 2 | 2 | 3 | 4 | 3 | 2 |
562 | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.x: G = None
self.w: G = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: B = None
self.w: C = None
self.v: F = None
self.u: C = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.x: D = None
self.w: F = None
self.v: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: F = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = C("h")
a.z = f
a.y = d
a.x = g
a.w = g
a.v = c
b.z = h
b.y = g
c.z = a
c.t = a
c.y = h
c.w = h
c.u = h
c.x = b
c.v = f
d.z = b
d.y = b
e.z = g
e.y = a
e.x = d
e.w = f
e.v = b
f.z = e
f.y = g
f.x = c
g.z = f
g.y = f
g.x = f
h.z = a
h.t = a
h.y = c
h.w = c
h.u = c
h.x = b
h.v = f
assert d.y.z.y.v.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.x: G = None
self.w: G = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: B = None
self.w: C = None
self.v: F = None
self.u: C = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.x: D = None
self.w: F = None
self.v: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: F = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = C("h")
a.z = f
a.y = d
a.x = g
a.w = g
a.v = c
b.z = h
b.y = g
c.z = a
c.t = a
c.y = h
c.w = h
c.u = h
c.x = b
c.v = f
d.z = b
d.y = b
e.z = g
e.y = a
e.x = d
e.w = f
e.v = b
f.z = e
f.y = g
f.x = c
g.z = f
g.y = f
g.x = f
h.z = a
h.t = a
h.y = c
h.w = c
h.u = c
h.x = b
h.v = f
assert d.y.z.y.v.txt == "f" | 8 | 24 | 3 | 0.428571 | 7 | 1.142857 | 7 | 2 | 3.857143 | 4 | 1 | 1 | 5 | 0.625 | 4 | 0.166667 | 0 | null | null | null | 3 | 2 | 1 | 1 |
563 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: E = None
self.w: C = None
self.v: F = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = C("g")
h = B("h")
a.z = g
a.y = b
b.z = d
c.z = b
c.y = e
d.z = b
d.y = e
d.x = e
d.w = c
d.u = c
d.v = f
e.z = c
e.y = a
e.x = f
f.z = d
f.y = a
f.x = b
g.z = b
g.y = e
h.z = d
assert h.z.v.z.v.z.v.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: E = None
self.w: C = None
self.v: F = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = C("g")
h = B("h")
a.z = g
a.y = b
b.z = d
c.z = b
c.y = e
d.z = b
d.y = e
d.x = e
d.w = c
d.u = c
d.v = f
e.z = c
e.y = a
e.x = f
f.z = d
f.y = a
f.x = b
g.z = b
g.y = e
h.z = d
assert h.z.v.z.v.z.v.y.txt == "a" | 8 | 18 | 2.25 | 0.321429 | 6 | 1.333333 | 6 | 1 | 2.833333 | 7 | 3 | 3 | 4 | 0.5 | 4 | 0.222222 | 4 | 2 | 4 | 2.666667 | 3 | 3 | 1 | 2 |
564 | class A:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: A = None
self.w: D = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.w: F = None
self.v: C = None
self.u: H = None
self.t: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: A = None
self.w: D = None
self.v: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = e
b.z = a
b.x = a
b.y = f
b.w = d
b.v = c
c.z = a
c.y = a
d.z = f
d.y = f
e.z = d
e.y = f
f.z = d
g.z = d
g.y = d
g.t = d
g.x = c
g.v = c
g.w = f
g.u = h
h.z = b
h.y = b
h.x = a
h.w = d
h.v = e
assert g.w.z.z.z.z.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: A = None
self.w: D = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.w: F = None
self.v: C = None
self.u: H = None
self.t: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: A = None
self.w: D = None
self.v: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = e
b.z = a
b.x = a
b.y = f
b.w = d
b.v = c
c.z = a
c.y = a
d.z = f
d.y = f
e.z = d
e.y = f
f.z = d
g.z = d
g.y = d
g.t = d
g.x = c
g.v = c
g.w = f
g.u = h
h.z = b
h.y = b
h.x = a
h.w = d
h.v = e
assert g.w.z.z.z.z.z.txt == "d" | 8 | 18 | 2.25 | 0.321429 | 8 | 1 | 7 | 1 | 3.125 | 6 | 3 | 3 | 3 | 0.375 | 3 | 0.166667 | 4 | 2 | 4 | 2.666667 | 2 | 5 | 5 | 1 |
565 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = A("e")
f = B("f")
g = C("g")
h = B("h")
a.z = e
b.z = c
b.y = c
c.z = g
c.y = a
d.z = c
d.y = e
e.z = a
f.z = d
f.y = d
g.z = c
g.y = e
h.z = c
h.y = d
assert f.z.y.z.z.z.z.z.z.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = A("e")
f = B("f")
g = C("g")
h = B("h")
a.z = e
b.z = c
b.y = c
c.z = g
c.y = a
d.z = c
d.y = e
e.z = a
f.z = d
f.y = d
g.z = c
g.y = e
h.z = c
h.y = d
assert f.z.y.z.z.z.z.z.z.txt == "e" | 8 | 12 | 1.5 | 0.214286 | 3 | 2.666667 | 2 | 1 | 1.666667 | 8 | 4 | 3 | 4 | 0.5 | 4 | 0.333333 | 5 | 2 | 6 | 3.111111 | 2 | 7 | 6 | 1 |
566 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: C = None
self.w: C = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = C("f")
g = E("g")
h = D("h")
a.z = b
b.z = f
b.y = g
b.x = d
c.z = b
d.z = e
d.y = h
d.x = c
d.v = c
d.w = f
e.z = b
f.z = b
g.z = b
h.z = g
h.y = d
h.x = c
h.w = f
h.v = f
assert e.z.x.z.z.y.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: C = None
self.w: C = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = C("f")
g = E("g")
h = D("h")
a.z = b
b.z = f
b.y = g
b.x = d
c.z = b
d.z = e
d.y = h
d.x = c
d.v = c
d.w = f
e.z = b
f.z = b
g.z = b
h.z = g
h.y = d
h.x = c
h.w = f
h.v = f
assert e.z.x.z.z.y.z.txt == "b" | 8 | 16 | 2 | 0.285714 | 5 | 1.6 | 5 | 1 | 2.2 | 6 | 3 | 2 | 4 | 0.5 | 5 | 0.3125 | 3 | 2 | 5 | 3.25 | 3 | 4 | 2 | 2 |
567 | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = A("d")
e = B("e")
f = C("f")
g = C("g")
h = A("h")
a.z = g
b.z = g
b.y = h
c.z = b
c.y = h
c.x = g
d.z = f
e.z = g
e.y = d
f.z = e
f.y = a
f.x = g
g.z = b
g.y = d
g.x = c
h.z = g
assert c.z.y.z.y.z.y.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = A("d")
e = B("e")
f = C("f")
g = C("g")
h = A("h")
a.z = g
b.z = g
b.y = h
c.z = b
c.y = h
c.x = g
d.z = f
e.z = g
e.y = d
f.z = e
f.y = a
f.x = g
g.z = b
g.y = d
g.x = c
h.z = g
assert c.z.y.z.y.z.y.z.txt == "g" | 8 | 16 | 2 | 0.285714 | 3 | 2.666667 | 3 | 1 | 2 | 7 | 2 | 1 | 7 | 0.875 | 7 | 0.4375 | 1 | 4 | 4 | 4 | 2 | 4 | 1 | 1 |
568 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = B("e")
f = C("f")
g = B("g")
h = B("h")
a.z = h
b.z = f
b.y = a
b.x = e
c.z = b
c.y = b
d.z = b
d.y = e
e.z = d
e.y = a
e.x = g
f.z = h
f.y = h
g.z = c
g.y = a
g.x = h
h.z = f
h.y = a
h.x = e
assert c.z.x.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = B("e")
f = C("f")
g = B("g")
h = B("h")
a.z = h
b.z = f
b.y = a
b.x = e
c.z = b
c.y = b
d.z = b
d.y = e
e.z = d
e.y = a
e.x = g
f.z = h
f.y = h
g.z = c
g.y = a
g.x = h
h.z = f
h.y = a
h.x = e
assert c.z.x.y.txt == "a" | 8 | 17 | 2.125 | 0.303571 | 3 | 2.666667 | 3 | 1 | 2 | 3 | 1 | 1 | 4 | 0.5 | 3 | 0.176471 | 0 | null | null | null | 3 | 1 | 1 | 1 |
569 | class A:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: G = None
self.x: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: B = None
self.w: F = None
self.v: B = None
self.u: D = None
self.t: B = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: B = None
self.w: C = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: E = None
self.w: F = None
self.v: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.y: G = None
self.x: E = None
self.w: G = None
self.v: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = e
b.z = g
b.y = g
b.x = h
c.z = d
c.y = d
c.u = d
c.x = b
c.v = b
c.t = b
c.s = b
c.w = f
d.z = b
d.y = b
d.x = e
e.z = h
f.z = d
f.y = e
f.v = e
f.x = b
f.w = c
g.z = c
g.y = c
g.x = e
g.w = f
g.v = f
h.z = a
h.y = g
h.w = g
h.x = e
h.v = b
assert d.x.z.y.w.z.x.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: G = None
self.x: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: B = None
self.w: F = None
self.v: B = None
self.u: D = None
self.t: B = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: B = None
self.w: C = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: E = None
self.w: F = None
self.v: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.y: G = None
self.x: E = None
self.w: G = None
self.v: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = e
b.z = g
b.y = g
b.x = h
c.z = d
c.y = d
c.u = d
c.x = b
c.v = b
c.t = b
c.s = b
c.w = f
d.z = b
d.y = b
d.x = e
e.z = h
f.z = d
f.y = e
f.v = e
f.x = b
f.w = c
g.z = c
g.y = c
g.x = e
g.w = f
g.v = f
h.z = a
h.y = g
h.w = g
h.x = e
h.v = b
assert d.x.z.y.w.z.x.z.txt == "h" | 8 | 20 | 2.5 | 0.357143 | 8 | 1 | 8 | 1 | 3.875 | 7 | 2 | 2 | 5 | 0.625 | 5 | 0.25 | 3 | 5 | 5 | 5 | 4 | 3 | 1 | 1 |
570 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: C = None
self.w: B = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: E = None
self.w: A = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = E("f")
g = B("g")
h = D("h")
a.z = c
a.x = c
a.v = c
a.y = d
a.w = g
b.z = c
b.y = e
b.v = e
b.x = f
b.w = a
c.z = g
d.z = h
e.z = f
f.z = e
g.z = c
g.y = f
g.x = f
g.v = f
g.w = a
h.z = d
assert f.z.z.z.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: C = None
self.w: B = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: E = None
self.w: A = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = E("f")
g = B("g")
h = D("h")
a.z = c
a.x = c
a.v = c
a.y = d
a.w = g
b.z = c
b.y = e
b.v = e
b.x = f
b.w = a
c.z = g
d.z = h
e.z = f
f.z = e
g.z = c
g.y = f
g.x = f
g.v = f
g.w = a
h.z = d
assert f.z.z.z.z.txt == "f" | 8 | 15 | 1.875 | 0.267857 | 5 | 1.6 | 5 | 1 | 2.6 | 4 | 3 | 2 | 2 | 0.25 | 2 | 0.133333 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
571 | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: C = None
self.w: A = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: D = None
self.w: B = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = A("f")
g = E("g")
h = D("h")
a.z = d
b.z = g
b.y = e
b.x = c
b.w = a
b.v = h
c.z = b
c.w = b
c.y = f
c.x = d
c.v = a
d.z = h
e.z = g
e.y = a
e.x = f
f.z = h
g.z = e
g.y = a
g.x = f
h.z = d
assert b.z.x.z.z.z.z.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: C = None
self.w: A = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: D = None
self.w: B = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = A("f")
g = E("g")
h = D("h")
a.z = d
b.z = g
b.y = e
b.x = c
b.w = a
b.v = h
c.z = b
c.w = b
c.y = f
c.x = d
c.v = a
d.z = h
e.z = g
e.y = a
e.x = f
f.z = h
g.z = e
g.y = a
g.x = f
h.z = d
assert b.z.x.z.z.z.z.z.txt == "h" | 8 | 19 | 2.375 | 0.339286 | 5 | 1.6 | 5 | 1 | 3 | 7 | 3 | 2 | 5 | 0.625 | 5 | 0.263158 | 3 | 2 | 4 | 2.5 | 2 | 6 | 5 | 1 |
572 | class A:
def __init__(self, txt: str):
self.z: G = None
self.y: C = None
self.x: D = None
self.w: F = None
self.v: F = None
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: E = None
self.x: E = None
self.w: D = None
self.v: A = None
self.u: F = None
self.t: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: H = None
self.x: E = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: C = None
self.x: E = None
self.w: A = None
self.v: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: H = None
self.y: D = None
self.x: F = None
self.w: D = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = g
a.y = c
a.x = d
a.u = d
a.w = f
a.v = f
b.z = g
b.y = e
b.x = e
b.t = e
b.w = d
b.v = a
b.u = f
c.z = f
c.y = h
c.x = e
c.w = a
d.z = f
d.v = f
d.y = c
d.x = e
d.w = a
e.z = h
e.y = d
e.w = d
e.x = f
e.v = g
f.z = e
g.z = e
h.z = f
h.y = g
assert h.z.z.w.x.v.z.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: G = None
self.y: C = None
self.x: D = None
self.w: F = None
self.v: F = None
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: E = None
self.x: E = None
self.w: D = None
self.v: A = None
self.u: F = None
self.t: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: H = None
self.x: E = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: C = None
self.x: E = None
self.w: A = None
self.v: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: H = None
self.y: D = None
self.x: F = None
self.w: D = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = g
a.y = c
a.x = d
a.u = d
a.w = f
a.v = f
b.z = g
b.y = e
b.x = e
b.t = e
b.w = d
b.v = a
b.u = f
c.z = f
c.y = h
c.x = e
c.w = a
d.z = f
d.v = f
d.y = c
d.x = e
d.w = a
e.z = h
e.y = d
e.w = d
e.x = f
e.v = g
f.z = e
g.z = e
h.z = f
h.y = g
assert h.z.z.w.x.v.z.y.txt == "d" | 8 | 25 | 3.125 | 0.446429 | 8 | 1 | 7 | 1 | 3.875 | 7 | 3 | 1 | 5 | 0.625 | 7 | 0.28 | 3 | 2 | 4 | 3 | 5 | 3 | 2 | 3 |
573 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: D = None
self.w: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: G = None
self.w: E = None
self.v: G = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: B = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: G = None
self.w: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = A("h")
a.z = e
a.y = b
a.x = d
a.w = f
b.z = f
b.y = e
b.w = e
b.x = g
b.v = g
b.u = d
c.z = e
c.y = b
c.x = b
c.w = a
d.z = b
d.x = b
d.y = f
e.z = h
f.z = b
f.y = b
f.x = g
f.w = d
g.z = h
g.y = c
h.z = e
h.y = b
h.x = d
h.w = f
assert h.x.y.y.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: D = None
self.w: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: G = None
self.w: E = None
self.v: G = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: B = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: G = None
self.w: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = A("h")
a.z = e
a.y = b
a.x = d
a.w = f
b.z = f
b.y = e
b.w = e
b.x = g
b.v = g
b.u = d
c.z = e
c.y = b
c.x = b
c.w = a
d.z = b
d.x = b
d.y = f
e.z = h
f.z = b
f.y = b
f.x = g
f.w = d
g.z = h
g.y = c
h.z = e
h.y = b
h.x = d
h.w = f
assert h.x.y.y.txt == "b" | 8 | 23 | 2.875 | 0.410714 | 7 | 1.142857 | 6 | 1 | 3.428571 | 3 | 1 | 1 | 4 | 0.5 | 3 | 0.130435 | 0 | null | null | null | 2 | 2 | 2 | 1 |
574 | class A:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.x: D = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: E = None
self.w: E = None
self.v: E = None
self.u: G = None
self.t: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: H = None
self.x: A = None
self.w: C = None
self.v: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: G = None
self.x: C = None
self.w: E = None
self.v: E = None
self.u: B = None
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: D = None
self.w: F = None
self.v: A = None
self.u: D = None
self.t: A = None
self.s: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = g
a.y = b
a.x = d
a.w = d
b.z = e
c.z = h
d.z = c
d.y = c
d.x = e
d.w = e
d.v = e
d.u = g
d.t = h
e.z = g
e.y = h
e.x = a
e.w = c
e.v = d
f.z = h
f.y = g
f.x = c
f.w = e
f.v = e
f.u = b
f.t = b
g.z = d
g.x = d
g.u = d
g.y = b
g.w = f
g.v = a
g.t = a
g.s = a
h.z = d
h.y = e
assert e.y.z.y.z.y.v.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.x: D = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: E = None
self.w: E = None
self.v: E = None
self.u: G = None
self.t: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: H = None
self.x: A = None
self.w: C = None
self.v: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: G = None
self.x: C = None
self.w: E = None
self.v: E = None
self.u: B = None
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: D = None
self.w: F = None
self.v: A = None
self.u: D = None
self.t: A = None
self.s: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = g
a.y = b
a.x = d
a.w = d
b.z = e
c.z = h
d.z = c
d.y = c
d.x = e
d.w = e
d.v = e
d.u = g
d.t = h
e.z = g
e.y = h
e.x = a
e.w = c
e.v = d
f.z = h
f.y = g
f.x = c
f.w = e
f.v = e
f.u = b
f.t = b
g.z = d
g.x = d
g.u = d
g.y = b
g.w = f
g.v = a
g.t = a
g.s = a
h.z = d
h.y = e
assert e.y.z.y.z.y.v.z.txt == "c" | 8 | 25 | 3.125 | 0.446429 | 8 | 1 | 8 | 1 | 4.375 | 7 | 2 | 1 | 4 | 0.5 | 7 | 0.28 | 4 | 3 | 5 | 4 | 3 | 3 | 1 | 2 |
575 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: F = None
self.x: B = None
self.w: E = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: E = None
self.w: E = None
self.v: B = None
self.u: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: F = None
self.w: E = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = B("g")
h = F("h")
a.z = c
a.y = h
a.x = b
a.v = b
a.w = e
b.z = f
b.y = f
b.x = e
c.z = a
c.y = e
c.x = e
c.w = e
c.v = b
c.u = f
d.z = g
d.y = c
d.x = h
d.w = e
d.v = e
e.z = h
e.y = h
e.x = h
f.z = d
g.z = f
g.y = f
g.x = e
h.z = d
assert f.z.x.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: F = None
self.x: B = None
self.w: E = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: E = None
self.w: E = None
self.v: B = None
self.u: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: F = None
self.w: E = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = B("g")
h = F("h")
a.z = c
a.y = h
a.x = b
a.v = b
a.w = e
b.z = f
b.y = f
b.x = e
c.z = a
c.y = e
c.x = e
c.w = e
c.v = b
c.u = f
d.z = g
d.y = c
d.x = h
d.w = e
d.v = e
e.z = h
e.y = h
e.x = h
f.z = d
g.z = f
g.y = f
g.x = e
h.z = d
assert f.z.x.z.txt == "d" | 8 | 19 | 2.375 | 0.339286 | 6 | 1.333333 | 6 | 1 | 3.833333 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.157895 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
576 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: G = None
self.x: D = None
self.w: E = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.y: D = None
self.x: E = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = G("h")
a.z = b
a.y = g
a.x = d
a.w = e
a.v = c
b.z = e
c.z = g
c.y = d
c.w = d
c.x = e
d.z = g
d.y = a
e.z = c
f.z = d
f.y = e
f.x = e
g.z = f
h.z = f
assert b.z.z.w.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: G = None
self.x: D = None
self.w: E = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.y: D = None
self.x: E = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = G("h")
a.z = b
a.y = g
a.x = d
a.w = e
a.v = c
b.z = e
c.z = g
c.y = d
c.w = d
c.x = e
d.z = g
d.y = a
e.z = c
f.z = d
f.y = e
f.x = e
g.z = f
h.z = f
assert b.z.z.w.z.txt == "g" | 8 | 16 | 2 | 0.285714 | 7 | 1.142857 | 5 | 1 | 2.428571 | 4 | 1 | 1 | 5 | 0.625 | 4 | 0.25 | 0 | null | null | null | 2 | 3 | 2 | 1 |
577 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: D = None
self.w: F = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.x: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: B = None
self.w: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: A = None
self.w: A = None
self.v: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = B("g")
h = D("h")
a.z = d
a.x = d
a.y = b
a.w = f
a.v = f
b.z = a
c.z = f
c.x = f
c.y = g
d.z = f
e.z = a
e.y = d
e.x = b
e.w = h
f.z = c
f.y = h
f.x = a
f.w = a
f.v = d
g.z = a
h.z = f
assert c.y.z.y.z.y.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: D = None
self.w: F = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.x: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: B = None
self.w: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: A = None
self.w: A = None
self.v: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = B("g")
h = D("h")
a.z = d
a.x = d
a.y = b
a.w = f
a.v = f
b.z = a
c.z = f
c.x = f
c.y = g
d.z = f
e.z = a
e.y = d
e.x = b
e.w = h
f.z = c
f.y = h
f.x = a
f.w = a
f.v = d
g.z = a
h.z = f
assert c.y.z.y.z.y.txt == "b" | 8 | 17 | 2.125 | 0.303571 | 6 | 1.333333 | 5 | 1 | 3.166667 | 5 | 2 | 2 | 4 | 0.5 | 4 | 0.235294 | 2 | 2 | 2 | 2 | 2 | 3 | 1 | 1 |
578 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = B("f")
g = E("g")
h = E("h")
a.z = b
a.y = d
a.x = e
b.z = f
c.z = b
d.z = f
d.y = g
e.z = a
e.y = f
f.z = b
g.z = a
g.y = f
h.z = a
h.y = f
assert f.z.z.z.z.z.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = B("f")
g = E("g")
h = E("h")
a.z = b
a.y = d
a.x = e
b.z = f
c.z = b
d.z = f
d.y = g
e.z = a
e.y = f
f.z = b
g.z = a
g.y = f
h.z = a
h.y = f
assert f.z.z.z.z.z.z.txt == "f" | 8 | 14 | 1.75 | 0.25 | 5 | 1.6 | 3 | 1 | 1.8 | 6 | 4 | 3 | 2 | 0.25 | 2 | 0.142857 | 5 | 2 | 6 | 3.111111 | 1 | 6 | 6 | 1 |
579 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = A("c")
d = B("d")
e = A("e")
f = A("f")
g = B("g")
h = A("h")
a.z = c
b.z = d
c.z = f
d.z = b
e.z = a
f.z = a
g.z = b
h.z = e
assert a.z.z.z.z.z.z.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = A("c")
d = B("d")
e = A("e")
f = A("f")
g = B("g")
h = A("h")
a.z = c
b.z = d
c.z = f
d.z = b
e.z = a
f.z = a
g.z = b
h.z = e
assert a.z.z.z.z.z.z.z.txt == "c" | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 7 | 3 | 3 | 3 | 0.375 | 3 | 0.375 | 5 | 3 | 6 | 3.857143 | 1 | 7 | 7 | 1 |
580 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = D("f")
g = D("g")
h = B("h")
a.z = b
a.x = b
a.w = b
a.y = c
b.z = h
b.y = c
c.z = h
c.y = b
d.z = c
d.x = c
d.y = h
e.z = c
e.x = c
e.y = b
f.z = c
f.x = c
f.y = b
g.z = c
g.x = c
g.y = h
h.z = b
h.y = c
assert c.z.z.y.y.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = D("f")
g = D("g")
h = B("h")
a.z = b
a.x = b
a.w = b
a.y = c
b.z = h
b.y = c
c.z = h
c.y = b
d.z = c
d.x = c
d.y = h
e.z = c
e.x = c
e.y = b
f.z = c
f.x = c
f.y = b
g.z = c
g.x = c
g.y = h
h.z = b
h.y = c
assert c.z.z.y.y.txt == "b" | 8 | 16 | 2 | 0.285714 | 4 | 2 | 4 | 2 | 2.75 | 4 | 2 | 1 | 3 | 0.375 | 4 | 0.25 | 2 | 2 | 3 | 2.5 | 2 | 2 | 2 | 2 |
581 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = B("d")
e = B("e")
f = C("f")
g = A("g")
h = C("h")
a.z = g
a.x = g
a.y = b
b.z = e
c.z = a
c.y = d
c.x = g
d.z = e
e.z = b
f.z = g
f.y = b
f.x = a
g.z = a
g.x = a
g.y = e
h.z = g
h.x = g
h.y = d
assert b.z.z.z.z.z.z.z.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = B("d")
e = B("e")
f = C("f")
g = A("g")
h = C("h")
a.z = g
a.x = g
a.y = b
b.z = e
c.z = a
c.y = d
c.x = g
d.z = e
e.z = b
f.z = g
f.y = b
f.x = a
g.z = a
g.x = a
g.y = e
h.z = g
h.x = g
h.y = d
assert b.z.z.z.z.z.z.z.z.txt == "b" | 8 | 15 | 1.875 | 0.267857 | 3 | 2.666667 | 3 | 1 | 2.333333 | 8 | 5 | 4 | 2 | 0.25 | 2 | 0.133333 | 7 | 2 | 8 | 3.75 | 1 | 8 | 8 | 1 |
582 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: C = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = D("f")
g = C("g")
h = A("h")
a.z = e
a.y = b
a.w = b
a.x = c
b.z = c
b.y = g
c.z = e
c.y = f
d.z = a
e.z = h
f.z = h
g.z = e
g.y = d
h.z = f
h.y = b
h.w = b
h.x = g
assert c.z.z.x.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: C = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = D("f")
g = C("g")
h = A("h")
a.z = e
a.y = b
a.w = b
a.x = c
b.z = c
b.y = g
c.z = e
c.y = f
d.z = a
e.z = h
f.z = h
g.z = e
g.y = d
h.z = f
h.y = b
h.w = b
h.x = g
assert c.z.z.x.y.txt == "d" | 8 | 15 | 1.875 | 0.267857 | 4 | 2 | 4 | 1 | 2.25 | 4 | 1 | 1 | 5 | 0.625 | 4 | 0.266667 | 0 | null | null | null | 3 | 2 | 2 | 1 |
583 | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: A = None
self.w: A = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: A = None
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: B = None
self.w: D = None
self.v: A = None
self.u: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = A("g")
h = B("h")
a.z = f
a.y = e
b.z = e
b.y = d
b.x = g
c.z = f
c.y = h
d.z = e
d.y = e
d.x = a
d.w = a
d.v = c
e.z = d
e.y = c
e.x = a
e.w = f
f.z = d
f.w = d
f.u = d
f.y = e
f.x = h
f.v = g
g.z = f
g.y = e
h.z = e
h.y = d
h.x = g
assert f.z.y.z.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: A = None
self.w: A = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: A = None
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: B = None
self.w: D = None
self.v: A = None
self.u: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = A("g")
h = B("h")
a.z = f
a.y = e
b.z = e
b.y = d
b.x = g
c.z = f
c.y = h
d.z = e
d.y = e
d.x = a
d.w = a
d.v = c
e.z = d
e.y = c
e.x = a
e.w = f
f.z = d
f.w = d
f.u = d
f.y = e
f.x = h
f.v = g
g.z = f
g.y = e
h.z = e
h.y = d
h.x = g
assert f.z.y.z.y.txt == "e" | 8 | 23 | 2.875 | 0.410714 | 6 | 1.333333 | 6 | 2 | 3.666667 | 4 | 2 | 2 | 3 | 0.375 | 3 | 0.130435 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
584 | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: D = None
self.w: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = A("f")
g = C("g")
h = C("h")
a.z = h
b.z = f
b.y = d
b.x = h
c.z = b
c.y = b
d.z = a
d.y = f
d.x = e
d.w = e
e.z = f
e.y = f
e.x = d
e.w = d
f.z = c
g.z = b
g.y = b
h.z = b
h.y = b
assert b.y.w.y.z.y.y.x.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: D = None
self.w: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = A("f")
g = C("g")
h = C("h")
a.z = h
b.z = f
b.y = d
b.x = h
c.z = b
c.y = b
d.z = a
d.y = f
d.x = e
d.w = e
e.z = f
e.y = f
e.x = d
e.w = d
f.z = c
g.z = b
g.y = b
h.z = b
h.y = b
assert b.y.w.y.z.y.y.x.z.txt == "f" | 8 | 13 | 1.625 | 0.232143 | 4 | 2 | 4 | 1 | 2.5 | 8 | 2 | 2 | 5 | 0.625 | 7 | 0.538462 | 4 | 5 | 5 | 5 | 4 | 4 | 2 | 2 |
585 | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = D("f")
g = B("g")
h = D("h")
a.z = f
b.z = c
c.z = h
d.z = c
e.z = c
f.z = c
g.z = c
h.z = c
assert d.z.z.z.z.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = D("e")
f = D("f")
g = B("g")
h = D("h")
a.z = f
b.z = c
c.z = h
d.z = c
e.z = c
f.z = c
g.z = c
h.z = c
assert d.z.z.z.z.z.txt == "c" | 8 | 8 | 1 | 0.142857 | 4 | 2 | 1 | 1 | 1 | 5 | 3 | 2 | 3 | 0.375 | 3 | 0.375 | 3 | 2 | 4 | 2.5 | 1 | 5 | 5 | 1 |
586 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = B("e")
f = A("f")
g = D("g")
h = C("h")
a.z = b
a.x = b
a.y = d
b.z = e
b.x = e
b.y = f
c.z = g
d.z = g
e.z = b
e.x = b
e.y = f
f.z = e
f.x = e
f.y = d
g.z = d
h.z = d
assert h.z.z.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = B("e")
f = A("f")
g = D("g")
h = C("h")
a.z = b
a.x = b
a.y = d
b.z = e
b.x = e
b.y = f
c.z = g
d.z = g
e.z = b
e.x = b
e.y = f
f.z = e
f.x = e
f.y = d
g.z = d
h.z = d
assert h.z.z.z.txt == "d" | 8 | 12 | 1.5 | 0.214286 | 4 | 2 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.25 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
587 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = B("d")
e = A("e")
f = B("f")
g = C("g")
h = C("h")
a.z = d
a.y = e
b.z = e
b.y = e
b.x = d
c.z = f
d.z = e
d.y = a
d.x = b
e.z = f
e.y = a
f.z = e
f.y = a
f.x = d
g.z = d
h.z = d
assert h.z.y.y.z.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = B("d")
e = A("e")
f = B("f")
g = C("g")
h = C("h")
a.z = d
a.y = e
b.z = e
b.y = e
b.x = d
c.z = f
d.z = e
d.y = a
d.x = b
e.z = f
e.y = a
f.z = e
f.y = a
f.x = d
g.z = d
h.z = d
assert h.z.y.y.z.y.txt == "a" | 8 | 15 | 1.875 | 0.267857 | 3 | 2.666667 | 3 | 1 | 2 | 5 | 2 | 1 | 5 | 0.625 | 5 | 0.333333 | 1 | 3 | 3 | 3 | 2 | 3 | 2 | 1 |
588 | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: B = None
self.w: D = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: D = None
self.w: C = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: B = None
self.w: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = C("f")
g = E("g")
h = D("h")
a.z = f
b.z = d
c.z = g
c.y = b
c.x = b
c.w = h
c.v = e
d.z = b
d.y = g
d.v = g
d.x = h
d.w = f
e.z = b
e.y = b
e.x = b
e.w = b
f.z = e
f.v = e
f.y = b
f.x = b
f.w = d
g.z = b
g.y = b
g.x = b
g.w = b
h.z = b
h.y = g
h.x = d
h.w = f
h.v = e
assert b.z.w.w.v.x.z.z.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: B = None
self.w: D = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: D = None
self.w: C = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: B = None
self.w: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = C("f")
g = E("g")
h = D("h")
a.z = f
b.z = d
c.z = g
c.y = b
c.x = b
c.w = h
c.v = e
d.z = b
d.y = g
d.v = g
d.x = h
d.w = f
e.z = b
e.y = b
e.x = b
e.w = b
f.z = e
f.v = e
f.y = b
f.x = b
f.w = d
g.z = b
g.y = b
g.x = b
g.w = b
h.z = b
h.y = g
h.x = d
h.w = f
h.v = e
assert b.z.w.w.v.x.z.z.z.txt == "d" | 8 | 20 | 2.5 | 0.357143 | 5 | 1.6 | 5 | 1 | 3.2 | 8 | 4 | 3 | 4 | 0.5 | 6 | 0.3 | 5 | 2 | 7 | 4.222222 | 4 | 4 | 3 | 3 |
589 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: H = None
self.y: F = None
self.x: H = None
self.w: F = None
self.v: A = None
self.u: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: D = None
self.x: F = None
self.w: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: G = None
self.x: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: E = None
self.w: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = b
a.y = b
b.z = d
b.y = g
c.z = h
c.x = h
c.y = f
c.w = f
c.v = a
c.u = g
d.z = a
e.z = g
e.y = d
e.x = f
e.w = h
f.z = a
f.y = g
f.x = b
g.z = a
g.y = b
g.x = e
g.w = c
h.z = c
assert g.w.z.z.v.z.z.z.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: H = None
self.y: F = None
self.x: H = None
self.w: F = None
self.v: A = None
self.u: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: D = None
self.x: F = None
self.w: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: G = None
self.x: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: E = None
self.w: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = H("h")
a.z = b
a.y = b
b.z = d
b.y = g
c.z = h
c.x = h
c.y = f
c.w = f
c.v = a
c.u = g
d.z = a
e.z = g
e.y = d
e.x = f
e.w = h
f.z = a
f.y = g
f.x = b
g.z = a
g.y = b
g.x = e
g.w = c
h.z = c
assert g.w.z.z.v.z.z.z.txt == "a" | 8 | 20 | 2.5 | 0.357143 | 8 | 1 | 6 | 1 | 2.875 | 7 | 2 | 1 | 6 | 0.75 | 7 | 0.35 | 2 | 2 | 3 | 2.5 | 3 | 5 | 3 | 2 |
590 | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: F = None
self.w: F = None
self.v: G = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: G = None
self.x: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.x: B = None
self.w: E = None
self.v: D = None
self.u: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = E("h")
a.z = c
b.z = h
b.y = g
b.x = d
c.z = f
c.y = g
c.x = d
d.z = h
d.y = e
d.x = f
d.w = f
d.v = g
d.u = c
e.z = g
f.z = c
f.y = g
f.x = b
g.z = f
g.y = b
g.x = b
g.u = b
g.w = h
g.v = d
h.z = g
assert d.z.z.z.x.x.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: F = None
self.w: F = None
self.v: G = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: G = None
self.x: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.x: B = None
self.w: E = None
self.v: D = None
self.u: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = E("h")
a.z = c
b.z = h
b.y = g
b.x = d
c.z = f
c.y = g
c.x = d
d.z = h
d.y = e
d.x = f
d.w = f
d.v = g
d.u = c
e.z = g
f.z = c
f.y = g
f.x = b
g.z = f
g.y = b
g.x = b
g.u = b
g.w = h
g.v = d
h.z = g
assert d.z.z.z.x.x.z.txt == "h" | 8 | 21 | 2.625 | 0.375 | 7 | 1.142857 | 6 | 1 | 3.285714 | 6 | 2 | 2 | 5 | 0.625 | 5 | 0.238095 | 2 | 5 | 5 | 5 | 2 | 4 | 3 | 1 |
591 | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: A = None
self.w: G = None
self.v: C = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: A = None
self.w: D = None
self.v: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: G = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: C = None
self.w: A = None
self.v: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = G("h")
a.z = f
a.y = f
a.x = g
b.z = e
b.y = h
b.x = a
b.w = g
b.v = c
b.u = f
c.z = b
c.y = e
c.x = a
c.w = d
c.v = d
d.z = a
e.z = h
e.y = h
e.x = f
f.z = b
f.y = a
f.w = a
f.v = a
f.x = c
g.z = e
g.y = d
h.z = e
h.y = d
assert a.y.x.y.x.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: A = None
self.w: G = None
self.v: C = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: A = None
self.w: D = None
self.v: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: G = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: C = None
self.w: A = None
self.v: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = G("h")
a.z = f
a.y = f
a.x = g
b.z = e
b.y = h
b.x = a
b.w = g
b.v = c
b.u = f
c.z = b
c.y = e
c.x = a
c.w = d
c.v = d
d.z = a
e.z = h
e.y = h
e.x = f
f.z = b
f.y = a
f.w = a
f.v = a
f.x = c
g.z = e
g.y = d
h.z = e
h.y = d
assert a.y.x.y.x.txt == "f" | 8 | 22 | 2.75 | 0.392857 | 7 | 1.142857 | 6 | 1 | 3.571429 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.181818 | 1 | 3 | 3 | 3 | 2 | 2 | 1 | 1 |
592 | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: A = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: E = None
self.w: B = None
self.v: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = E("f")
g = D("g")
h = D("h")
a.z = d
b.z = a
c.z = a
c.x = a
c.y = b
c.w = b
d.z = c
d.y = a
d.x = a
e.z = b
e.w = b
e.y = c
e.v = c
e.x = f
f.z = b
f.w = b
f.y = c
f.v = c
f.x = e
g.z = c
g.y = a
g.x = a
h.z = c
h.y = a
h.x = a
assert c.y.z.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: A = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: E = None
self.w: B = None
self.v: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = E("f")
g = D("g")
h = D("h")
a.z = d
b.z = a
c.z = a
c.x = a
c.y = b
c.w = b
d.z = c
d.y = a
d.x = a
e.z = b
e.w = b
e.y = c
e.v = c
e.x = f
f.z = b
f.w = b
f.y = c
f.v = c
f.x = e
g.z = c
g.y = a
g.x = a
h.z = c
h.y = a
h.x = a
assert c.y.z.z.txt == "d" | 8 | 16 | 2 | 0.285714 | 5 | 1.6 | 5 | 1 | 2.8 | 3 | 1 | 1 | 4 | 0.5 | 3 | 0.1875 | 0 | null | null | null | 2 | 2 | 2 | 1 |
593 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = A("d")
e = C("e")
f = C("f")
g = C("g")
h = A("h")
a.z = b
a.y = h
b.z = h
b.y = a
c.z = a
d.z = b
d.y = a
e.z = a
f.z = a
g.z = a
h.z = b
h.y = d
assert g.z.z.z.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = A("d")
e = C("e")
f = C("f")
g = C("g")
h = A("h")
a.z = b
a.y = h
b.z = h
b.y = a
c.z = a
d.z = b
d.y = a
e.z = a
f.z = a
g.z = a
h.z = b
h.y = d
assert g.z.z.z.y.txt == "d" | 8 | 12 | 1.5 | 0.214286 | 3 | 2.666667 | 2 | 1 | 1.666667 | 4 | 1 | 1 | 5 | 0.625 | 4 | 0.333333 | 0 | null | null | null | 2 | 3 | 3 | 1 |
594 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = B("d")
e = C("e")
f = A("f")
g = A("g")
h = C("h")
a.z = f
b.z = d
b.y = h
c.z = b
d.z = b
d.y = e
e.z = b
f.z = g
g.z = a
h.z = b
assert a.z.z.z.z.z.z.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = B("d")
e = C("e")
f = A("f")
g = A("g")
h = C("h")
a.z = f
b.z = d
b.y = h
c.z = b
d.z = b
d.y = e
e.z = b
f.z = g
g.z = a
h.z = b
assert a.z.z.z.z.z.z.z.txt == "f" | 8 | 10 | 1.25 | 0.178571 | 3 | 2.666667 | 2 | 1 | 1.333333 | 7 | 3 | 3 | 3 | 0.375 | 3 | 0.3 | 5 | 3 | 6 | 3.857143 | 1 | 7 | 7 | 1 |
595 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: D = None
self.w: C = None
self.v: A = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: F = None
self.w: D = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.x: E = None
self.w: E = None
self.v: A = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = A("g")
h = B("h")
a.z = c
a.w = c
a.y = e
a.x = d
a.v = g
a.u = f
b.z = h
b.y = c
b.x = f
b.w = d
b.v = e
c.z = e
d.z = e
d.x = e
d.w = e
d.y = f
d.v = g
d.u = c
e.z = f
e.y = b
f.z = e
g.z = c
g.w = c
g.y = e
g.x = d
g.v = a
g.u = f
h.z = b
h.y = c
h.x = f
h.w = d
h.v = e
assert b.z.v.y.x.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: D = None
self.w: C = None
self.v: A = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: F = None
self.w: D = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.x: E = None
self.w: E = None
self.v: A = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = A("g")
h = B("h")
a.z = c
a.w = c
a.y = e
a.x = d
a.v = g
a.u = f
b.z = h
b.y = c
b.x = f
b.w = d
b.v = e
c.z = e
d.z = e
d.x = e
d.w = e
d.y = f
d.v = g
d.u = c
e.z = f
e.y = b
f.z = e
g.z = c
g.w = c
g.y = e
g.x = d
g.v = a
g.u = f
h.z = b
h.y = c
h.x = f
h.w = d
h.v = e
assert b.z.v.y.x.txt == "f" | 8 | 28 | 3.5 | 0.5 | 6 | 1.333333 | 6 | 1 | 3.5 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.142857 | 1 | 3 | 3 | 3 | 4 | 1 | 1 | 2 |
596 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = A("d")
e = B("e")
f = C("f")
g = A("g")
h = B("h")
a.z = f
a.y = g
a.x = c
b.z = c
b.y = g
c.z = f
c.y = b
d.z = c
d.y = a
d.x = f
e.z = f
e.y = a
f.z = c
f.y = h
g.z = c
g.x = c
g.y = d
h.z = f
h.y = g
assert c.z.y.y.y.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = A("d")
e = B("e")
f = C("f")
g = A("g")
h = B("h")
a.z = f
a.y = g
a.x = c
b.z = c
b.y = g
c.z = f
c.y = b
d.z = c
d.y = a
d.x = f
e.z = f
e.y = a
f.z = c
f.y = h
g.z = c
g.x = c
g.y = d
h.z = f
h.y = g
assert c.z.y.y.y.y.txt == "a" | 8 | 18 | 2.25 | 0.321429 | 3 | 2.666667 | 3 | 2 | 2.333333 | 5 | 1 | 1 | 6 | 0.75 | 5 | 0.277778 | 0 | null | null | null | 2 | 4 | 4 | 1 |
597 | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: B = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: D = None
self.w: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = A("g")
h = D("h")
a.z = f
a.y = e
a.x = b
b.z = e
b.y = f
c.z = h
d.z = e
d.y = h
d.x = b
d.w = c
e.z = f
f.z = e
f.y = c
f.x = h
f.w = d
g.z = f
g.y = e
g.x = b
h.z = e
h.y = d
h.x = b
h.w = c
assert b.y.w.z.z.z.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: B = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: D = None
self.w: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = A("g")
h = D("h")
a.z = f
a.y = e
a.x = b
b.z = e
b.y = f
c.z = h
d.z = e
d.y = h
d.x = b
d.w = c
e.z = f
f.z = e
f.y = c
f.x = h
f.w = d
g.z = f
g.y = e
g.x = b
h.z = e
h.y = d
h.x = b
h.w = c
assert b.y.w.z.z.z.txt == "e" | 8 | 22 | 2.75 | 0.392857 | 6 | 1.333333 | 4 | 1 | 2.5 | 5 | 2 | 1 | 4 | 0.5 | 5 | 0.227273 | 2 | 2 | 3 | 2.5 | 3 | 3 | 3 | 2 |
598 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = A("d")
e = B("e")
f = C("f")
g = A("g")
h = A("h")
a.z = f
a.y = e
b.z = e
b.y = c
c.z = d
c.x = d
c.y = f
d.z = c
d.y = e
e.z = b
e.y = f
f.z = d
f.y = c
f.x = g
g.z = f
g.y = e
h.z = c
h.y = b
assert b.y.y.x.y.z.z.y.x.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = A("d")
e = B("e")
f = C("f")
g = A("g")
h = A("h")
a.z = f
a.y = e
b.z = e
b.y = c
c.z = d
c.x = d
c.y = f
d.z = c
d.y = e
e.z = b
e.y = f
f.z = d
f.y = c
f.x = g
g.z = f
g.y = e
h.z = c
h.y = b
assert b.y.y.x.y.z.z.y.x.txt == "g" | 8 | 17 | 2.125 | 0.303571 | 3 | 2.666667 | 3 | 2 | 2.333333 | 8 | 2 | 2 | 5 | 0.625 | 7 | 0.411765 | 4 | 2 | 5 | 4.25 | 3 | 4 | 2 | 2 |
599 | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.x: B = None
self.w: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: G = None
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: B = None
self.w: G = None
self.v: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = B("h")
a.z = c
b.z = g
b.y = c
c.z = b
c.x = b
c.y = f
c.w = g
d.z = f
d.y = e
d.x = g
d.w = g
e.z = f
e.y = f
f.z = a
f.y = d
f.x = h
f.w = g
f.v = g
g.z = h
g.y = b
h.z = g
h.y = c
assert f.z.z.z.z.y.y.z.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.x: B = None
self.w: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: G = None
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: B = None
self.w: G = None
self.v: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = F("f")
g = G("g")
h = B("h")
a.z = c
b.z = g
b.y = c
c.z = b
c.x = b
c.y = f
c.w = g
d.z = f
d.y = e
d.x = g
d.w = g
e.z = f
e.y = f
f.z = a
f.y = d
f.x = h
f.w = g
f.v = g
g.z = h
g.y = b
h.z = g
h.y = c
assert f.z.z.z.z.y.y.z.z.txt == "g" | 8 | 18 | 2.25 | 0.321429 | 7 | 1.142857 | 5 | 1 | 2.857143 | 8 | 3 | 2 | 5 | 0.625 | 6 | 0.333333 | 4 | 2 | 4 | 3.2 | 2 | 6 | 4 | 2 |