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
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
600 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: C = None
self.w: 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: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = B("e")
f = A("f")
g = B("g")
h = B("h")
i = D("i")
a.z = i
a.y = c
a.x = c
a.w = h
b.z = f
c.z = i
c.y = a
d.z = h
d.y = i
e.z = a
f.z = d
f.y = c
f.x = c
f.w = h
g.z = f
h.z = f
i.z = g
i.y = d
assert a.z.z.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: C = None
self.w: 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: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = B("e")
f = A("f")
g = B("g")
h = B("h")
i = D("i")
a.z = i
a.y = c
a.x = c
a.w = h
b.z = f
c.z = i
c.y = a
d.z = h
d.y = i
e.z = a
f.z = d
f.y = c
f.x = c
f.w = h
g.z = f
h.z = f
i.z = g
i.y = d
assert a.z.z.z.txt == "f" | 9 | 16 | 1.777778 | 0.222222 | 4 | 2.25 | 4 | 1 | 2.25 | 3 | 1 | 1 | 4 | 0.444444 | 3 | 0.1875 | 0 | null | null | null | 1 | 3 | 3 | 1 |
601 | class A:
def __init__(self, txt: str):
self.z: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: I = None
self.w: C = None
self.v: C = None
self.u: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: H = None
self.x: B = None
self.w: I = None
self.v: B = None
self.u: E = None
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: G = None
self.x: I = None
self.w: C = None
self.v: G = None
self.u: E = 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: B = None
self.v: H = None
self.u: I = None
self.t: C = None
self.s: F = None
self.r: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: B = None
self.x: B = None
self.w: G = None
self.v: H = None
self.u: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: A = None
self.w: F = None
self.v: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: E = None
self.y: H = 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")
i = I("i")
a.z = i
b.z = c
b.w = c
b.v = c
b.y = e
b.x = i
b.u = h
c.z = a
c.y = h
c.x = b
c.v = b
c.t = b
c.w = i
c.u = e
d.z = b
d.y = g
d.v = g
d.x = i
d.w = c
d.u = e
e.z = g
e.r = g
e.y = f
e.s = f
e.x = c
e.t = c
e.w = b
e.v = h
e.u = i
f.z = h
f.v = h
f.y = b
f.x = b
f.w = g
f.u = a
g.z = c
g.y = a
g.x = h
h.z = a
h.x = a
h.v = a
h.y = e
h.w = f
i.z = e
i.y = h
assert b.u.y.w.w.x.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: I = None
self.w: C = None
self.v: C = None
self.u: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: H = None
self.x: B = None
self.w: I = None
self.v: B = None
self.u: E = None
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: G = None
self.x: I = None
self.w: C = None
self.v: G = None
self.u: E = 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: B = None
self.v: H = None
self.u: I = None
self.t: C = None
self.s: F = None
self.r: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: B = None
self.x: B = None
self.w: G = None
self.v: H = None
self.u: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: A = None
self.w: F = None
self.v: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: E = None
self.y: H = 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")
i = I("i")
a.z = i
b.z = c
b.w = c
b.v = c
b.y = e
b.x = i
b.u = h
c.z = a
c.y = h
c.x = b
c.v = b
c.t = b
c.w = i
c.u = e
d.z = b
d.y = g
d.v = g
d.x = i
d.w = c
d.u = e
e.z = g
e.r = g
e.y = f
e.s = f
e.x = c
e.t = c
e.w = b
e.v = h
e.u = i
f.z = h
f.v = h
f.y = b
f.x = b
f.w = g
f.u = a
g.z = c
g.y = a
g.x = h
h.z = a
h.x = a
h.v = a
h.y = e
h.w = f
i.z = e
i.y = h
assert b.u.y.w.w.x.z.txt == "c" | 9 | 33 | 3.666667 | 0.458333 | 9 | 1 | 9 | 1 | 5 | 6 | 3 | 1 | 4 | 0.444444 | 6 | 0.181818 | 3 | 2 | 5 | 3 | 5 | 2 | 2 | 3 |
602 | 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.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: A = None
self.w: C = 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 = C("f")
g = A("g")
h = C("h")
i = D("i")
a.z = d
b.z = f
b.y = e
c.z = b
c.y = b
c.x = g
c.w = h
d.z = i
e.z = f
e.y = b
f.z = b
f.y = e
f.x = g
f.w = c
g.z = i
h.z = b
h.y = b
h.x = a
h.w = c
i.z = d
assert e.y.z.x.z.z.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: C = None
self.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: A = None
self.w: C = 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 = C("f")
g = A("g")
h = C("h")
i = D("i")
a.z = d
b.z = f
b.y = e
c.z = b
c.y = b
c.x = g
c.w = h
d.z = i
e.z = f
e.y = b
f.z = b
f.y = e
f.x = g
f.w = c
g.z = i
h.z = b
h.y = b
h.x = a
h.w = c
i.z = d
assert e.y.z.x.z.z.z.z.txt == "d" | 9 | 18 | 2 | 0.25 | 4 | 2.25 | 4 | 1 | 2 | 7 | 2 | 2 | 6 | 0.666667 | 6 | 0.333333 | 2 | 2 | 2 | 2 | 3 | 5 | 4 | 1 |
603 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: B = None
self.w: E = 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: B = None
self.x: A = None
self.w: A = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = A("f")
g = D("g")
h = A("h")
i = E("i")
a.z = f
a.y = h
a.x = b
a.w = i
b.z = c
b.y = c
c.z = e
c.y = b
c.x = f
c.w = f
c.v = f
d.z = g
d.x = g
d.y = e
e.z = g
e.y = c
f.z = a
f.y = a
f.x = b
f.w = i
g.z = d
g.x = d
g.y = i
h.z = a
h.y = a
h.x = b
h.w = e
i.z = d
i.y = c
assert h.z.x.z.y.z.y.y.z.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: B = None
self.w: E = 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: B = None
self.x: A = None
self.w: A = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = A("f")
g = D("g")
h = A("h")
i = E("i")
a.z = f
a.y = h
a.x = b
a.w = i
b.z = c
b.y = c
c.z = e
c.y = b
c.x = f
c.w = f
c.v = f
d.z = g
d.x = g
d.y = e
e.z = g
e.y = c
f.z = a
f.y = a
f.x = b
f.w = i
g.z = d
g.x = d
g.y = i
h.z = a
h.y = a
h.x = b
h.w = e
i.z = d
i.y = c
assert h.z.x.z.y.z.y.y.z.txt == "e" | 9 | 22 | 2.444444 | 0.305556 | 5 | 1.8 | 5 | 2 | 3.2 | 8 | 3 | 2 | 5 | 0.555556 | 6 | 0.272727 | 4 | 2 | 4 | 2.666667 | 3 | 4 | 2 | 2 |
604 | 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: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = 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 = D("f")
g = A("g")
h = B("h")
i = B("i")
a.z = c
b.z = d
b.y = h
c.z = i
c.y = f
d.z = c
e.z = d
e.y = h
f.z = c
g.z = c
h.z = f
h.y = b
i.z = d
i.y = e
assert i.y.y.z.z.z.y.z.z.z.txt == " | i" | 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: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = 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 = D("f")
g = A("g")
h = B("h")
i = B("i")
a.z = c
b.z = d
b.y = h
c.z = i
c.y = f
d.z = c
e.z = d
e.y = h
f.z = c
g.z = c
h.z = f
h.y = b
i.z = d
i.y = e
assert i.y.y.z.z.z.y.z.z.z.txt == "i" | 9 | 14 | 1.555556 | 0.194444 | 4 | 2.25 | 2 | 1 | 1.5 | 9 | 3 | 2 | 6 | 0.666667 | 7 | 0.5 | 4 | 4 | 9 | 5.4 | 2 | 6 | 3 | 2 |
605 | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.x: D = None
self.w: D = None
self.v: E = None
self.u: G = None
self.t: I = 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: E = None
self.x: A = None
self.w: F = None
self.v: 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: C = None
self.y: H = None
self.x: I = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: G = None
self.x: I = None
self.w: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: I = None
self.y: E = None
self.x: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: B = None
self.w: E = None
self.v: G = 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 = H("h")
i = I("i")
a.z = f
a.y = b
a.x = d
a.w = d
a.v = e
a.u = g
a.t = i
b.z = a
c.z = b
c.y = e
c.x = a
c.w = f
c.v = f
d.z = f
e.z = c
e.y = h
e.x = i
e.w = b
f.z = c
f.y = g
f.x = i
f.w = d
g.z = e
g.y = a
g.x = b
h.z = i
h.x = i
h.y = e
i.z = e
i.w = e
i.y = g
i.v = g
i.x = b
i.u = b
assert a.z.z.x.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.x: D = None
self.w: D = None
self.v: E = None
self.u: G = None
self.t: I = 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: E = None
self.x: A = None
self.w: F = None
self.v: 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: C = None
self.y: H = None
self.x: I = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: G = None
self.x: I = None
self.w: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: I = None
self.y: E = None
self.x: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: B = None
self.w: E = None
self.v: G = 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 = H("h")
i = I("i")
a.z = f
a.y = b
a.x = d
a.w = d
a.v = e
a.u = g
a.t = i
b.z = a
c.z = b
c.y = e
c.x = a
c.w = f
c.v = f
d.z = f
e.z = c
e.y = h
e.x = i
e.w = b
f.z = c
f.y = g
f.x = i
f.w = d
g.z = e
g.y = a
g.x = b
h.z = i
h.x = i
h.y = e
i.z = e
i.w = e
i.y = g
i.v = g
i.x = b
i.u = b
assert a.z.z.x.txt == "a" | 9 | 28 | 3.111111 | 0.388889 | 9 | 1 | 7 | 1 | 3.777778 | 3 | 2 | 1 | 3 | 0.333333 | 3 | 0.107143 | 1 | 3 | 3 | 3 | 2 | 2 | 2 | 1 |
606 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: 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: A = None
self.y: A = None
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = A("d")
e = B("e")
f = A("f")
g = A("g")
h = A("h")
i = A("i")
a.z = b
a.x = b
a.y = c
b.z = c
c.z = h
c.y = g
c.x = b
d.z = e
d.x = e
d.y = c
e.z = c
f.z = e
f.y = c
f.x = b
g.z = b
g.y = c
g.x = e
h.z = b
h.x = b
h.y = c
i.z = e
i.y = c
i.x = b
assert b.z.z.z.z.x.z.x.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: 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: A = None
self.y: A = None
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = A("d")
e = B("e")
f = A("f")
g = A("g")
h = A("h")
i = A("i")
a.z = b
a.x = b
a.y = c
b.z = c
c.z = h
c.y = g
c.x = b
d.z = e
d.x = e
d.y = c
e.z = c
f.z = e
f.y = c
f.x = b
g.z = b
g.y = c
g.x = e
h.z = b
h.x = b
h.y = c
i.z = e
i.y = c
i.x = b
assert b.z.z.z.z.x.z.x.z.txt == "c" | 9 | 20 | 2.222222 | 0.277778 | 3 | 3 | 3 | 1 | 2.333333 | 8 | 4 | 4 | 3 | 0.333333 | 4 | 0.2 | 6 | 2 | 7 | 3.833333 | 2 | 6 | 4 | 2 |
607 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: G = None
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: C = None
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.x: D = None
self.w: E = None
self.v: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = 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 = D("h")
i = E("i")
a.z = c
a.y = b
a.x = e
b.z = c
b.y = g
b.x = i
c.z = f
c.y = f
d.z = c
d.x = c
d.y = h
d.w = f
e.z = b
e.y = f
e.x = d
e.w = i
e.v = c
f.z = c
f.y = h
f.x = e
g.z = f
g.y = d
h.z = c
h.x = c
h.y = d
h.w = f
i.z = b
i.y = f
i.x = d
i.w = e
i.v = c
assert e.y.x.z.x.v.y.x.v.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: G = None
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: C = None
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.x: D = None
self.w: E = None
self.v: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = 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 = D("h")
i = E("i")
a.z = c
a.y = b
a.x = e
b.z = c
b.y = g
b.x = i
c.z = f
c.y = f
d.z = c
d.x = c
d.y = h
d.w = f
e.z = b
e.y = f
e.x = d
e.w = i
e.v = c
f.z = c
f.y = h
f.x = e
g.z = f
g.y = d
h.z = c
h.x = c
h.y = d
h.w = f
i.z = b
i.y = f
i.x = d
i.w = e
i.v = c
assert e.y.x.z.x.v.y.x.v.txt == "c" | 9 | 28 | 3.111111 | 0.388889 | 7 | 1.285714 | 5 | 2 | 3.142857 | 8 | 3 | 2 | 5 | 0.555556 | 7 | 0.25 | 4 | 2 | 7 | 4.4 | 4 | 3 | 1 | 3 |
608 | class A:
def __init__(self, txt: str):
self.z: E = 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: B = None
self.y: G = None
self.x: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: E = None
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: D = None
self.w: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: D = None
self.w: C = None
self.v: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: E = None
self.w: 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")
i = C("i")
a.z = e
b.z = f
c.z = b
c.y = g
c.x = h
d.z = a
d.y = e
d.x = e
d.w = f
e.z = i
e.y = a
e.x = d
e.w = c
f.z = e
f.y = d
f.x = d
f.v = d
f.w = i
g.z = i
h.z = i
h.y = e
h.x = e
h.w = a
i.z = b
i.y = g
i.x = h
assert g.z.y.z.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: E = 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: B = None
self.y: G = None
self.x: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: E = None
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: D = None
self.w: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: D = None
self.w: C = None
self.v: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: E = None
self.w: 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")
i = C("i")
a.z = e
b.z = f
c.z = b
c.y = g
c.x = h
d.z = a
d.y = e
d.x = e
d.w = f
e.z = i
e.y = a
e.x = d
e.w = c
f.z = e
f.y = d
f.x = d
f.v = d
f.w = i
g.z = i
h.z = i
h.y = e
h.x = e
h.w = a
i.z = b
i.y = g
i.x = h
assert g.z.y.z.txt == "i" | 9 | 22 | 2.444444 | 0.305556 | 8 | 1.125 | 5 | 1 | 2.875 | 3 | 2 | 2 | 2 | 0.222222 | 2 | 0.090909 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
609 | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.x: D = None
self.w: B = 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.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: F = None
self.w: E = None
self.v: F = 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: B = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: D = 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 = A("h")
i = F("i")
a.z = i
a.y = b
a.w = b
a.x = d
b.z = f
c.z = e
d.z = e
d.w = e
d.y = a
d.x = f
d.v = i
e.z = c
f.z = b
f.y = h
g.z = i
g.y = d
g.x = f
h.z = f
h.y = b
h.w = b
h.x = d
i.z = b
i.y = a
assert h.x.y.w.z.y.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.x: D = None
self.w: B = 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.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: F = None
self.w: E = None
self.v: F = 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: B = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: D = 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 = A("h")
i = F("i")
a.z = i
a.y = b
a.w = b
a.x = d
b.z = f
c.z = e
d.z = e
d.w = e
d.y = a
d.x = f
d.v = i
e.z = c
f.z = b
f.y = h
g.z = i
g.y = d
g.x = f
h.z = f
h.y = b
h.w = b
h.x = d
i.z = b
i.y = a
assert h.x.y.w.z.y.txt == "h" | 9 | 20 | 2.222222 | 0.277778 | 7 | 1.285714 | 5 | 1 | 2.428571 | 5 | 2 | 1 | 5 | 0.555556 | 5 | 0.25 | 1 | 5 | 5 | 5 | 4 | 2 | 1 | 1 |
610 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: B = 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: A = None
self.y: B = None
self.x: C = 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")
i = C("i")
a.z = e
a.y = e
a.x = g
b.z = c
c.z = a
c.y = b
c.x = g
d.z = h
d.y = b
d.x = c
e.z = d
f.z = b
f.y = e
f.x = i
g.z = f
g.y = e
g.x = i
h.z = e
h.y = b
h.x = c
i.z = h
i.y = b
i.x = g
assert b.z.z.z.z.z.z.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: B = 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: A = None
self.y: B = None
self.x: C = 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")
i = C("i")
a.z = e
a.y = e
a.x = g
b.z = c
c.z = a
c.y = b
c.x = g
d.z = h
d.y = b
d.x = c
e.z = d
f.z = b
f.y = e
f.x = i
g.z = f
g.y = e
g.x = i
h.z = e
h.y = b
h.x = c
i.z = h
i.y = b
i.x = g
assert b.z.z.z.z.z.z.z.txt == "d" | 9 | 22 | 2.444444 | 0.305556 | 3 | 3 | 3 | 1 | 2.333333 | 7 | 2 | 2 | 6 | 0.666667 | 6 | 0.272727 | 2 | 3 | 3 | 3 | 1 | 7 | 7 | 1 |
611 | 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: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = 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: A = None
self.x: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.y: C = 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 = E("e")
f = F("f")
g = G("g")
h = E("h")
i = E("i")
a.z = f
a.y = h
b.z = g
c.z = i
c.y = a
d.z = g
e.z = c
f.z = d
f.y = a
f.x = b
g.z = e
g.y = c
g.x = a
g.w = b
h.z = c
i.z = c
assert a.y.z.z.z.txt == " | c" | 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: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = 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: A = None
self.x: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.y: C = 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 = E("e")
f = F("f")
g = G("g")
h = E("h")
i = E("i")
a.z = f
a.y = h
b.z = g
c.z = i
c.y = a
d.z = g
e.z = c
f.z = d
f.y = a
f.x = b
g.z = e
g.y = c
g.x = a
g.w = b
h.z = c
i.z = c
assert a.y.z.z.z.txt == "c" | 9 | 16 | 1.777778 | 0.222222 | 7 | 1.285714 | 4 | 1 | 2 | 4 | 2 | 1 | 4 | 0.444444 | 4 | 0.25 | 1 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
612 | 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: 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.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: C = None
self.w: B = None
self.v: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = B("f")
g = B("g")
h = E("h")
i = A("i")
a.z = d
a.y = i
b.z = i
b.y = c
c.z = d
d.z = c
d.y = f
e.z = d
e.v = d
e.y = i
e.x = c
e.w = b
f.z = a
f.y = c
g.z = i
g.y = c
h.z = d
h.v = d
h.y = i
h.x = c
h.w = f
i.z = d
i.y = a
assert e.x.z.y.y.z.y.z.y.z.txt == " | d" | 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: 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.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: C = None
self.w: B = None
self.v: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = B("f")
g = B("g")
h = E("h")
i = A("i")
a.z = d
a.y = i
b.z = i
b.y = c
c.z = d
d.z = c
d.y = f
e.z = d
e.v = d
e.y = i
e.x = c
e.w = b
f.z = a
f.y = c
g.z = i
g.y = c
h.z = d
h.v = d
h.y = i
h.x = c
h.w = f
i.z = d
i.y = a
assert e.x.z.y.y.z.y.z.y.z.txt == "d" | 9 | 21 | 2.333333 | 0.291667 | 5 | 1.8 | 5 | 1 | 2.4 | 9 | 3 | 2 | 6 | 0.666667 | 7 | 0.333333 | 4 | 3 | 7 | 4 | 3 | 4 | 2 | 2 |
613 | class A:
def __init__(self, txt: str):
self.z: G = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: G = None
self.w: F = None
self.v: E = None
self.u: D = None
self.t: G = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.y: H = None
self.x: F = None
self.w: H = None
self.v: E = None
self.u: E = None
self.t: H = None
self.s: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.y: H = None
self.x: G = None
self.w: F = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.x: C = None
self.w: G = None
self.v: D = 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: H = None
self.y: F = None
self.x: C = None
self.w: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: F = 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 = H("h")
i = C("i")
a.z = g
a.y = e
b.z = d
b.u = d
b.y = a
b.x = g
b.t = g
b.w = f
b.v = e
b.s = i
c.z = g
c.y = h
c.w = h
c.t = h
c.x = f
c.s = f
c.v = e
c.u = e
d.z = g
d.x = g
d.y = h
d.w = f
d.v = e
e.z = g
e.w = g
e.y = a
e.x = i
e.v = d
f.z = b
g.z = h
g.y = f
g.x = c
g.w = e
h.z = f
h.y = c
i.z = g
i.y = h
i.w = h
i.t = h
i.x = f
i.s = f
i.v = e
i.u = e
assert g.z.y.x.z.u.x.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: G = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: G = None
self.w: F = None
self.v: E = None
self.u: D = None
self.t: G = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.y: H = None
self.x: F = None
self.w: H = None
self.v: E = None
self.u: E = None
self.t: H = None
self.s: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.y: H = None
self.x: G = None
self.w: F = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.x: C = None
self.w: G = None
self.v: D = 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: H = None
self.y: F = None
self.x: C = None
self.w: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: F = 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 = H("h")
i = C("i")
a.z = g
a.y = e
b.z = d
b.u = d
b.y = a
b.x = g
b.t = g
b.w = f
b.v = e
b.s = i
c.z = g
c.y = h
c.w = h
c.t = h
c.x = f
c.s = f
c.v = e
c.u = e
d.z = g
d.x = g
d.y = h
d.w = f
d.v = e
e.z = g
e.w = g
e.y = a
e.x = i
e.v = d
f.z = b
g.z = h
g.y = f
g.x = c
g.w = e
h.z = f
h.y = c
i.z = g
i.y = h
i.w = h
i.t = h
i.x = f
i.s = f
i.v = e
i.u = e
assert g.z.y.x.z.u.x.z.txt == "h" | 9 | 31 | 3.444444 | 0.430556 | 8 | 1.125 | 8 | 1 | 4.375 | 7 | 2 | 2 | 6 | 0.666667 | 6 | 0.193548 | 2 | 6 | 6 | 6 | 4 | 3 | 1 | 1 |
614 | 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.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = A("e")
f = A("f")
g = C("g")
h = C("h")
i = B("i")
a.z = g
b.z = d
c.z = d
d.z = c
e.z = c
f.z = d
g.z = h
h.z = c
i.z = d
assert f.z.z.z.z.z.z.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: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = A("e")
f = A("f")
g = C("g")
h = C("h")
i = B("i")
a.z = g
b.z = d
c.z = d
d.z = c
e.z = c
f.z = d
g.z = h
h.z = c
i.z = d
assert f.z.z.z.z.z.z.z.z.z.txt == "d" | 9 | 9 | 1 | 0.125 | 3 | 3 | 1 | 1 | 1 | 9 | 5 | 4 | 3 | 0.333333 | 3 | 0.333333 | 7 | 2 | 8 | 3.75 | 1 | 9 | 9 | 1 |
615 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: B = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: 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: E = None
self.y: B = None
self.x: A = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = D("f")
g = E("g")
h = A("h")
i = C("i")
a.z = i
a.y = b
a.x = b
a.w = f
b.z = f
b.y = g
b.x = c
c.z = h
d.z = e
d.y = b
d.x = h
d.w = c
e.z = i
e.y = g
e.x = b
f.z = g
f.y = b
f.x = a
f.w = c
g.z = c
g.y = e
g.x = b
h.z = c
h.y = b
h.x = b
h.w = f
i.z = h
assert h.y.z.x.z.z.w.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: B = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: 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: E = None
self.y: B = None
self.x: A = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = D("f")
g = E("g")
h = A("h")
i = C("i")
a.z = i
a.y = b
a.x = b
a.w = f
b.z = f
b.y = g
b.x = c
c.z = h
d.z = e
d.y = b
d.x = h
d.w = c
e.z = i
e.y = g
e.x = b
f.z = g
f.y = b
f.x = a
f.w = c
g.z = c
g.y = e
g.x = b
h.z = c
h.y = b
h.x = b
h.w = f
i.z = h
assert h.y.z.x.z.z.w.z.txt == "g" | 9 | 25 | 2.777778 | 0.347222 | 5 | 1.8 | 4 | 1 | 3 | 7 | 2 | 1 | 6 | 0.666667 | 7 | 0.28 | 2 | 4 | 5 | 4.5 | 4 | 4 | 2 | 2 |
616 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: A = 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 = C("d")
e = C("e")
f = B("f")
g = B("g")
h = A("h")
i = A("i")
a.z = h
a.y = i
a.x = e
b.z = i
b.y = g
b.x = a
c.z = g
d.z = f
e.z = g
f.z = h
f.y = g
f.x = i
g.z = a
g.y = b
g.x = i
h.z = i
h.y = i
h.x = d
i.z = h
i.y = a
i.x = c
assert g.y.z.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: A = 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 = C("d")
e = C("e")
f = B("f")
g = B("g")
h = A("h")
i = A("i")
a.z = h
a.y = i
a.x = e
b.z = i
b.y = g
b.x = a
c.z = g
d.z = f
e.z = g
f.z = h
f.y = g
f.x = i
g.z = a
g.y = b
g.x = i
h.z = i
h.y = i
h.x = d
i.z = h
i.y = a
i.x = c
assert g.y.z.y.txt == "a" | 9 | 20 | 2.222222 | 0.277778 | 3 | 3 | 3 | 1 | 2.333333 | 3 | 1 | 1 | 4 | 0.444444 | 3 | 0.15 | 0 | null | null | null | 2 | 2 | 1 | 1 |
617 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: D = None
self.w: H = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: 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: E = None
self.y: B = None
self.x: E = None
self.w: C = None
self.v: E = None
self.u: A = None
self.t: G = None
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: B = None
self.w: G = None
self.v: F = None
self.u: F = None
self.t: B = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: A = None
self.w: F = None
self.v: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: G = None
self.w: G = None
self.v: F = None
self.u: G = None
self.t: H = None
self.s: 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")
i = H("i")
a.z = e
a.y = e
a.v = e
a.x = d
a.w = h
b.z = d
b.y = f
c.z = g
d.z = e
d.x = e
d.v = e
d.y = b
d.w = c
d.u = a
d.t = g
d.s = f
e.z = f
e.y = f
e.v = f
e.u = f
e.x = b
e.t = b
e.s = b
e.w = g
f.z = h
f.y = b
g.z = d
g.y = c
g.x = a
g.w = f
g.v = b
h.z = c
h.y = b
h.x = g
h.w = g
h.u = g
h.v = f
h.t = i
h.s = a
i.z = c
i.y = b
i.x = g
i.w = g
i.u = g
i.v = f
i.t = h
i.s = a
assert a.x.v.x.y.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: D = None
self.w: H = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: 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: E = None
self.y: B = None
self.x: E = None
self.w: C = None
self.v: E = None
self.u: A = None
self.t: G = None
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: B = None
self.w: G = None
self.v: F = None
self.u: F = None
self.t: B = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: A = None
self.w: F = None
self.v: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: G = None
self.w: G = None
self.v: F = None
self.u: G = None
self.t: H = None
self.s: 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")
i = H("i")
a.z = e
a.y = e
a.v = e
a.x = d
a.w = h
b.z = d
b.y = f
c.z = g
d.z = e
d.x = e
d.v = e
d.y = b
d.w = c
d.u = a
d.t = g
d.s = f
e.z = f
e.y = f
e.v = f
e.u = f
e.x = b
e.t = b
e.s = b
e.w = g
f.z = h
f.y = b
g.z = d
g.y = c
g.x = a
g.w = f
g.v = b
h.z = c
h.y = b
h.x = g
h.w = g
h.u = g
h.v = f
h.t = i
h.s = a
i.z = c
i.y = b
i.x = g
i.w = g
i.u = g
i.v = f
i.t = h
i.s = a
assert a.x.v.x.y.txt == "f" | 9 | 34 | 3.777778 | 0.472222 | 8 | 1.125 | 8 | 1 | 4.875 | 4 | 1 | 1 | 5 | 0.555556 | 4 | 0.117647 | 0 | null | null | null | 3 | 2 | 1 | 1 |
618 | class A:
def __init__(self, txt: str):
self.z: C = 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.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = A("e")
f = B("f")
g = B("g")
h = A("h")
i = C("i")
a.z = d
b.z = g
c.z = h
d.z = a
e.z = i
f.z = g
g.z = f
h.z = d
i.z = a
assert f.z.z.z.z.z.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: B = 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 = A("e")
f = B("f")
g = B("g")
h = A("h")
i = C("i")
a.z = d
b.z = g
c.z = h
d.z = a
e.z = i
f.z = g
g.z = f
h.z = d
i.z = a
assert f.z.z.z.z.z.z.z.txt == "g" | 9 | 9 | 1 | 0.125 | 3 | 3 | 1 | 1 | 1 | 7 | 4 | 4 | 2 | 0.222222 | 2 | 0.222222 | 6 | 2 | 6 | 3.333333 | 1 | 7 | 7 | 1 |
619 | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: C = None
self.w: F = None
self.v: 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: E = None
self.x: G = None
self.w: H = None
self.v: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: F = None
self.x: H = None
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = 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: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: D = None
self.w: B = None
self.v: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.y: D = None
self.x: D = None
self.w: F = 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")
i = D("i")
a.z = f
a.y = f
a.w = f
a.x = c
a.v = d
b.z = a
c.z = a
c.y = e
c.x = g
c.w = h
c.v = h
d.z = c
d.y = f
d.x = h
d.w = g
e.z = f
e.y = c
e.x = i
e.w = d
f.z = c
g.z = b
g.w = b
g.y = a
g.x = i
g.v = c
h.z = g
h.y = d
h.x = i
h.w = f
h.v = a
i.z = c
i.y = f
i.x = h
i.w = g
assert b.z.y.z.w.w.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: C = None
self.w: F = None
self.v: 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: E = None
self.x: G = None
self.w: H = None
self.v: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: F = None
self.x: H = None
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = 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: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: D = None
self.w: B = None
self.v: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.y: D = None
self.x: D = None
self.w: F = 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")
i = D("i")
a.z = f
a.y = f
a.w = f
a.x = c
a.v = d
b.z = a
c.z = a
c.y = e
c.x = g
c.w = h
c.v = h
d.z = c
d.y = f
d.x = h
d.w = g
e.z = f
e.y = c
e.x = i
e.w = d
f.z = c
g.z = b
g.w = b
g.y = a
g.x = i
g.v = c
h.z = g
h.y = d
h.x = i
h.w = f
h.v = a
i.z = c
i.y = f
i.x = h
i.w = g
assert b.z.y.z.w.w.txt == "f" | 9 | 30 | 3.333333 | 0.416667 | 8 | 1.125 | 5 | 1 | 3.75 | 5 | 2 | 1 | 5 | 0.555556 | 5 | 0.166667 | 1 | 3 | 3 | 3 | 3 | 2 | 2 | 1 |
620 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: D = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: A = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: A = 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: C = None
self.x: C = None
self.txt = txt
class F:
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 = A("g")
h = E("h")
i = B("i")
a.z = d
a.x = d
a.w = d
a.y = c
b.z = d
b.y = f
b.x = c
c.z = f
c.y = f
c.x = a
c.w = i
d.z = a
d.y = a
d.x = a
d.w = h
d.v = h
e.z = f
e.y = c
e.x = c
f.z = d
f.y = a
g.z = d
g.x = d
g.w = d
g.y = c
h.z = f
h.y = c
h.x = c
i.z = d
i.y = f
i.x = c
assert c.x.y.y.z.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: D = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: A = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: A = 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: C = None
self.x: C = None
self.txt = txt
class F:
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 = A("g")
h = E("h")
i = B("i")
a.z = d
a.x = d
a.w = d
a.y = c
b.z = d
b.y = f
b.x = c
c.z = f
c.y = f
c.x = a
c.w = i
d.z = a
d.y = a
d.x = a
d.w = h
d.v = h
e.z = f
e.y = c
e.x = c
f.z = d
f.y = a
g.z = d
g.x = d
g.w = d
g.y = c
h.z = f
h.y = c
h.x = c
i.z = d
i.y = f
i.x = c
assert c.x.y.y.z.y.txt == "a" | 9 | 21 | 2.333333 | 0.291667 | 6 | 1.5 | 5 | 2 | 3.5 | 5 | 2 | 1 | 4 | 0.444444 | 5 | 0.238095 | 2 | 2 | 4 | 3 | 3 | 3 | 2 | 2 |
621 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: G = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: D = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: D = None
self.x: E = None
self.w: G = None
self.v: G = None
self.u: D = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = 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 = E("h")
i = D("i")
a.z = b
a.y = h
a.x = g
a.w = i
b.z = a
b.y = c
b.x = e
c.z = a
c.y = a
c.x = a
d.z = e
d.y = b
d.x = i
d.w = a
e.z = g
e.w = g
e.v = g
e.y = i
e.u = i
e.x = h
e.t = d
f.z = c
g.z = f
h.z = g
h.w = g
h.v = g
h.y = d
h.u = d
h.t = d
h.x = e
i.z = h
i.y = b
i.x = d
i.w = a
assert b.y.x.y.w.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: G = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: D = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: D = None
self.x: E = None
self.w: G = None
self.v: G = None
self.u: D = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = 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 = E("h")
i = D("i")
a.z = b
a.y = h
a.x = g
a.w = i
b.z = a
b.y = c
b.x = e
c.z = a
c.y = a
c.x = a
d.z = e
d.y = b
d.x = i
d.w = a
e.z = g
e.w = g
e.v = g
e.y = i
e.u = i
e.x = h
e.t = d
f.z = c
g.z = f
h.z = g
h.w = g
h.v = g
h.y = d
h.u = d
h.t = d
h.x = e
i.z = h
i.y = b
i.x = d
i.w = a
assert b.y.x.y.w.txt == "g" | 9 | 25 | 2.777778 | 0.347222 | 7 | 1.285714 | 7 | 1 | 3.285714 | 4 | 1 | 1 | 5 | 0.555556 | 4 | 0.16 | 0 | null | null | null | 3 | 2 | 1 | 1 |
622 | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.x: B = None
self.w: E = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: F = 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: A = 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: C = None
self.y: A = None
self.x: A = None
self.w: A = None
self.v: C = None
self.u: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: A = None
self.w: A = 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 = F("g")
h = D("h")
i = C("i")
a.z = f
a.y = h
a.x = b
a.w = e
a.v = g
b.z = i
b.y = g
c.z = a
c.w = a
c.y = i
c.x = i
d.z = g
e.z = i
e.y = a
e.x = a
e.w = a
e.v = c
e.u = b
f.z = e
f.y = h
f.x = a
f.w = a
f.v = i
g.z = e
g.y = h
g.x = a
g.w = a
g.v = i
h.z = g
i.z = a
i.w = a
i.y = c
i.x = c
assert b.y.w.y.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.x: B = None
self.w: E = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: F = 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: A = 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: C = None
self.y: A = None
self.x: A = None
self.w: A = None
self.v: C = None
self.u: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: A = None
self.w: A = 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 = F("g")
h = D("h")
i = C("i")
a.z = f
a.y = h
a.x = b
a.w = e
a.v = g
b.z = i
b.y = g
c.z = a
c.w = a
c.y = i
c.x = i
d.z = g
e.z = i
e.y = a
e.x = a
e.w = a
e.v = c
e.u = b
f.z = e
f.y = h
f.x = a
f.w = a
f.v = i
g.z = e
g.y = h
g.x = a
g.w = a
g.v = i
h.z = g
i.z = a
i.w = a
i.y = c
i.x = c
assert b.y.w.y.txt == "h" | 9 | 25 | 2.777778 | 0.347222 | 6 | 1.5 | 6 | 1 | 3.833333 | 3 | 1 | 1 | 4 | 0.444444 | 3 | 0.12 | 0 | null | null | null | 2 | 2 | 1 | 1 |
623 | 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.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = A("d")
e = A("e")
f = B("f")
g = B("g")
h = A("h")
i = B("i")
a.z = e
b.z = a
b.y = a
c.z = h
c.y = h
d.z = a
e.z = h
f.z = a
f.y = h
g.z = d
g.y = e
h.z = d
i.z = e
i.y = e
assert b.z.z.z.z.z.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: A = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = A("d")
e = A("e")
f = B("f")
g = B("g")
h = A("h")
i = B("i")
a.z = e
b.z = a
b.y = a
c.z = h
c.y = h
d.z = a
e.z = h
f.z = a
f.y = h
g.z = d
g.y = e
h.z = d
i.z = e
i.y = e
assert b.z.z.z.z.z.z.z.z.z.txt == "a" | 9 | 11 | 1.222222 | 0.152778 | 2 | 4.5 | 2 | 1 | 1.5 | 9 | 3 | 2 | 5 | 0.555556 | 5 | 0.454545 | 5 | 4 | 8 | 4.666667 | 1 | 9 | 9 | 1 |
624 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: C = None
self.w: C = None
self.v: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: H = None
self.x: G = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: I = None
self.y: F = None
self.x: I = None
self.w: H = None
self.v: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: H = None
self.x: I = None
self.w: C = None
self.v: G = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: I = None
self.w: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: A = None
self.w: D = None
self.v: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: A = 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")
i = I("i")
a.z = b
a.y = c
a.x = c
a.w = c
a.v = i
b.z = g
c.z = f
c.y = h
c.x = g
c.w = e
d.z = i
d.x = i
d.y = f
d.w = h
d.v = g
e.z = b
e.y = f
f.z = a
f.y = h
f.x = i
f.w = c
f.v = g
f.u = e
g.z = d
g.y = c
g.x = i
g.w = b
h.z = b
h.y = d
h.w = d
h.x = a
h.v = i
i.z = a
i.y = d
assert d.x.y.x.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: C = None
self.w: C = None
self.v: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: H = None
self.x: G = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: I = None
self.y: F = None
self.x: I = None
self.w: H = None
self.v: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: H = None
self.x: I = None
self.w: C = None
self.v: G = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: I = None
self.w: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: A = None
self.w: D = None
self.v: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: A = 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")
i = I("i")
a.z = b
a.y = c
a.x = c
a.w = c
a.v = i
b.z = g
c.z = f
c.y = h
c.x = g
c.w = e
d.z = i
d.x = i
d.y = f
d.w = h
d.v = g
e.z = b
e.y = f
f.z = a
f.y = h
f.x = i
f.w = c
f.v = g
f.u = e
g.z = d
g.y = c
g.x = i
g.w = b
h.z = b
h.y = d
h.w = d
h.x = a
h.v = i
i.z = a
i.y = d
assert d.x.y.x.y.txt == "d" | 9 | 30 | 3.333333 | 0.416667 | 9 | 1 | 6 | 1 | 3.777778 | 4 | 3 | 2 | 2 | 0.222222 | 2 | 0.066667 | 3 | 2 | 4 | 2.5 | 2 | 2 | 1 | 1 |
625 | class A:
def __init__(self, txt: str):
self.z: H = None
self.y: G = None
self.x: C = None
self.w: B = None
self.v: B = None
self.u: D = None
self.t: I = None
self.s: H = None
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.x: G = None
self.w: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: H = None
self.x: B = None
self.w: A = None
self.v: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.y: F = None
self.x: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.x: H = None
self.w: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: C = None
self.x: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: C = None
self.w: D = None
self.v: D = None
self.u: B = None
self.t: A = None
self.s: E = None
self.r: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: E = 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 = E("e")
f = F("f")
g = G("g")
h = H("h")
i = I("i")
a.z = h
a.s = h
a.y = g
a.x = c
a.w = b
a.v = b
a.u = d
a.t = i
a.r = e
b.z = f
b.y = g
b.x = g
b.w = h
c.z = e
c.y = h
c.x = b
c.w = a
c.v = g
d.z = g
d.y = f
d.x = f
e.z = f
e.y = b
e.x = h
e.w = h
f.z = h
f.x = h
f.y = c
g.z = b
g.u = b
g.y = a
g.t = a
g.r = a
g.x = c
g.w = d
g.v = d
g.s = e
h.z = d
i.z = e
i.y = b
i.x = c
assert f.y.w.v.x.s.w.z.z.x.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: H = None
self.y: G = None
self.x: C = None
self.w: B = None
self.v: B = None
self.u: D = None
self.t: I = None
self.s: H = None
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.x: G = None
self.w: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: H = None
self.x: B = None
self.w: A = None
self.v: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.y: F = None
self.x: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: B = None
self.x: H = None
self.w: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: C = None
self.x: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: C = None
self.w: D = None
self.v: D = None
self.u: B = None
self.t: A = None
self.s: E = None
self.r: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: E = 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 = E("e")
f = F("f")
g = G("g")
h = H("h")
i = I("i")
a.z = h
a.s = h
a.y = g
a.x = c
a.w = b
a.v = b
a.u = d
a.t = i
a.r = e
b.z = f
b.y = g
b.x = g
b.w = h
c.z = e
c.y = h
c.x = b
c.w = a
c.v = g
d.z = g
d.y = f
d.x = f
e.z = f
e.y = b
e.x = h
e.w = h
f.z = h
f.x = h
f.y = c
g.z = b
g.u = b
g.y = a
g.t = a
g.r = a
g.x = c
g.w = d
g.v = d
g.s = e
h.z = d
i.z = e
i.y = b
i.x = c
assert f.y.w.v.x.s.w.z.z.x.txt == "c" | 9 | 31 | 3.444444 | 0.430556 | 9 | 1 | 9 | 1 | 4.555556 | 9 | 2 | 1 | 8 | 0.888889 | 9 | 0.290323 | 2 | 4 | 8 | 6 | 6 | 2 | 2 | 2 |
626 | 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: D = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = 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: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: C = 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 = E("f")
g = A("g")
h = C("h")
i = B("i")
a.z = g
b.z = d
b.y = d
b.x = h
c.z = i
c.y = d
c.w = d
c.x = a
d.z = f
e.z = b
e.w = b
e.y = h
e.x = h
f.z = i
f.w = i
f.y = h
f.x = c
g.z = a
h.z = i
h.y = d
h.w = d
h.x = a
i.z = d
i.y = d
i.x = c
assert d.z.y.z.txt == " | i" | 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: D = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = 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: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: C = 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 = E("f")
g = A("g")
h = C("h")
i = B("i")
a.z = g
b.z = d
b.y = d
b.x = h
c.z = i
c.y = d
c.w = d
c.x = a
d.z = f
e.z = b
e.w = b
e.y = h
e.x = h
f.z = i
f.w = i
f.y = h
f.x = c
g.z = a
h.z = i
h.y = d
h.w = d
h.x = a
i.z = d
i.y = d
i.x = c
assert d.z.y.z.txt == "i" | 9 | 18 | 2 | 0.25 | 5 | 1.8 | 4 | 1 | 2.6 | 3 | 1 | 1 | 4 | 0.444444 | 3 | 0.166667 | 0 | null | null | null | 2 | 2 | 1 | 1 |
627 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: E = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: D = None
self.w: B = None
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.y: E = 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: 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 = D("h")
i = B("i")
a.z = h
a.y = e
a.x = e
a.w = i
b.z = d
b.y = i
b.w = i
b.v = i
b.x = h
c.z = f
c.y = e
d.z = h
e.z = c
f.z = c
f.y = e
g.z = h
g.y = e
g.x = e
g.w = i
h.z = d
i.z = h
i.x = h
i.y = b
i.w = b
i.v = b
assert f.y.z.z.z.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: E = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: D = None
self.w: B = None
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.y: E = 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: 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 = D("h")
i = B("i")
a.z = h
a.y = e
a.x = e
a.w = i
b.z = d
b.y = i
b.w = i
b.v = i
b.x = h
c.z = f
c.y = e
d.z = h
e.z = c
f.z = c
f.y = e
g.z = h
g.y = e
g.x = e
g.w = i
h.z = d
i.z = h
i.x = h
i.y = b
i.w = b
i.v = b
assert f.y.z.z.z.y.txt == "e" | 9 | 18 | 2 | 0.25 | 5 | 1.8 | 5 | 1 | 2.6 | 5 | 2 | 1 | 3 | 0.333333 | 5 | 0.277778 | 3 | 2 | 4 | 3 | 2 | 3 | 3 | 2 |
628 | class A:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: E = None
self.w: F = None
self.v: E = None
self.u: G = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: F = None
self.w: E = None
self.v: A = None
self.u: F = None
self.t: D = 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: B = None
self.y: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: D = None
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.x: G = None
self.w: E = None
self.v: E = None
self.u: A = None
self.t: 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 = B("h")
i = G("i")
a.z = i
a.y = h
a.x = f
b.z = c
b.y = d
b.t = d
b.x = e
b.v = e
b.w = f
b.u = g
c.z = e
c.w = e
c.y = g
c.x = f
c.u = f
c.v = a
c.t = d
d.z = a
d.y = a
d.x = c
e.z = b
e.y = c
f.z = e
f.y = a
f.x = d
f.w = h
g.z = f
g.y = i
g.x = i
g.t = i
g.w = e
g.v = e
g.u = a
h.z = c
h.y = d
h.t = d
h.x = e
h.v = e
h.w = f
h.u = g
i.z = f
i.y = g
i.x = g
i.t = g
i.w = e
i.v = e
i.u = a
assert c.z.y.t.x.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.x: E = None
self.w: F = None
self.v: E = None
self.u: G = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: G = None
self.x: F = None
self.w: E = None
self.v: A = None
self.u: F = None
self.t: D = 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: B = None
self.y: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: A = None
self.x: D = None
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.x: G = None
self.w: E = None
self.v: E = None
self.u: A = None
self.t: 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 = B("h")
i = G("i")
a.z = i
a.y = h
a.x = f
b.z = c
b.y = d
b.t = d
b.x = e
b.v = e
b.w = f
b.u = g
c.z = e
c.w = e
c.y = g
c.x = f
c.u = f
c.v = a
c.t = d
d.z = a
d.y = a
d.x = c
e.z = b
e.y = c
f.z = e
f.y = a
f.x = d
f.w = h
g.z = f
g.y = i
g.x = i
g.t = i
g.w = e
g.v = e
g.u = a
h.z = c
h.y = d
h.t = d
h.x = e
h.v = e
h.w = f
h.u = g
i.z = f
i.y = g
i.x = g
i.t = g
i.w = e
i.v = e
i.u = a
assert c.z.y.t.x.txt == "c" | 9 | 34 | 3.777778 | 0.472222 | 7 | 1.285714 | 7 | 2 | 4.714286 | 4 | 3 | 1 | 3 | 0.333333 | 4 | 0.117647 | 2 | 2 | 4 | 2.666667 | 4 | 1 | 1 | 2 |
629 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: B = None
self.w: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: D = None
self.w: C = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: E = 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: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = D("f")
g = A("g")
h = D("h")
i = D("i")
a.z = c
a.y = g
a.w = g
a.x = b
a.v = b
b.z = e
b.v = e
b.y = c
b.w = c
b.x = i
c.z = f
c.y = e
d.z = e
d.y = g
e.z = a
f.z = e
f.y = a
g.z = c
g.y = a
g.w = a
g.x = b
g.v = b
h.z = e
h.y = g
i.z = e
i.y = a
assert e.z.w.w.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: B = None
self.w: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: D = None
self.w: C = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: E = 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: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = D("f")
g = A("g")
h = D("h")
i = D("i")
a.z = c
a.y = g
a.w = g
a.x = b
a.v = b
b.z = e
b.v = e
b.y = c
b.w = c
b.x = i
c.z = f
c.y = e
d.z = e
d.y = g
e.z = a
f.z = e
f.y = a
g.z = c
g.y = a
g.w = a
g.x = b
g.v = b
h.z = e
h.y = g
i.z = e
i.y = a
assert e.z.w.w.txt == "a" | 9 | 20 | 2.222222 | 0.277778 | 5 | 1.8 | 5 | 1 | 3 | 3 | 2 | 1 | 3 | 0.333333 | 3 | 0.15 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
630 | 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: 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.y: B = None
self.x: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = A("e")
f = C("f")
g = C("g")
h = A("h")
i = B("i")
a.z = h
a.y = g
a.x = i
b.z = e
b.y = h
b.x = i
c.z = i
c.y = i
c.x = f
d.z = i
d.y = b
d.x = c
e.z = h
e.y = f
e.x = i
f.z = i
f.y = i
f.x = c
g.z = b
g.y = i
g.x = d
h.z = e
h.y = d
h.x = i
i.z = a
i.y = a
i.x = b
assert c.x.z.y.z.txt == " | h" | 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: 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.y: B = None
self.x: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = A("e")
f = C("f")
g = C("g")
h = A("h")
i = B("i")
a.z = h
a.y = g
a.x = i
b.z = e
b.y = h
b.x = i
c.z = i
c.y = i
c.x = f
d.z = i
d.y = b
d.x = c
e.z = h
e.y = f
e.x = i
f.z = i
f.y = i
f.x = c
g.z = b
g.y = i
g.x = d
h.z = e
h.y = d
h.x = i
i.z = a
i.y = a
i.x = b
assert c.x.z.y.z.txt == "h" | 9 | 24 | 2.666667 | 0.333333 | 3 | 3 | 3 | 3 | 3 | 4 | 1 | 1 | 5 | 0.555556 | 4 | 0.166667 | 0 | null | null | null | 3 | 2 | 1 | 1 |
631 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: G = None
self.w: C = None
self.v: 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: F = None
self.y: B = None
self.x: A = None
self.w: C = 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: D = None
self.y: F = None
self.x: D = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: A = None
self.w: E = None
self.v: B = None
self.u: 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 = A("h")
i = C("i")
a.z = h
a.y = f
a.x = g
a.w = i
a.v = b
b.z = d
b.y = g
c.z = f
c.y = b
c.x = h
c.w = i
d.z = i
e.z = d
e.x = d
e.y = f
e.w = b
f.z = e
f.y = e
g.z = a
g.x = a
g.y = b
g.v = b
g.w = e
g.u = h
h.z = a
h.y = f
h.x = g
h.w = i
h.v = b
i.z = f
i.y = b
i.x = a
i.w = c
assert e.y.z.y.z.y.y.z.z.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: G = None
self.w: C = None
self.v: 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: F = None
self.y: B = None
self.x: A = None
self.w: C = 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: D = None
self.y: F = None
self.x: D = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: A = None
self.w: E = None
self.v: B = None
self.u: 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 = A("h")
i = C("i")
a.z = h
a.y = f
a.x = g
a.w = i
a.v = b
b.z = d
b.y = g
c.z = f
c.y = b
c.x = h
c.w = i
d.z = i
e.z = d
e.x = d
e.y = f
e.w = b
f.z = e
f.y = e
g.z = a
g.x = a
g.y = b
g.v = b
g.w = e
g.u = h
h.z = a
h.y = f
h.x = g
h.w = i
h.v = b
i.z = f
i.y = b
i.x = a
i.w = c
assert e.y.z.y.z.y.y.z.z.z.txt == "f" | 9 | 29 | 3.222222 | 0.402778 | 7 | 1.285714 | 6 | 1 | 3.428571 | 9 | 4 | 3 | 4 | 0.444444 | 6 | 0.206897 | 6 | 2 | 8 | 3.833333 | 2 | 5 | 3 | 2 |
632 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: G = None
self.x: D = None
self.w: G = None
self.v: H = None
self.u: H = None
self.t: E = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: D = None
self.x: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: H = None
self.x: D = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: A = None
self.w: A = None
self.v: H = None
self.u: C = None
self.t: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: G = None
self.w: A = None
self.v: A = None
self.u: D = None
self.t: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: A = None
self.y: H = None
self.txt = txt
class H:
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 = F("f")
g = G("g")
h = H("h")
i = F("i")
a.z = b
a.y = g
a.w = g
a.x = d
a.s = d
a.v = h
a.u = h
a.t = e
b.z = g
b.y = d
b.x = h
c.z = b
c.w = b
c.y = h
c.x = d
d.z = g
e.z = a
e.x = a
e.w = a
e.y = c
e.u = c
e.v = h
e.t = g
f.z = a
f.w = a
f.v = a
f.y = b
f.x = g
f.u = d
f.t = c
g.z = a
g.y = h
h.z = b
i.z = a
i.w = a
i.v = a
i.y = b
i.x = g
i.u = d
i.t = c
assert c.z.y.z.z.z.z.y.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: G = None
self.x: D = None
self.w: G = None
self.v: H = None
self.u: H = None
self.t: E = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: D = None
self.x: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: H = None
self.x: D = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: A = None
self.w: A = None
self.v: H = None
self.u: C = None
self.t: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: G = None
self.w: A = None
self.v: A = None
self.u: D = None
self.t: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: A = None
self.y: H = None
self.txt = txt
class H:
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 = F("f")
g = G("g")
h = H("h")
i = F("i")
a.z = b
a.y = g
a.w = g
a.x = d
a.s = d
a.v = h
a.u = h
a.t = e
b.z = g
b.y = d
b.x = h
c.z = b
c.w = b
c.y = h
c.x = d
d.z = g
e.z = a
e.x = a
e.w = a
e.y = c
e.u = c
e.v = h
e.t = g
f.z = a
f.w = a
f.v = a
f.y = b
f.x = g
f.u = d
f.t = c
g.z = a
g.y = h
h.z = b
i.z = a
i.w = a
i.v = a
i.y = b
i.x = g
i.u = d
i.t = c
assert c.z.y.z.z.z.z.y.txt == "h" | 9 | 29 | 3.222222 | 0.402778 | 8 | 1.125 | 8 | 1 | 4.125 | 7 | 2 | 1 | 6 | 0.666667 | 7 | 0.241379 | 2 | 3 | 4 | 3.5 | 2 | 5 | 4 | 2 |
633 | class A:
def __init__(self, txt: str):
self.z: I = 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: G = None
self.y: B = None
self.x: E = 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: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: C = None
self.w: G = None
self.v: E = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.x: I = None
self.w: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: D = 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")
i = I("i")
a.z = i
b.z = f
c.z = g
c.y = b
c.x = e
d.z = f
e.z = h
f.z = d
f.y = e
f.v = e
f.x = c
f.u = c
f.w = g
g.z = f
g.y = f
h.z = g
h.w = g
h.y = a
h.x = i
i.z = d
i.y = d
assert i.z.z.x.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: I = 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: G = None
self.y: B = None
self.x: E = 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: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: C = None
self.w: G = None
self.v: E = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.x: I = None
self.w: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: D = 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")
i = I("i")
a.z = i
b.z = f
c.z = g
c.y = b
c.x = e
d.z = f
e.z = h
f.z = d
f.y = e
f.v = e
f.x = c
f.u = c
f.w = g
g.z = f
g.y = f
h.z = g
h.w = g
h.y = a
h.x = i
i.z = d
i.y = d
assert i.z.z.x.z.txt == "g" | 9 | 16 | 1.777778 | 0.222222 | 9 | 1 | 6 | 1 | 2.333333 | 4 | 1 | 1 | 5 | 0.555556 | 4 | 0.25 | 0 | null | null | null | 2 | 3 | 2 | 1 |
634 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: 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: E = None
self.y: A = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: A = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = 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 = A("f")
g = E("g")
h = D("h")
i = C("i")
a.z = b
a.y = d
b.z = f
c.z = g
c.x = g
c.y = f
d.z = b
d.y = f
d.x = f
d.w = e
e.z = b
e.y = d
e.x = a
e.w = c
f.z = b
f.y = d
g.z = b
g.y = h
g.x = f
g.w = c
h.z = b
h.y = a
h.x = f
h.w = g
i.z = g
i.x = g
i.y = f
assert i.x.w.y.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: 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: E = None
self.y: A = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: A = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = 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 = A("f")
g = E("g")
h = D("h")
i = C("i")
a.z = b
a.y = d
b.z = f
c.z = g
c.x = g
c.y = f
d.z = b
d.y = f
d.x = f
d.w = e
e.z = b
e.y = d
e.x = a
e.w = c
f.z = b
f.y = d
g.z = b
g.y = h
g.x = f
g.w = c
h.z = b
h.y = a
h.x = f
h.w = g
i.z = g
i.x = g
i.y = f
assert i.x.w.y.y.txt == "d" | 9 | 24 | 2.666667 | 0.333333 | 5 | 1.8 | 4 | 1 | 2.8 | 4 | 1 | 1 | 5 | 0.555556 | 4 | 0.166667 | 0 | null | null | null | 3 | 2 | 2 | 1 |
635 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: B = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = 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: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = 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 = C("f")
g = B("g")
h = C("h")
i = A("i")
a.z = g
a.x = g
a.y = e
a.w = c
b.z = e
b.y = i
c.z = i
d.z = g
e.z = b
e.y = a
e.x = a
f.z = i
g.z = e
g.y = a
h.z = i
i.z = b
i.x = b
i.y = e
i.w = c
assert f.z.x.y.w.z.y.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: B = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = 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: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = 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 = C("f")
g = B("g")
h = C("h")
i = A("i")
a.z = g
a.x = g
a.y = e
a.w = c
b.z = e
b.y = i
c.z = i
d.z = g
e.z = b
e.y = a
e.x = a
f.z = i
g.z = e
g.y = a
h.z = i
i.z = b
i.x = b
i.y = e
i.w = c
assert f.z.x.y.w.z.y.z.txt == "b" | 9 | 16 | 1.777778 | 0.222222 | 5 | 1.8 | 4 | 1 | 2.2 | 7 | 3 | 1 | 5 | 0.555556 | 7 | 0.4375 | 3 | 2 | 5 | 3.25 | 4 | 3 | 1 | 3 |
636 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: 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: C = None
self.y: A = None
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = A("d")
e = B("e")
f = C("f")
g = B("g")
h = B("h")
i = A("i")
a.z = i
a.y = d
b.z = c
c.z = f
c.y = d
c.x = b
d.z = i
d.y = a
e.z = f
f.z = c
f.y = i
f.x = e
g.z = c
h.z = f
i.z = d
i.y = a
assert e.z.y.y.y.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: 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: C = None
self.y: A = None
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = A("d")
e = B("e")
f = C("f")
g = B("g")
h = B("h")
i = A("i")
a.z = i
a.y = d
b.z = c
c.z = f
c.y = d
c.x = b
d.z = i
d.y = a
e.z = f
f.z = c
f.y = i
f.x = e
g.z = c
h.z = f
i.z = d
i.y = a
assert e.z.y.y.y.y.txt == "a" | 9 | 16 | 1.777778 | 0.222222 | 3 | 3 | 3 | 1 | 2 | 5 | 2 | 1 | 5 | 0.555556 | 5 | 0.3125 | 1 | 2 | 2 | 2 | 2 | 4 | 4 | 1 |
637 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.x: C = None
self.w: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: B = None
self.w: B = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: B = 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: A = None
self.x: E = 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.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")
i = C("i")
a.z = b
a.y = f
a.w = f
a.x = c
b.z = a
b.y = h
b.x = h
b.w = h
b.v = i
c.z = g
c.y = g
c.x = b
c.v = b
c.w = f
d.z = f
d.y = g
d.x = e
e.z = f
e.y = d
f.z = d
g.z = h
g.y = f
g.w = f
g.x = c
h.z = a
h.y = b
h.x = b
h.w = b
h.v = i
i.z = a
i.y = a
i.x = b
i.v = b
i.w = f
assert f.z.y.y.z.x.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: F = None
self.x: C = None
self.w: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: B = None
self.w: B = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: B = 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: A = None
self.x: E = 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.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")
i = C("i")
a.z = b
a.y = f
a.w = f
a.x = c
b.z = a
b.y = h
b.x = h
b.w = h
b.v = i
c.z = g
c.y = g
c.x = b
c.v = b
c.w = f
d.z = f
d.y = g
d.x = e
e.z = f
e.y = d
f.z = d
g.z = h
g.y = f
g.w = f
g.x = c
h.z = a
h.y = b
h.x = b
h.w = b
h.v = i
i.z = a
i.y = a
i.x = b
i.v = b
i.w = f
assert f.z.y.y.z.x.txt == "e" | 9 | 24 | 2.666667 | 0.333333 | 6 | 1.5 | 5 | 1 | 3.333333 | 5 | 2 | 2 | 4 | 0.444444 | 4 | 0.166667 | 2 | 3 | 3 | 3 | 3 | 2 | 2 | 2 |
638 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: C = 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: B = None
self.y: C = None
self.x: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = B("e")
f = B("f")
g = A("g")
h = C("h")
i = A("i")
a.z = g
a.y = e
a.x = c
b.z = e
b.x = e
b.y = f
c.z = b
c.y = d
c.x = h
d.z = e
d.y = c
d.x = h
e.z = b
e.y = f
e.x = f
f.z = b
f.x = b
f.y = e
g.z = i
g.y = f
g.x = h
h.z = e
h.y = d
h.x = c
i.z = g
i.y = f
i.x = d
assert e.x.z.z.z.z.x.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: C = 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: B = None
self.y: C = None
self.x: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = B("e")
f = B("f")
g = A("g")
h = C("h")
i = A("i")
a.z = g
a.y = e
a.x = c
b.z = e
b.x = e
b.y = f
c.z = b
c.y = d
c.x = h
d.z = e
d.y = c
d.x = h
e.z = b
e.y = f
e.x = f
f.z = b
f.x = b
f.y = e
g.z = i
g.y = f
g.x = h
h.z = e
h.y = d
h.x = c
i.z = g
i.y = f
i.x = d
assert e.x.z.z.z.z.x.y.txt == "e" | 9 | 24 | 2.666667 | 0.333333 | 3 | 3 | 3 | 3 | 3 | 7 | 4 | 2 | 3 | 0.333333 | 5 | 0.208333 | 5 | 2 | 7 | 3.75 | 3 | 4 | 4 | 2 |
639 | 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: C = None
self.x: B = None
self.w: E = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: D = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.txt = txt
class E:
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 = C("f")
g = D("g")
h = D("h")
i = B("i")
a.z = e
b.z = e
b.w = e
b.y = c
b.x = i
b.v = f
c.z = i
c.y = e
c.x = g
c.w = a
d.z = c
d.y = b
e.z = d
e.y = a
e.x = i
f.z = i
f.y = e
f.x = h
f.w = a
g.z = c
g.y = i
h.z = f
h.y = b
i.z = e
i.w = e
i.y = f
i.v = f
i.x = b
assert g.z.z.z.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: C = None
self.x: B = None
self.w: E = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: D = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.txt = txt
class E:
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 = C("f")
g = D("g")
h = D("h")
i = B("i")
a.z = e
b.z = e
b.w = e
b.y = c
b.x = i
b.v = f
c.z = i
c.y = e
c.x = g
c.w = a
d.z = c
d.y = b
e.z = d
e.y = a
e.x = i
f.z = i
f.y = e
f.x = h
f.w = a
g.z = c
g.y = i
h.z = f
h.y = b
i.z = e
i.w = e
i.y = f
i.v = f
i.x = b
assert g.z.z.z.txt == "e" | 9 | 25 | 2.777778 | 0.347222 | 5 | 1.8 | 5 | 1 | 3 | 3 | 1 | 1 | 4 | 0.444444 | 3 | 0.12 | 0 | null | null | null | 1 | 3 | 3 | 1 |
640 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = B("e")
f = C("f")
g = C("g")
h = A("h")
i = B("i")
a.z = g
a.y = h
a.x = h
b.z = e
b.y = i
c.z = h
c.y = b
c.x = d
d.z = h
d.y = b
d.x = g
e.z = b
e.y = i
f.z = a
f.y = i
f.x = d
g.z = h
g.y = e
g.x = c
h.z = c
h.y = a
h.x = a
i.z = b
i.y = b
assert b.y.y.y.y.z.z.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = B("e")
f = C("f")
g = C("g")
h = A("h")
i = B("i")
a.z = g
a.y = h
a.x = h
b.z = e
b.y = i
c.z = h
c.y = b
c.x = d
d.z = h
d.y = b
d.x = g
e.z = b
e.y = i
f.z = a
f.y = i
f.x = d
g.z = h
g.y = e
g.x = c
h.z = c
h.y = a
h.x = a
i.z = b
i.y = b
assert b.y.y.y.y.z.z.y.txt == "i" | 9 | 21 | 2.333333 | 0.291667 | 3 | 3 | 3 | 2 | 2.666667 | 7 | 4 | 3 | 3 | 0.333333 | 4 | 0.190476 | 5 | 2 | 6 | 3.555556 | 2 | 5 | 4 | 2 |
641 | 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: H = None
self.y: H = None
self.x: H = None
self.w: D = None
self.v: G = None
self.u: H = None
self.t: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: G = None
self.x: G = None
self.w: B = None
self.v: D = None
self.u: B = None
self.t: A = None
self.s: G = None
self.r: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: E = None
self.w: I = None
self.v: G = None
self.u: C = None
self.t: G = None
self.s: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: H = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: I = None
self.y: D = None
self.x: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.y: I = None
self.x: D = None
self.w: B = None
self.v: I = None
self.u: F = None
self.t: A = None
self.s: A = None
self.r: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.y: G = None
self.x: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: H = None
self.y: D = None
self.x: D = None
self.w: C = None
self.v: D = None
self.u: E = None
self.t: 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")
i = I("i")
a.z = d
a.y = e
b.z = h
b.y = h
b.x = h
b.u = h
b.w = d
b.v = g
b.t = f
c.z = d
c.v = d
c.y = g
c.x = g
c.s = g
c.w = b
c.u = b
c.t = a
c.r = i
d.z = b
d.y = c
d.u = c
d.x = e
d.w = i
d.v = g
d.t = g
d.s = h
e.z = h
e.y = a
f.z = i
f.y = d
f.x = h
g.z = e
g.y = i
g.v = i
g.x = d
g.w = b
g.u = f
g.t = a
g.s = a
g.r = a
h.z = g
h.y = g
h.x = c
i.z = h
i.y = d
i.x = d
i.v = d
i.t = d
i.w = c
i.u = e
assert i.u.y.y.y.z.w.w.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: H = None
self.y: H = None
self.x: H = None
self.w: D = None
self.v: G = None
self.u: H = None
self.t: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: G = None
self.x: G = None
self.w: B = None
self.v: D = None
self.u: B = None
self.t: A = None
self.s: G = None
self.r: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: E = None
self.w: I = None
self.v: G = None
self.u: C = None
self.t: G = None
self.s: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: H = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: I = None
self.y: D = None
self.x: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.y: I = None
self.x: D = None
self.w: B = None
self.v: I = None
self.u: F = None
self.t: A = None
self.s: A = None
self.r: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.y: G = None
self.x: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: H = None
self.y: D = None
self.x: D = None
self.w: C = None
self.v: D = None
self.u: E = None
self.t: 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")
i = I("i")
a.z = d
a.y = e
b.z = h
b.y = h
b.x = h
b.u = h
b.w = d
b.v = g
b.t = f
c.z = d
c.v = d
c.y = g
c.x = g
c.s = g
c.w = b
c.u = b
c.t = a
c.r = i
d.z = b
d.y = c
d.u = c
d.x = e
d.w = i
d.v = g
d.t = g
d.s = h
e.z = h
e.y = a
f.z = i
f.y = d
f.x = h
g.z = e
g.y = i
g.v = i
g.x = d
g.w = b
g.u = f
g.t = a
g.s = a
g.r = a
h.z = g
h.y = g
h.x = c
i.z = h
i.y = d
i.x = d
i.v = d
i.t = d
i.w = c
i.u = e
assert i.u.y.y.y.z.w.w.txt == "c" | 9 | 34 | 3.777778 | 0.472222 | 9 | 1 | 9 | 2 | 5.555556 | 7 | 2 | 2 | 5 | 0.555556 | 6 | 0.176471 | 3 | 2 | 6 | 3.333333 | 4 | 3 | 3 | 2 |
642 | 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: F = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: C = None
self.w: F = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.x: A = None
self.w: E = None
self.v: 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: B = 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 = C("g")
h = D("h")
i = E("i")
a.z = c
b.z = a
b.y = f
b.x = g
c.z = b
c.y = a
c.v = a
c.x = g
c.w = f
d.z = i
d.w = i
d.y = f
d.x = a
d.v = e
e.z = a
f.z = b
f.y = d
g.z = b
g.y = a
g.v = a
g.x = c
g.w = f
h.z = i
h.w = i
h.y = f
h.x = a
h.v = e
i.z = a
assert b.z.z.y.z.z.x.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: F = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: C = None
self.w: F = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.x: A = None
self.w: E = None
self.v: 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: B = 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 = C("g")
h = D("h")
i = E("i")
a.z = c
b.z = a
b.y = f
b.x = g
c.z = b
c.y = a
c.v = a
c.x = g
c.w = f
d.z = i
d.w = i
d.y = f
d.x = a
d.v = e
e.z = a
f.z = b
f.y = d
g.z = b
g.y = a
g.v = a
g.x = c
g.w = f
h.z = i
h.w = i
h.y = f
h.x = a
h.v = e
i.z = a
assert b.z.z.y.z.z.x.z.z.z.txt == "c" | 9 | 24 | 2.666667 | 0.333333 | 6 | 1.5 | 5 | 1 | 2.833333 | 9 | 3 | 3 | 4 | 0.444444 | 6 | 0.25 | 6 | 2 | 7 | 4.666667 | 3 | 7 | 3 | 2 |
643 | class A:
def __init__(self, txt: str):
self.z: 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: E = None
self.y: A = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: F = None
self.w: A = None
self.v: C = None
self.u: E = 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: 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 = C("g")
h = E("h")
i = F("i")
a.z = b
b.z = h
b.y = i
c.z = e
c.x = e
c.y = a
d.z = b
d.y = e
d.x = f
d.w = a
d.v = c
d.u = h
e.z = f
f.z = i
f.y = i
f.x = i
g.z = e
g.x = e
g.y = a
h.z = f
i.z = f
i.y = f
i.x = f
assert f.y.z.z.z.x.z.z.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: 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: E = None
self.y: A = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: F = None
self.w: A = None
self.v: C = None
self.u: E = 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: 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 = C("g")
h = E("h")
i = F("i")
a.z = b
b.z = h
b.y = i
c.z = e
c.x = e
c.y = a
d.z = b
d.y = e
d.x = f
d.w = a
d.v = c
d.u = h
e.z = f
f.z = i
f.y = i
f.x = i
g.z = e
g.x = e
g.y = a
h.z = f
i.z = f
i.y = f
i.x = f
assert f.y.z.z.z.x.z.z.z.txt == "f" | 9 | 17 | 1.888889 | 0.236111 | 6 | 1.5 | 6 | 1 | 2.666667 | 8 | 5 | 4 | 2 | 0.222222 | 4 | 0.235294 | 7 | 2 | 8 | 3.75 | 3 | 6 | 3 | 3 |
644 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: B = 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.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 = A("e")
f = D("f")
g = D("g")
h = C("h")
i = D("i")
a.z = e
a.y = d
a.x = b
b.z = c
b.y = a
c.z = b
c.y = a
d.z = a
e.z = a
e.y = d
e.x = b
f.z = e
g.z = e
h.z = b
h.y = a
i.z = e
assert h.y.y.z.x.z.y.y.z.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: B = 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.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 = A("e")
f = D("f")
g = D("g")
h = C("h")
i = D("i")
a.z = e
a.y = d
a.x = b
b.z = c
b.y = a
c.z = b
c.y = a
d.z = a
e.z = a
e.y = d
e.x = b
f.z = e
g.z = e
h.z = b
h.y = a
i.z = e
assert h.y.y.z.x.z.y.y.z.txt == "a" | 9 | 16 | 1.777778 | 0.222222 | 4 | 2.25 | 3 | 1 | 2 | 8 | 4 | 2 | 5 | 0.555556 | 6 | 0.375 | 4 | 2 | 7 | 4.142857 | 3 | 4 | 2 | 2 |
645 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: C = None
self.w: C = None
self.v: D = 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: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: A = None
self.w: B = None
self.v: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: D = None
self.w: C = 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 = C("h")
i = A("i")
a.z = i
b.z = f
b.u = f
b.y = e
b.x = h
b.w = h
b.v = g
c.z = b
d.z = c
e.z = b
e.w = b
e.v = b
e.y = a
e.x = a
f.z = e
f.y = g
f.x = d
f.w = c
g.z = c
h.z = b
i.z = a
assert f.w.z.u.x.z.z.v.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: F = None
self.y: E = None
self.x: C = None
self.w: C = None
self.v: D = 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: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: A = None
self.w: B = None
self.v: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: D = None
self.w: C = 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 = C("h")
i = A("i")
a.z = i
b.z = f
b.u = f
b.y = e
b.x = h
b.w = h
b.v = g
c.z = b
d.z = c
e.z = b
e.w = b
e.v = b
e.y = a
e.x = a
f.z = e
f.y = g
f.x = d
f.w = c
g.z = c
h.z = b
i.z = a
assert f.w.z.u.x.z.z.v.z.txt == "c" | 9 | 16 | 1.777778 | 0.222222 | 6 | 1.5 | 6 | 1 | 3 | 8 | 3 | 2 | 5 | 0.555556 | 7 | 0.4375 | 4 | 3 | 7 | 4.2 | 5 | 4 | 2 | 2 |
646 | class A:
def __init__(self, txt: str):
self.z: H = None
self.y: E = None
self.x: C = None
self.w: F = None
self.v: E = None
self.u: G = None
self.t: E = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: G = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: 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.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: H = None
self.x: H = None
self.w: D = None
self.v: E = None
self.u: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: B = None
self.w: C = None
self.v: D = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: 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")
i = E("i")
a.z = h
a.y = i
a.t = i
a.x = c
a.w = f
a.v = e
a.u = g
a.s = d
b.z = d
b.y = g
b.x = c
c.z = f
c.y = f
d.z = i
d.y = g
d.x = c
e.z = b
e.y = h
e.x = h
e.w = d
e.u = d
e.v = i
f.z = a
f.y = i
f.u = i
f.x = b
f.w = c
f.v = d
g.z = b
g.y = d
h.z = d
h.y = i
h.x = a
i.z = b
i.y = h
i.x = h
i.w = d
i.u = d
i.v = e
assert f.z.z.x.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: H = None
self.y: E = None
self.x: C = None
self.w: F = None
self.v: E = None
self.u: G = None
self.t: E = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: G = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: 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.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: H = None
self.x: H = None
self.w: D = None
self.v: E = None
self.u: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: B = None
self.w: C = None
self.v: D = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: 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")
i = E("i")
a.z = h
a.y = i
a.t = i
a.x = c
a.w = f
a.v = e
a.u = g
a.s = d
b.z = d
b.y = g
b.x = c
c.z = f
c.y = f
d.z = i
d.y = g
d.x = c
e.z = b
e.y = h
e.x = h
e.w = d
e.u = d
e.v = i
f.z = a
f.y = i
f.u = i
f.x = b
f.w = c
f.v = d
g.z = b
g.y = d
h.z = d
h.y = i
h.x = a
i.z = b
i.y = h
i.x = h
i.w = d
i.u = d
i.v = e
assert f.z.z.x.txt == "a" | 9 | 32 | 3.555556 | 0.444444 | 8 | 1.125 | 8 | 2 | 4.125 | 3 | 2 | 1 | 3 | 0.333333 | 3 | 0.09375 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
647 | class A:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: H = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: I = None
self.y: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: I = None
self.y: B = None
self.x: D = None
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: I = None
self.y: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.x: 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")
i = I("i")
a.z = f
b.z = h
b.y = c
c.z = d
c.y = f
d.z = i
d.y = h
e.z = i
e.y = b
e.x = d
e.w = f
f.z = a
f.y = i
g.z = c
g.y = a
h.z = i
h.y = g
i.z = f
i.y = g
i.x = a
assert d.y.y.y.z.z.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: H = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: I = None
self.y: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: I = None
self.y: B = None
self.x: D = None
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: I = None
self.y: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.x: 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")
i = I("i")
a.z = f
b.z = h
b.y = c
c.z = d
c.y = f
d.z = i
d.y = h
e.z = i
e.y = b
e.x = d
e.w = f
f.z = a
f.y = i
g.z = c
g.y = a
h.z = i
h.y = g
i.z = f
i.y = g
i.x = a
assert d.y.y.y.z.z.z.txt == "f" | 9 | 20 | 2.222222 | 0.277778 | 9 | 1 | 4 | 1 | 2.222222 | 6 | 2 | 2 | 5 | 0.555556 | 5 | 0.25 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
648 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: 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: C = None
self.y: A = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: C = 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 = E("f")
g = D("g")
h = E("h")
i = B("i")
a.z = b
a.y = g
a.x = d
b.z = i
b.y = i
c.z = b
d.z = c
d.y = a
d.x = f
e.z = a
e.w = a
e.y = g
e.x = c
e.v = b
f.z = a
f.w = a
f.y = g
f.x = c
f.v = i
g.z = c
g.y = a
g.x = h
h.z = a
h.w = a
h.y = g
h.x = c
h.v = i
i.z = b
i.y = b
assert f.v.y.z.z.y.y.z.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: 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: C = None
self.y: A = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: C = 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 = E("f")
g = D("g")
h = E("h")
i = B("i")
a.z = b
a.y = g
a.x = d
b.z = i
b.y = i
c.z = b
d.z = c
d.y = a
d.x = f
e.z = a
e.w = a
e.y = g
e.x = c
e.v = b
f.z = a
f.w = a
f.y = g
f.x = c
f.v = i
g.z = c
g.y = a
g.x = h
h.z = a
h.w = a
h.y = g
h.x = c
h.v = i
i.z = b
i.y = b
assert f.v.y.z.z.y.y.z.txt == "i" | 9 | 24 | 2.666667 | 0.333333 | 5 | 1.8 | 5 | 1 | 2.8 | 7 | 4 | 2 | 3 | 0.333333 | 5 | 0.208333 | 5 | 2 | 6 | 3.111111 | 3 | 3 | 2 | 2 |
649 | 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: B = None
self.y: 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 = B("h")
i = A("i")
a.z = h
a.y = f
b.z = h
b.y = g
c.z = h
c.y = g
d.z = b
d.y = i
e.z = b
e.y = f
f.z = c
f.y = i
g.z = b
g.y = i
h.z = b
h.y = a
i.z = e
i.y = d
assert a.z.y.y.y.y.y.txt == " | i" | 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: B = None
self.y: 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 = B("h")
i = A("i")
a.z = h
a.y = f
b.z = h
b.y = g
c.z = h
c.y = g
d.z = b
d.y = i
e.z = b
e.y = f
f.z = c
f.y = i
g.z = b
g.y = i
h.z = b
h.y = a
i.z = e
i.y = d
assert a.z.y.y.y.y.y.txt == "i" | 9 | 18 | 2 | 0.25 | 2 | 4.5 | 2 | 2 | 2 | 6 | 2 | 1 | 5 | 0.555556 | 6 | 0.333333 | 2 | 2 | 2 | 2 | 2 | 5 | 5 | 2 |
650 | 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.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: B = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = C("e")
f = B("f")
g = A("g")
h = D("h")
i = B("i")
a.z = g
b.z = a
b.y = g
c.z = e
c.y = g
c.x = f
c.w = a
d.z = h
d.y = h
e.z = c
e.y = g
e.x = i
e.w = a
f.z = g
f.y = a
g.z = a
h.z = d
h.y = d
i.z = a
i.y = a
assert d.y.z.z.y.y.z.y.y.txt == " | d" | 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.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: B = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = C("e")
f = B("f")
g = A("g")
h = D("h")
i = B("i")
a.z = g
b.z = a
b.y = g
c.z = e
c.y = g
c.x = f
c.w = a
d.z = h
d.y = h
e.z = c
e.y = g
e.x = i
e.w = a
f.z = g
f.y = a
g.z = a
h.z = d
h.y = d
i.z = a
i.y = a
assert d.y.z.z.y.y.z.y.y.txt == "d" | 9 | 17 | 1.888889 | 0.236111 | 4 | 2.25 | 4 | 1 | 2.25 | 8 | 5 | 3 | 2 | 0.222222 | 4 | 0.235294 | 7 | 2 | 8 | 3.75 | 2 | 5 | 2 | 2 |
651 | 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: 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.y: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = C("e")
f = D("f")
g = A("g")
h = B("h")
i = A("i")
a.z = c
a.y = c
b.z = h
c.z = f
c.y = h
d.z = h
d.y = f
e.z = f
e.y = b
f.z = h
f.y = d
g.z = e
g.y = e
h.z = b
i.z = c
i.y = c
assert g.z.y.z.z.z.z.z.z.z.txt == " | h" | 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: 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.y: D = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = C("e")
f = D("f")
g = A("g")
h = B("h")
i = A("i")
a.z = c
a.y = c
b.z = h
c.z = f
c.y = h
d.z = h
d.y = f
e.z = f
e.y = b
f.z = h
f.y = d
g.z = e
g.y = e
h.z = b
i.z = c
i.y = c
assert g.z.y.z.z.z.z.z.z.z.txt == "h" | 9 | 13 | 1.444444 | 0.180556 | 4 | 2.25 | 2 | 1 | 1.75 | 9 | 4 | 4 | 4 | 0.444444 | 4 | 0.307692 | 6 | 2 | 6 | 3.333333 | 2 | 8 | 7 | 1 |
652 | 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: C = 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: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = A("d")
e = B("e")
f = B("f")
g = A("g")
h = C("h")
i = C("i")
a.z = e
a.y = e
a.x = b
b.z = h
b.y = f
b.x = f
c.z = d
c.y = d
d.z = f
d.y = b
d.x = b
e.z = c
e.y = b
e.x = f
f.z = i
f.y = e
f.x = b
g.z = e
g.x = e
g.y = b
h.z = d
h.y = g
i.z = a
i.y = d
assert h.z.z.z.y.z.y.x.z.txt == " | i" | 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: C = 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: A = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = A("d")
e = B("e")
f = B("f")
g = A("g")
h = C("h")
i = C("i")
a.z = e
a.y = e
a.x = b
b.z = h
b.y = f
b.x = f
c.z = d
c.y = d
d.z = f
d.y = b
d.x = b
e.z = c
e.y = b
e.x = f
f.z = i
f.y = e
f.x = b
g.z = e
g.x = e
g.y = b
h.z = d
h.y = g
i.z = a
i.y = d
assert h.z.z.z.y.z.y.x.z.txt == "i" | 9 | 19 | 2.111111 | 0.263889 | 3 | 3 | 3 | 2 | 2.666667 | 8 | 3 | 2 | 5 | 0.555556 | 6 | 0.315789 | 4 | 2 | 5 | 3.6 | 3 | 5 | 3 | 2 |
653 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = 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 = C("d")
e = C("e")
f = A("f")
g = A("g")
h = C("h")
i = B("i")
a.z = h
a.y = f
a.x = f
b.z = i
b.y = a
c.z = a
d.z = g
e.z = g
f.z = e
f.y = a
f.x = g
g.z = h
g.y = a
g.x = f
h.z = f
i.z = b
i.y = f
assert f.z.z.x.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = 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 = C("d")
e = C("e")
f = A("f")
g = A("g")
h = C("h")
i = B("i")
a.z = h
a.y = f
a.x = f
b.z = i
b.y = a
c.z = a
d.z = g
e.z = g
f.z = e
f.y = a
f.x = g
g.z = h
g.y = a
g.x = f
h.z = f
i.z = b
i.y = f
assert f.z.z.x.txt == "f" | 9 | 16 | 1.777778 | 0.222222 | 3 | 3 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 0.333333 | 3 | 0.1875 | 1 | 3 | 3 | 3 | 2 | 2 | 2 | 1 |
654 | class A:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: F = None
self.x: F = None
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: 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: D = None
self.y: F = None
self.x: D = None
self.w: B = None
self.txt = txt
class F:
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 = C("g")
h = D("h")
i = D("i")
a.z = f
b.z = g
b.y = f
b.x = f
b.w = e
c.z = a
c.y = e
c.x = h
d.z = a
e.z = h
e.x = h
e.y = f
e.w = b
f.z = g
g.z = a
g.y = e
g.x = d
h.z = a
i.z = a
assert a.z.z.z.z.z.y.y.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: F = None
self.x: F = None
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: 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: D = None
self.y: F = None
self.x: D = None
self.w: B = None
self.txt = txt
class F:
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 = C("g")
h = D("h")
i = D("i")
a.z = f
b.z = g
b.y = f
b.x = f
b.w = e
c.z = a
c.y = e
c.x = h
d.z = a
e.z = h
e.x = h
e.y = f
e.w = b
f.z = g
g.z = a
g.y = e
g.x = d
h.z = a
i.z = a
assert a.z.z.z.z.z.y.y.txt == "f" | 9 | 17 | 1.888889 | 0.236111 | 6 | 1.5 | 4 | 1 | 2.333333 | 7 | 3 | 2 | 4 | 0.444444 | 5 | 0.294118 | 4 | 3 | 6 | 3.6 | 2 | 5 | 5 | 2 |
655 | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: F = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.x: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: E = None
self.w: C = 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 = C("h")
i = B("i")
a.z = f
a.x = f
a.y = d
b.z = f
b.y = f
b.x = c
c.z = h
d.z = h
d.y = h
d.x = f
d.w = c
e.z = g
e.y = f
e.x = h
f.z = b
f.y = g
f.x = g
f.w = h
g.z = e
g.y = f
g.x = h
h.z = c
i.z = f
i.y = f
i.x = c
assert d.x.w.z.z.z.z.z.z.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.y: C = None
self.x: F = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.x: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: E = None
self.w: C = 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 = C("h")
i = B("i")
a.z = f
a.x = f
a.y = d
b.z = f
b.y = f
b.x = c
c.z = h
d.z = h
d.y = h
d.x = f
d.w = c
e.z = g
e.y = f
e.x = h
f.z = b
f.y = g
f.x = g
f.w = h
g.z = e
g.y = f
g.x = h
h.z = c
i.z = f
i.y = f
i.x = c
assert d.x.w.z.z.z.z.z.z.z.txt == "c" | 9 | 20 | 2.222222 | 0.277778 | 6 | 1.5 | 4 | 1 | 3 | 9 | 4 | 4 | 4 | 0.444444 | 4 | 0.2 | 6 | 2 | 6 | 3.333333 | 3 | 7 | 7 | 1 |
656 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: F = None
self.w: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: C = None
self.w: 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: F = 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: A = 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 = A("g")
h = B("h")
i = E("i")
a.z = d
a.y = g
a.w = g
a.v = g
a.x = f
b.z = h
b.y = i
b.x = c
b.w = d
c.z = a
d.z = f
e.z = g
f.z = g
f.y = i
g.z = d
g.y = a
g.w = a
g.v = a
g.x = f
h.z = b
h.y = e
h.x = c
h.w = d
i.z = g
assert g.v.w.w.v.z.z.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: F = None
self.w: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: C = None
self.w: 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: F = 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: A = 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 = A("g")
h = B("h")
i = E("i")
a.z = d
a.y = g
a.w = g
a.v = g
a.x = f
b.z = h
b.y = i
b.x = c
b.w = d
c.z = a
d.z = f
e.z = g
f.z = g
f.y = i
g.z = d
g.y = a
g.w = a
g.v = a
g.x = f
h.z = b
h.y = e
h.x = c
h.w = d
i.z = g
assert g.v.w.w.v.z.z.y.txt == "i" | 9 | 20 | 2.222222 | 0.277778 | 6 | 1.5 | 5 | 1 | 2.333333 | 7 | 3 | 1 | 5 | 0.555556 | 7 | 0.35 | 3 | 2 | 4 | 2.5 | 4 | 2 | 2 | 3 |
657 | 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: A = None
self.y: D = None
self.x: E = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: D = None
self.w: D = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: B = None
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: C = 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 = A("g")
h = E("h")
i = F("i")
a.z = c
a.y = b
b.z = g
b.y = d
b.x = h
b.w = a
c.z = g
c.y = i
c.x = d
c.w = d
c.v = e
d.z = g
d.y = g
d.x = b
d.w = i
e.z = i
e.y = d
e.x = a
f.z = d
f.y = c
f.x = c
f.w = h
f.v = e
g.z = c
g.y = b
h.z = f
h.y = d
h.x = g
i.z = d
i.y = c
i.x = c
i.w = h
i.v = h
assert b.y.w.v.z.z.y.z.v.txt == " | e" | 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: A = None
self.y: D = None
self.x: E = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: D = None
self.w: D = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: B = None
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.y: D = None
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: C = 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 = A("g")
h = E("h")
i = F("i")
a.z = c
a.y = b
b.z = g
b.y = d
b.x = h
b.w = a
c.z = g
c.y = i
c.x = d
c.w = d
c.v = e
d.z = g
d.y = g
d.x = b
d.w = i
e.z = i
e.y = d
e.x = a
f.z = d
f.y = c
f.x = c
f.w = h
f.v = e
g.z = c
g.y = b
h.z = f
h.y = d
h.x = g
i.z = d
i.y = c
i.x = c
i.w = h
i.v = h
assert b.y.w.v.z.z.y.z.v.txt == "e" | 9 | 28 | 3.111111 | 0.388889 | 6 | 1.5 | 5 | 2 | 3.833333 | 8 | 2 | 1 | 8 | 0.888889 | 8 | 0.285714 | 1 | 4 | 4 | 4 | 4 | 3 | 2 | 2 |
658 | 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: B = None
self.x: A = 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 = A("d")
e = A("e")
f = B("f")
g = A("g")
h = A("h")
i = C("i")
a.z = i
b.z = i
b.y = f
b.x = d
c.z = f
d.z = c
e.z = c
f.z = c
f.y = b
f.x = d
g.z = i
h.z = i
i.z = b
assert b.x.z.z.z.z.x.z.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: C = None
self.y: B = None
self.x: A = 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 = A("d")
e = A("e")
f = B("f")
g = A("g")
h = A("h")
i = C("i")
a.z = i
b.z = i
b.y = f
b.x = d
c.z = f
d.z = c
e.z = c
f.z = c
f.y = b
f.x = d
g.z = i
h.z = i
i.z = b
assert b.x.z.z.z.z.x.z.z.txt == "f" | 9 | 13 | 1.444444 | 0.180556 | 3 | 3 | 3 | 1 | 1.666667 | 8 | 3 | 3 | 4 | 0.444444 | 5 | 0.384615 | 5 | 2 | 5 | 3.571429 | 2 | 6 | 4 | 2 |
659 | 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.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: D = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: D = 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 = C("f")
g = C("g")
h = D("h")
i = E("i")
a.z = b
b.z = h
c.z = d
c.y = b
d.z = h
d.y = b
e.z = i
e.y = b
e.w = b
e.x = h
e.v = f
f.z = d
f.y = b
g.z = d
g.y = b
h.z = d
h.y = b
i.z = e
i.y = b
i.w = b
i.x = h
i.v = f
assert g.z.z.z.z.z.y.z.z.txt == " | d" | 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.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: D = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: D = 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 = C("f")
g = C("g")
h = D("h")
i = E("i")
a.z = b
b.z = h
c.z = d
c.y = b
d.z = h
d.y = b
e.z = i
e.y = b
e.w = b
e.x = h
e.v = f
f.z = d
f.y = b
g.z = d
g.y = b
h.z = d
h.y = b
i.z = e
i.y = b
i.w = b
i.x = h
i.v = f
assert g.z.z.z.z.z.y.z.z.txt == "d" | 9 | 20 | 2.222222 | 0.277778 | 5 | 1.8 | 5 | 1 | 2.2 | 8 | 4 | 3 | 4 | 0.444444 | 5 | 0.25 | 5 | 2 | 7 | 3.666667 | 2 | 7 | 5 | 2 |
660 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: A = None
self.w: C = None
self.v: D = 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: D = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: B = None
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: B = 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")
i = B("i")
a.z = d
a.v = d
a.y = f
a.x = h
a.w = g
b.z = i
b.y = c
c.z = a
c.y = d
c.x = i
d.z = f
d.y = g
d.x = b
d.w = i
e.z = h
e.y = c
e.x = i
e.w = d
e.v = d
f.z = d
f.v = d
f.y = h
f.x = h
f.w = g
g.z = h
g.y = d
g.x = i
h.z = d
h.v = d
h.y = f
h.x = a
h.w = c
i.z = b
i.y = g
assert b.y.y.y.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: A = None
self.w: C = None
self.v: D = 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: D = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: B = None
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: B = 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")
i = B("i")
a.z = d
a.v = d
a.y = f
a.x = h
a.w = g
b.z = i
b.y = c
c.z = a
c.y = d
c.x = i
d.z = f
d.y = g
d.x = b
d.w = i
e.z = h
e.y = c
e.x = i
e.w = d
e.v = d
f.z = d
f.v = d
f.y = h
f.x = h
f.w = g
g.z = h
g.y = d
g.x = i
h.z = d
h.v = d
h.y = f
h.x = a
h.w = c
i.z = b
i.y = g
assert b.y.y.y.z.txt == "h" | 9 | 29 | 3.222222 | 0.402778 | 5 | 1.8 | 5 | 2 | 3.8 | 4 | 1 | 1 | 5 | 0.555556 | 4 | 0.137931 | 0 | null | null | null | 2 | 3 | 3 | 1 |
661 | class A:
def __init__(self, txt: str):
self.z: B = 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.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = C("e")
f = A("f")
g = B("g")
h = A("h")
i = A("i")
a.z = g
a.y = b
a.x = d
b.z = h
b.y = i
c.z = h
c.y = d
c.x = d
d.z = h
d.y = c
d.x = e
e.z = a
e.y = d
e.x = d
f.z = g
f.y = b
f.x = c
g.z = h
g.y = a
h.z = g
h.y = b
h.x = d
i.z = b
i.y = g
i.x = d
assert g.z.x.z.x.z.y.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: B = 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.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = C("e")
f = A("f")
g = B("g")
h = A("h")
i = A("i")
a.z = g
a.y = b
a.x = d
b.z = h
b.y = i
c.z = h
c.y = d
c.x = d
d.z = h
d.y = c
d.x = e
e.z = a
e.y = d
e.x = d
f.z = g
f.y = b
f.x = c
g.z = h
g.y = a
h.z = g
h.y = b
h.x = d
i.z = b
i.y = g
i.x = d
assert g.z.x.z.x.z.y.y.txt == "i" | 9 | 23 | 2.555556 | 0.319444 | 3 | 3 | 3 | 2 | 2.666667 | 7 | 3 | 2 | 5 | 0.555556 | 5 | 0.217391 | 3 | 2 | 4 | 2.5 | 3 | 3 | 2 | 2 |
662 | 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: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = B("d")
e = C("e")
f = B("f")
g = C("g")
h = A("h")
i = B("i")
a.z = c
a.y = i
b.z = a
c.z = g
d.z = h
e.z = g
f.z = h
g.z = c
h.z = g
h.y = f
i.z = h
assert f.z.y.z.y.txt == " | f" | 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: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = B("d")
e = C("e")
f = B("f")
g = C("g")
h = A("h")
i = B("i")
a.z = c
a.y = i
b.z = a
c.z = g
d.z = h
e.z = g
f.z = h
g.z = c
h.z = g
h.y = f
i.z = h
assert f.z.y.z.y.txt == "f" | 9 | 11 | 1.222222 | 0.152778 | 3 | 3 | 2 | 1 | 1.333333 | 4 | 3 | 2 | 2 | 0.222222 | 2 | 0.181818 | 3 | 2 | 4 | 2.5 | 2 | 2 | 1 | 1 |
663 | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.x: B = None
self.w: G = None
self.v: B = None
self.u: E = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: A = None
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.x: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: 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: C = None
self.v: E = None
self.u: E = None
self.t: 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 = B("h")
i = F("i")
a.z = i
a.x = i
a.y = g
b.z = e
b.y = c
c.z = g
c.w = g
c.y = a
c.x = h
c.v = h
c.u = e
c.t = d
d.z = f
d.y = a
d.x = b
e.z = d
e.y = f
e.x = g
f.z = h
f.x = h
f.y = d
g.z = d
g.x = d
g.y = b
g.w = c
g.v = e
g.u = e
g.t = a
h.z = e
h.y = c
i.z = h
i.y = d
i.x = b
assert g.w.z.t.x.x.y.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.x: B = None
self.w: G = None
self.v: B = None
self.u: E = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: A = None
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.x: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: 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: C = None
self.v: E = None
self.u: E = None
self.t: 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 = B("h")
i = F("i")
a.z = i
a.x = i
a.y = g
b.z = e
b.y = c
c.z = g
c.w = g
c.y = a
c.x = h
c.v = h
c.u = e
c.t = d
d.z = f
d.y = a
d.x = b
e.z = d
e.y = f
e.x = g
f.z = h
f.x = h
f.y = d
g.z = d
g.x = d
g.y = b
g.w = c
g.v = e
g.u = e
g.t = a
h.z = e
h.y = c
i.z = h
i.y = d
i.x = b
assert g.w.z.t.x.x.y.txt == "c" | 9 | 27 | 3 | 0.375 | 7 | 1.285714 | 7 | 2 | 4 | 6 | 2 | 1 | 5 | 0.555556 | 6 | 0.222222 | 2 | 2 | 5 | 3.5 | 5 | 2 | 2 | 2 |
664 | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: C = None
self.w: C = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: C = None
self.w: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = B("f")
g = D("g")
h = C("h")
i = E("i")
a.z = g
b.z = f
b.y = e
b.x = a
c.z = i
c.y = d
c.x = h
c.w = h
c.v = a
d.z = b
d.y = c
e.z = a
e.y = g
e.x = c
e.w = i
f.z = b
f.y = e
f.x = a
g.z = f
g.y = c
h.z = i
h.y = d
h.x = c
h.w = c
h.v = a
i.z = a
i.y = d
i.x = h
i.w = e
assert a.z.y.v.z.y.v.z.z.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: C = None
self.w: C = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.x: C = None
self.w: E = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = B("f")
g = D("g")
h = C("h")
i = E("i")
a.z = g
b.z = f
b.y = e
b.x = a
c.z = i
c.y = d
c.x = h
c.w = h
c.v = a
d.z = b
d.y = c
e.z = a
e.y = g
e.x = c
e.w = i
f.z = b
f.y = e
f.x = a
g.z = f
g.y = c
h.z = i
h.y = d
h.x = c
h.w = c
h.v = a
i.z = a
i.y = d
i.x = h
i.w = e
assert a.z.y.v.z.y.v.z.z.z.txt == "b" | 9 | 27 | 3 | 0.375 | 5 | 1.8 | 5 | 1 | 3 | 9 | 3 | 3 | 5 | 0.555556 | 5 | 0.185185 | 5 | 3 | 6 | 3.857143 | 3 | 5 | 3 | 2 |
665 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: A = 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: B = None
self.y: D = None
self.x: B = None
self.w: E = 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: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = A("f")
g = A("g")
h = B("h")
i = A("i")
a.z = d
a.y = c
a.x = g
b.z = e
c.z = b
c.x = b
c.y = d
c.w = e
d.z = e
d.y = e
d.x = i
d.w = h
e.z = d
e.y = c
f.z = d
f.y = c
f.x = i
g.z = d
g.y = c
g.x = f
h.z = e
i.z = d
i.y = c
i.x = g
assert c.w.z.y.y.x.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: A = 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: B = None
self.y: D = None
self.x: B = None
self.w: E = 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: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = A("f")
g = A("g")
h = B("h")
i = A("i")
a.z = d
a.y = c
a.x = g
b.z = e
c.z = b
c.x = b
c.y = d
c.w = e
d.z = e
d.y = e
d.x = i
d.w = h
e.z = d
e.y = c
f.z = d
f.y = c
f.x = i
g.z = d
g.y = c
g.x = f
h.z = e
i.z = d
i.y = c
i.x = g
assert c.w.z.y.y.x.txt == "b" | 9 | 22 | 2.444444 | 0.305556 | 5 | 1.8 | 4 | 1 | 2.8 | 5 | 2 | 1 | 4 | 0.444444 | 5 | 0.227273 | 2 | 2 | 4 | 3 | 4 | 2 | 2 | 2 |
666 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: B = 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 = C("g")
h = B("h")
i = D("i")
a.z = i
a.x = i
a.y = h
b.z = g
b.y = h
b.x = h
c.z = i
c.y = d
c.x = h
d.z = f
e.z = a
f.z = d
f.x = d
f.y = h
g.z = d
g.y = d
g.x = h
h.z = c
h.y = b
h.x = b
i.z = f
assert c.z.z.y.z.y.z.x.z.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: B = 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 = C("g")
h = B("h")
i = D("i")
a.z = i
a.x = i
a.y = h
b.z = g
b.y = h
b.x = h
c.z = i
c.y = d
c.x = h
d.z = f
e.z = a
f.z = d
f.x = d
f.y = h
g.z = d
g.y = d
g.x = h
h.z = c
h.y = b
h.x = b
i.z = f
assert c.z.z.y.z.y.z.x.z.z.txt == "d" | 9 | 16 | 1.777778 | 0.222222 | 4 | 2.25 | 3 | 1 | 2.5 | 9 | 3 | 2 | 5 | 0.555556 | 8 | 0.5 | 5 | 2 | 6 | 3.428571 | 3 | 6 | 2 | 3 |
667 | 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 = B("c")
d = B("d")
e = A("e")
f = B("f")
g = A("g")
h = B("h")
i = B("i")
a.z = e
b.z = i
c.z = h
d.z = f
e.z = a
f.z = c
g.z = a
h.z = b
i.z = d
assert c.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 = B("c")
d = B("d")
e = A("e")
f = B("f")
g = A("g")
h = B("h")
i = B("i")
a.z = e
b.z = i
c.z = h
d.z = f
e.z = a
f.z = c
g.z = a
h.z = b
i.z = d
assert c.z.z.z.z.z.z.txt == "c" | 9 | 9 | 1 | 0.125 | 2 | 4.5 | 1 | 1 | 1 | 6 | 2 | 1 | 6 | 0.666667 | 6 | 0.666667 | 1 | 6 | 6 | 6 | 1 | 6 | 6 | 1 |
668 | 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.txt = txt
a = A("a")
b = B("b")
c = A("c")
d = B("d")
e = A("e")
f = A("f")
g = A("g")
h = B("h")
i = A("i")
a.z = h
b.z = c
c.z = d
d.z = f
e.z = d
f.z = h
g.z = d
h.z = c
i.z = h
assert i.z.z.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: A = None
self.txt = txt
a = A("a")
b = B("b")
c = A("c")
d = B("d")
e = A("e")
f = A("f")
g = A("g")
h = B("h")
i = A("i")
a.z = h
b.z = c
c.z = d
d.z = f
e.z = d
f.z = h
g.z = d
h.z = c
i.z = h
assert i.z.z.z.z.z.z.txt == "c" | 9 | 9 | 1 | 0.125 | 2 | 4.5 | 1 | 1 | 1 | 6 | 2 | 2 | 5 | 0.555556 | 5 | 0.555556 | 2 | 4 | 4 | 4 | 1 | 6 | 6 | 1 |
669 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: A = None
self.w: C = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.w: E = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: E = None
self.w: D = None
self.v: F = None
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: E = None
self.w: E = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: D = None
self.w: A = 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")
i = E("i")
a.z = e
a.y = c
a.w = c
a.x = g
a.v = d
b.z = d
b.y = d
b.x = c
b.v = c
b.w = e
c.z = i
c.y = e
c.x = e
c.u = e
c.w = d
c.v = f
d.z = g
d.y = a
d.x = i
d.w = i
d.v = i
e.z = i
e.y = i
e.x = d
e.w = g
f.z = e
g.z = i
g.y = c
g.w = c
g.x = a
g.v = d
h.z = d
h.y = d
h.x = c
h.v = c
h.w = e
i.z = e
i.y = e
i.x = d
i.w = a
assert b.v.u.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: A = None
self.w: C = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.w: E = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: E = None
self.w: D = None
self.v: F = None
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: E = None
self.w: E = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: D = None
self.w: A = 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")
i = E("i")
a.z = e
a.y = c
a.w = c
a.x = g
a.v = d
b.z = d
b.y = d
b.x = c
b.v = c
b.w = e
c.z = i
c.y = e
c.x = e
c.u = e
c.w = d
c.v = f
d.z = g
d.y = a
d.x = i
d.w = i
d.v = i
e.z = i
e.y = i
e.x = d
e.w = g
f.z = e
g.z = i
g.y = c
g.w = c
g.x = a
g.v = d
h.z = d
h.y = d
h.x = c
h.v = c
h.w = e
i.z = e
i.y = e
i.x = d
i.w = a
assert b.v.u.y.txt == "i" | 9 | 28 | 3.111111 | 0.388889 | 6 | 1.5 | 6 | 1 | 4.333333 | 3 | 1 | 1 | 4 | 0.444444 | 3 | 0.107143 | 0 | null | null | null | 3 | 1 | 1 | 1 |
670 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: B = None
self.w: E = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: C = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = 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: C = None
self.y: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = 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 = C("g")
h = A("h")
i = C("i")
a.z = b
a.x = b
a.y = h
a.w = e
a.v = e
b.z = e
b.y = d
b.x = g
b.w = g
c.z = g
d.z = c
e.z = i
e.y = f
f.z = d
f.y = d
g.z = i
h.z = b
h.x = b
h.y = a
h.w = e
h.v = e
i.z = c
assert b.y.z.z.z.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: B = None
self.w: E = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: C = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = 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: C = None
self.y: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = 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 = C("g")
h = A("h")
i = C("i")
a.z = b
a.x = b
a.y = h
a.w = e
a.v = e
b.z = e
b.y = d
b.x = g
b.w = g
c.z = g
d.z = c
e.z = i
e.y = f
f.z = d
f.y = d
g.z = i
h.z = b
h.x = b
h.y = a
h.w = e
h.v = e
i.z = c
assert b.y.z.z.z.z.txt == "c" | 9 | 16 | 1.777778 | 0.222222 | 6 | 1.5 | 5 | 1 | 2.5 | 5 | 2 | 1 | 5 | 0.555556 | 5 | 0.3125 | 1 | 3 | 3 | 3 | 2 | 4 | 4 | 1 |
671 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: D = None
self.w: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: D = 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: B = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: B = None
self.w: C = 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 = A("h")
i = D("i")
a.z = c
a.y = h
a.w = h
a.v = h
a.x = i
b.z = d
b.x = d
b.y = a
c.z = d
d.z = b
d.y = b
e.z = a
e.y = a
e.x = b
e.w = c
f.z = b
f.y = b
g.z = b
g.y = b
h.z = c
h.y = a
h.w = a
h.v = a
h.x = d
i.z = b
i.y = b
assert d.y.y.x.z.y.z.z.z.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: D = None
self.w: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: D = 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: B = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: B = None
self.w: C = 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 = A("h")
i = D("i")
a.z = c
a.y = h
a.w = h
a.v = h
a.x = i
b.z = d
b.x = d
b.y = a
c.z = d
d.z = b
d.y = b
e.z = a
e.y = a
e.x = b
e.w = c
f.z = b
f.y = b
g.z = b
g.y = b
h.z = c
h.y = a
h.w = a
h.v = a
h.x = d
i.z = b
i.y = b
assert d.y.y.x.z.y.z.z.z.z.txt == "d" | 9 | 16 | 1.777778 | 0.222222 | 5 | 1.8 | 5 | 1 | 3 | 9 | 3 | 2 | 5 | 0.555556 | 8 | 0.5 | 5 | 2 | 9 | 5 | 3 | 5 | 4 | 2 |
672 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: E = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = 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: B = None
self.x: B = None
self.w: C = 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 = D("g")
h = B("h")
i = B("i")
a.z = c
a.y = i
a.x = g
b.z = a
b.w = a
b.y = f
b.x = e
c.z = i
c.y = b
c.x = g
d.z = e
d.y = i
d.x = c
e.z = c
e.w = c
e.y = b
e.x = b
e.v = a
f.z = c
f.w = c
f.y = h
f.x = b
f.v = a
g.z = f
g.y = b
g.x = c
h.z = a
h.w = a
h.y = e
h.x = e
i.z = a
i.w = a
i.y = f
i.x = f
assert h.w.x.z.v.x.z.y.w.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: E = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = 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: B = None
self.x: B = None
self.w: C = 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 = D("g")
h = B("h")
i = B("i")
a.z = c
a.y = i
a.x = g
b.z = a
b.w = a
b.y = f
b.x = e
c.z = i
c.y = b
c.x = g
d.z = e
d.y = i
d.x = c
e.z = c
e.w = c
e.y = b
e.x = b
e.v = a
f.z = c
f.w = c
f.y = h
f.x = b
f.v = a
g.z = f
g.y = b
g.x = c
h.z = a
h.w = a
h.y = e
h.x = e
i.z = a
i.w = a
i.y = f
i.x = f
assert h.w.x.z.v.x.z.y.w.txt == "a" | 9 | 26 | 2.888889 | 0.361111 | 5 | 1.8 | 5 | 3 | 3.6 | 8 | 3 | 2 | 4 | 0.444444 | 5 | 0.192308 | 5 | 3 | 7 | 4.5 | 5 | 2 | 1 | 2 |
673 | class A:
def __init__(self, txt: str):
self.z: H = None
self.y: C = None
self.x: H = None
self.w: C = 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: A = None
self.y: H = None
self.x: A = None
self.w: A = None
self.v: A = None
self.u: A = None
self.t: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: F = 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: I = None
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.y: I = None
self.x: B = None
self.w: C = None
self.v: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: G = None
self.w: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: C = 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 = H("h")
i = I("i")
a.z = h
a.x = h
a.y = c
a.w = c
b.z = f
c.z = a
c.x = a
c.w = a
c.v = a
c.u = a
c.y = h
c.t = i
d.z = e
d.y = b
d.x = f
e.z = h
f.z = i
f.y = d
g.z = e
g.y = i
g.x = b
g.w = c
g.v = c
h.z = d
h.y = d
h.x = g
h.w = g
i.z = c
i.y = f
i.x = f
assert e.z.x.y.z.t.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: H = None
self.y: C = None
self.x: H = None
self.w: C = 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: A = None
self.y: H = None
self.x: A = None
self.w: A = None
self.v: A = None
self.u: A = None
self.t: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.x: F = 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: I = None
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.y: I = None
self.x: B = None
self.w: C = None
self.v: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: G = None
self.w: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: C = 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 = H("h")
i = I("i")
a.z = h
a.x = h
a.y = c
a.w = c
b.z = f
c.z = a
c.x = a
c.w = a
c.v = a
c.u = a
c.y = h
c.t = i
d.z = e
d.y = b
d.x = f
e.z = h
f.z = i
f.y = d
g.z = e
g.y = i
g.x = b
g.w = c
g.v = c
h.z = d
h.y = d
h.x = g
h.w = g
i.z = c
i.y = f
i.x = f
assert e.z.x.y.z.t.txt == "i" | 9 | 20 | 2.222222 | 0.277778 | 9 | 1 | 7 | 1 | 3.333333 | 5 | 2 | 1 | 5 | 0.555556 | 5 | 0.25 | 1 | 2 | 2 | 2 | 4 | 2 | 1 | 1 |
674 | 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: H = None
self.y: C = None
self.x: E = None
self.w: D = None
self.v: E = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: H = None
self.y: A = None
self.x: A = None
self.w: H = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: E = None
self.w: A = None
self.v: H = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: H = None
self.w: A = None
self.v: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.x: C = None
self.w: B = None
self.v: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: A = None
self.w: A = None
self.v: D = None
self.u: E = None
self.t: 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")
i = D("i")
a.z = f
a.y = e
b.z = h
b.y = c
b.x = e
b.v = e
b.w = i
b.u = d
c.z = h
c.w = h
c.y = a
c.x = a
c.v = b
d.z = e
d.x = e
d.y = c
d.u = c
d.w = a
d.v = h
e.z = a
e.y = f
e.x = f
f.z = i
f.y = c
f.v = c
f.x = h
f.w = a
g.z = d
g.y = f
g.x = c
g.w = b
g.v = i
h.z = a
h.y = a
h.x = a
h.w = a
h.v = d
h.u = e
h.t = f
i.z = e
i.x = e
i.y = c
i.u = c
i.w = a
i.v = h
assert b.z.u.z.z.v.w.y.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: H = None
self.y: C = None
self.x: E = None
self.w: D = None
self.v: E = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: H = None
self.y: A = None
self.x: A = None
self.w: H = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: E = None
self.w: A = None
self.v: H = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: H = None
self.w: A = None
self.v: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.x: C = None
self.w: B = None
self.v: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: A = None
self.w: A = None
self.v: D = None
self.u: E = None
self.t: 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")
i = D("i")
a.z = f
a.y = e
b.z = h
b.y = c
b.x = e
b.v = e
b.w = i
b.u = d
c.z = h
c.w = h
c.y = a
c.x = a
c.v = b
d.z = e
d.x = e
d.y = c
d.u = c
d.w = a
d.v = h
e.z = a
e.y = f
e.x = f
f.z = i
f.y = c
f.v = c
f.x = h
f.w = a
g.z = d
g.y = f
g.x = c
g.w = b
g.v = i
h.z = a
h.y = a
h.x = a
h.w = a
h.v = d
h.u = e
h.t = f
i.z = e
i.x = e
i.y = c
i.u = c
i.w = a
i.v = h
assert b.z.u.z.z.v.w.y.y.txt == "e" | 9 | 33 | 3.666667 | 0.458333 | 8 | 1.125 | 7 | 2 | 4.875 | 8 | 2 | 1 | 6 | 0.666667 | 8 | 0.242424 | 3 | 4 | 6 | 5 | 5 | 3 | 2 | 2 |
675 | 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: B = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = A("d")
e = A("e")
f = B("f")
g = B("g")
h = A("h")
i = A("i")
a.z = f
a.y = c
b.z = g
c.z = f
d.z = f
d.y = c
e.z = f
e.y = b
f.z = c
g.z = c
h.z = f
h.y = g
i.z = b
i.y = f
assert c.z.z.z.z.z.txt == " | f" | 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: B = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = A("d")
e = A("e")
f = B("f")
g = B("g")
h = A("h")
i = A("i")
a.z = f
a.y = c
b.z = g
c.z = f
d.z = f
d.y = c
e.z = f
e.y = b
f.z = c
g.z = c
h.z = f
h.y = g
i.z = b
i.y = f
assert c.z.z.z.z.z.txt == "f" | 9 | 14 | 1.555556 | 0.194444 | 2 | 4.5 | 2 | 1 | 1.5 | 5 | 3 | 3 | 2 | 0.222222 | 2 | 0.142857 | 4 | 2 | 4 | 2.666667 | 1 | 5 | 5 | 1 |
676 | class A:
def __init__(self, txt: str):
self.z: G = None
self.y: I = None
self.x: B = None
self.w: E = None
self.v: D = None
self.u: C = None
self.t: G = None
self.s: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: E = 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: E = None
self.y: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: I = None
self.x: G = None
self.w: I = None
self.v: I = None
self.u: F = None
self.t: F = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: H = None
self.w: G = None
self.v: D = None
self.u: D = None
self.t: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: B = None
self.w: H = None
self.v: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.x: E = None
self.w: F = None
self.v: E = None
self.u: B = None
self.t: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: C = None
self.w: F = None
self.v: B = None
self.u: G = None
self.t: B = None
self.s: H = 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")
i = I("i")
a.z = g
a.t = g
a.y = i
a.x = b
a.w = e
a.v = d
a.u = c
a.s = h
b.z = e
b.y = e
c.z = g
d.z = e
d.y = i
e.z = g
e.x = g
e.s = g
e.y = i
e.w = i
e.v = i
e.u = f
e.t = f
f.z = c
f.y = b
f.x = h
f.w = g
f.v = d
f.u = d
f.t = i
g.z = d
g.y = b
g.x = b
g.w = h
g.v = c
h.z = g
h.y = a
h.x = e
h.v = e
h.w = f
h.t = f
h.u = b
i.z = a
i.y = f
i.w = f
i.x = c
i.v = b
i.t = b
i.u = g
i.s = h
assert c.z.w.w.z.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: G = None
self.y: I = None
self.x: B = None
self.w: E = None
self.v: D = None
self.u: C = None
self.t: G = None
self.s: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: E = 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: E = None
self.y: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: I = None
self.x: G = None
self.w: I = None
self.v: I = None
self.u: F = None
self.t: F = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: H = None
self.w: G = None
self.v: D = None
self.u: D = None
self.t: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: B = None
self.w: H = None
self.v: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.x: E = None
self.w: F = None
self.v: E = None
self.u: B = None
self.t: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: C = None
self.w: F = None
self.v: B = None
self.u: G = None
self.t: B = None
self.s: H = 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")
i = I("i")
a.z = g
a.t = g
a.y = i
a.x = b
a.w = e
a.v = d
a.u = c
a.s = h
b.z = e
b.y = e
c.z = g
d.z = e
d.y = i
e.z = g
e.x = g
e.s = g
e.y = i
e.w = i
e.v = i
e.u = f
e.t = f
f.z = c
f.y = b
f.x = h
f.w = g
f.v = d
f.u = d
f.t = i
g.z = d
g.y = b
g.x = b
g.w = h
g.v = c
h.z = g
h.y = a
h.x = e
h.v = e
h.w = f
h.t = f
h.u = b
i.z = a
i.y = f
i.w = f
i.x = c
i.v = b
i.t = b
i.u = g
i.s = h
assert c.z.w.w.z.z.txt == "g" | 9 | 35 | 3.888889 | 0.486111 | 9 | 1 | 8 | 1 | 5.333333 | 5 | 2 | 2 | 4 | 0.444444 | 4 | 0.114286 | 2 | 4 | 4 | 4 | 2 | 3 | 2 | 1 |
677 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: C = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: B = None
self.w: 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: B = None
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = A("e")
f = B("f")
g = C("g")
h = B("h")
i = D("i")
a.z = f
a.y = e
a.x = c
a.w = d
b.z = c
b.y = f
b.x = f
b.w = h
c.z = f
d.z = h
d.y = h
d.x = f
e.z = b
e.y = a
e.x = g
e.w = i
f.z = g
f.y = b
f.x = b
f.w = b
g.z = b
h.z = g
h.y = b
h.w = b
h.x = f
i.z = f
i.y = f
i.x = f
assert b.z.z.x.w.x.z.z.x.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: C = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: B = None
self.w: 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: B = None
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = A("e")
f = B("f")
g = C("g")
h = B("h")
i = D("i")
a.z = f
a.y = e
a.x = c
a.w = d
b.z = c
b.y = f
b.x = f
b.w = h
c.z = f
d.z = h
d.y = h
d.x = f
e.z = b
e.y = a
e.x = g
e.w = i
f.z = g
f.y = b
f.x = b
f.w = b
g.z = b
h.z = g
h.y = b
h.w = b
h.x = f
i.z = f
i.y = f
i.x = f
assert b.z.z.x.w.x.z.z.x.txt == "f" | 9 | 21 | 2.333333 | 0.291667 | 4 | 2.25 | 4 | 1 | 3 | 8 | 3 | 1 | 5 | 0.555556 | 8 | 0.380952 | 4 | 3 | 7 | 4.333333 | 3 | 4 | 2 | 3 |
678 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: G = None
self.x: D = None
self.w: C = None
self.v: F = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: A = None
self.w: C = None
self.v: E = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.y: G = None
self.x: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: D = None
self.x: B = None
self.w: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.y: E = 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: D = None
self.y: C = None
self.x: 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 = A("h")
i = F("i")
a.z = c
a.w = c
a.y = g
a.x = d
a.v = f
a.u = b
b.z = h
b.x = h
b.y = e
b.v = e
b.w = c
b.u = i
c.z = g
c.y = g
c.x = f
d.z = b
d.y = e
d.x = a
e.z = g
e.w = g
e.y = d
e.x = b
f.z = g
f.y = e
f.x = c
f.w = h
f.v = a
g.z = d
g.x = d
g.y = c
h.z = c
h.w = c
h.y = g
h.x = d
h.v = i
h.u = b
i.z = g
i.y = e
i.x = c
i.w = h
i.v = a
assert d.y.y.x.z.x.v.y.y.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: G = None
self.x: D = None
self.w: C = None
self.v: F = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: A = None
self.w: C = None
self.v: E = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.y: G = None
self.x: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: D = None
self.x: B = None
self.w: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.y: E = 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: D = None
self.y: C = None
self.x: 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 = A("h")
i = F("i")
a.z = c
a.w = c
a.y = g
a.x = d
a.v = f
a.u = b
b.z = h
b.x = h
b.y = e
b.v = e
b.w = c
b.u = i
c.z = g
c.y = g
c.x = f
d.z = b
d.y = e
d.x = a
e.z = g
e.w = g
e.y = d
e.x = b
f.z = g
f.y = e
f.x = c
f.w = h
f.v = a
g.z = d
g.x = d
g.y = c
h.z = c
h.w = c
h.y = g
h.x = d
h.v = i
h.u = b
i.z = g
i.y = e
i.x = c
i.w = h
i.v = a
assert d.y.y.x.z.x.v.y.y.z.txt == "g" | 9 | 34 | 3.777778 | 0.472222 | 7 | 1.285714 | 6 | 3 | 4.285714 | 9 | 2 | 1 | 6 | 0.666667 | 9 | 0.264706 | 4 | 2 | 4 | 2.75 | 4 | 4 | 2 | 2 |
679 | 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: A = None
self.y: A = None
self.x: A = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: A = 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 = A("e")
f = D("f")
g = D("g")
h = C("h")
i = C("i")
a.z = d
a.y = c
a.x = f
b.z = e
b.x = e
b.y = a
b.w = a
c.z = i
c.y = e
d.z = e
d.y = e
d.x = e
d.w = g
e.z = g
e.y = c
e.x = d
f.z = a
f.x = a
f.y = e
f.w = d
g.z = a
g.y = e
g.x = e
g.w = f
h.z = c
h.y = a
i.z = h
i.y = e
assert h.z.z.y.x.w.x.y.z.y.txt == " | e" | 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: A = None
self.y: A = None
self.x: A = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: A = 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 = A("e")
f = D("f")
g = D("g")
h = C("h")
i = C("i")
a.z = d
a.y = c
a.x = f
b.z = e
b.x = e
b.y = a
b.w = a
c.z = i
c.y = e
d.z = e
d.y = e
d.x = e
d.w = g
e.z = g
e.y = c
e.x = d
f.z = a
f.x = a
f.y = e
f.w = d
g.z = a
g.y = e
g.x = e
g.w = f
h.z = c
h.y = a
i.z = h
i.y = e
assert h.z.z.y.x.w.x.y.z.y.txt == "e" | 9 | 22 | 2.444444 | 0.305556 | 4 | 2.25 | 4 | 2 | 3.25 | 9 | 3 | 2 | 6 | 0.666667 | 7 | 0.318182 | 4 | 3 | 6 | 4.8 | 4 | 3 | 2 | 2 |
680 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: E = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: H = None
self.x: H = None
self.w: A = 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: H = None
self.x: H = None
self.w: E = None
self.v: C = None
self.u: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: F = None
self.x: D = None
self.w: B = None
self.v: E = None
self.u: F = None
self.t: D = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: D = None
self.w: B = None
self.v: A = None
self.u: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = 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")
i = E("i")
a.z = b
a.y = c
a.w = c
a.x = e
b.z = e
b.y = h
b.x = h
b.w = a
c.z = g
d.z = h
d.y = h
d.x = h
d.w = i
d.u = i
d.v = c
e.z = c
e.y = f
e.u = f
e.x = d
e.t = d
e.w = b
e.s = b
e.v = i
f.z = a
f.v = a
f.y = c
f.x = d
f.u = d
f.w = b
g.z = c
h.z = g
i.z = c
i.y = f
i.u = f
i.x = d
i.t = d
i.w = b
i.s = b
i.v = e
assert b.w.y.z.z.z.z.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: E = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: H = None
self.x: H = None
self.w: A = 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: H = None
self.x: H = None
self.w: E = None
self.v: C = None
self.u: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: F = None
self.x: D = None
self.w: B = None
self.v: E = None
self.u: F = None
self.t: D = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: D = None
self.w: B = None
self.v: A = None
self.u: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = 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")
i = E("i")
a.z = b
a.y = c
a.w = c
a.x = e
b.z = e
b.y = h
b.x = h
b.w = a
c.z = g
d.z = h
d.y = h
d.x = h
d.w = i
d.u = i
d.v = c
e.z = c
e.y = f
e.u = f
e.x = d
e.t = d
e.w = b
e.s = b
e.v = i
f.z = a
f.v = a
f.y = c
f.x = d
f.u = d
f.w = b
g.z = c
h.z = g
i.z = c
i.y = f
i.u = f
i.x = d
i.t = d
i.w = b
i.s = b
i.v = e
assert b.w.y.z.z.z.z.z.txt == "g" | 9 | 26 | 2.888889 | 0.361111 | 8 | 1.125 | 8 | 1 | 3.875 | 7 | 3 | 3 | 4 | 0.444444 | 4 | 0.153846 | 4 | 2 | 4 | 2.666667 | 3 | 5 | 5 | 1 |
681 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: D = None
self.w: C = None
self.v: F = 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: A = None
self.y: A = None
self.x: E = None
self.w: G = None
self.v: F = None
self.u: B = None
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: F = None
self.x: E = None
self.w: E = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: B = 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 = E("h")
i = E("i")
a.z = i
a.y = c
a.w = c
a.x = d
a.v = f
b.z = d
b.y = a
c.z = a
c.y = a
c.x = h
c.w = g
c.v = f
c.u = b
c.t = b
d.z = g
d.y = b
e.z = g
e.y = f
e.x = h
e.w = h
f.z = b
f.y = b
g.z = c
h.z = g
h.y = f
h.x = i
h.w = e
i.z = g
i.y = f
i.x = h
i.w = e
assert h.z.z.w.z.x.y.z.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: D = None
self.w: C = None
self.v: F = 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: A = None
self.y: A = None
self.x: E = None
self.w: G = None
self.v: F = None
self.u: B = None
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: F = None
self.x: E = None
self.w: E = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: B = 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 = E("h")
i = E("i")
a.z = i
a.y = c
a.w = c
a.x = d
a.v = f
b.z = d
b.y = a
c.z = a
c.y = a
c.x = h
c.w = g
c.v = f
c.u = b
c.t = b
d.z = g
d.y = b
e.z = g
e.y = f
e.x = h
e.w = h
f.z = b
f.y = b
g.z = c
h.z = g
h.y = f
h.x = i
h.w = e
i.z = g
i.y = f
i.x = h
i.w = e
assert h.z.z.w.z.x.y.z.z.txt == "d" | 9 | 26 | 2.888889 | 0.361111 | 7 | 1.285714 | 7 | 1 | 3.285714 | 8 | 2 | 2 | 6 | 0.666667 | 7 | 0.269231 | 3 | 2 | 5 | 3 | 4 | 5 | 2 | 2 |
682 | 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: A = None
self.x: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.x: A = None
self.w: D = None
self.v: A = None
self.u: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: C = None
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.x: A = 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.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 = A("h")
i = E("i")
a.z = e
b.z = a
b.y = h
b.x = f
c.z = g
c.u = g
c.y = b
c.x = h
c.v = h
c.w = d
d.z = f
d.y = c
d.x = b
e.z = g
e.y = b
e.x = h
f.z = a
f.y = d
f.x = b
f.w = g
g.z = c
h.z = e
i.z = g
i.y = b
i.x = a
assert e.x.z.y.y.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: A = None
self.y: A = None
self.x: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.x: A = None
self.w: D = None
self.v: A = None
self.u: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.y: C = None
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.x: A = 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.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 = A("h")
i = E("i")
a.z = e
b.z = a
b.y = h
b.x = f
c.z = g
c.u = g
c.y = b
c.x = h
c.v = h
c.w = d
d.z = f
d.y = c
d.x = b
e.z = g
e.y = b
e.x = h
f.z = a
f.y = d
f.x = b
f.w = g
g.z = c
h.z = e
i.z = g
i.y = b
i.x = a
assert e.x.z.y.y.txt == "h" | 9 | 23 | 2.555556 | 0.319444 | 7 | 1.285714 | 6 | 1 | 3 | 4 | 2 | 1 | 3 | 0.333333 | 4 | 0.173913 | 2 | 2 | 3 | 2.5 | 3 | 2 | 2 | 2 |
683 | 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: C = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: C = None
self.w: A = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: C = None
self.w: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = D("f")
g = A("g")
h = B("h")
i = A("i")
a.z = f
b.z = e
b.y = c
b.x = a
c.z = g
c.y = b
c.x = e
d.z = e
d.y = e
d.x = c
d.v = c
d.w = g
e.z = g
e.y = b
e.x = c
e.w = c
f.z = e
f.y = e
f.x = c
f.v = c
f.w = g
g.z = f
h.z = e
h.y = c
h.x = g
i.z = f
assert g.z.w.z.v.x.z.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: E = None
self.y: C = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: C = None
self.w: A = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.x: C = None
self.w: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = D("d")
e = E("e")
f = D("f")
g = A("g")
h = B("h")
i = A("i")
a.z = f
b.z = e
b.y = c
b.x = a
c.z = g
c.y = b
c.x = e
d.z = e
d.y = e
d.x = c
d.v = c
d.w = g
e.z = g
e.y = b
e.x = c
e.w = c
f.z = e
f.y = e
f.x = c
f.v = c
f.w = g
g.z = f
h.z = e
h.y = c
h.x = g
i.z = f
assert g.z.w.z.v.x.z.txt == "g" | 9 | 21 | 2.333333 | 0.291667 | 5 | 1.8 | 5 | 1 | 3.2 | 6 | 3 | 2 | 4 | 0.444444 | 5 | 0.238095 | 3 | 2 | 6 | 3.5 | 4 | 3 | 1 | 2 |
684 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: H = None
self.x: B = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: H = None
self.w: G = None
self.v: H = None
self.u: G = None
self.t: 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: H = None
self.y: C = None
self.x: G = None
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: D = None
self.x: A = 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: E = None
self.w: C = None
self.v: D = None
self.txt = txt
class H:
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 = H("h")
i = F("i")
a.z = c
a.w = c
a.y = h
a.x = b
b.z = a
b.y = i
b.x = h
b.v = h
b.w = g
b.u = g
b.t = d
c.z = b
d.z = h
d.y = c
d.x = g
d.w = g
e.z = a
e.x = a
e.y = f
f.z = h
f.y = d
f.x = a
f.w = g
g.z = c
g.w = c
g.y = b
g.x = e
g.v = d
h.z = i
i.z = h
i.y = d
i.x = a
i.w = g
assert i.w.x.y.x.x.v.z.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: H = None
self.x: B = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: H = None
self.w: G = None
self.v: H = None
self.u: G = None
self.t: 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: H = None
self.y: C = None
self.x: G = None
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: F = None
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.y: D = None
self.x: A = 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: E = None
self.w: C = None
self.v: D = None
self.txt = txt
class H:
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 = H("h")
i = F("i")
a.z = c
a.w = c
a.y = h
a.x = b
b.z = a
b.y = i
b.x = h
b.v = h
b.w = g
b.u = g
b.t = d
c.z = b
d.z = h
d.y = c
d.x = g
d.w = g
e.z = a
e.x = a
e.y = f
f.z = h
f.y = d
f.x = a
f.w = g
g.z = c
g.w = c
g.y = b
g.x = e
g.v = d
h.z = i
i.z = h
i.y = d
i.x = a
i.w = g
assert i.w.x.y.x.x.v.z.txt == "i" | 9 | 27 | 3 | 0.375 | 8 | 1.125 | 7 | 1 | 3.625 | 7 | 2 | 1 | 7 | 0.777778 | 7 | 0.259259 | 1 | 7 | 7 | 7 | 5 | 3 | 2 | 1 |
685 | class A:
def __init__(self, txt: str):
self.z: H = 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: H = None
self.y: F = None
self.x: A = None
self.w: A = None
self.v: H = None
self.u: H = None
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: E = None
self.w: H = None
self.v: G = None
self.u: E = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = 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: F = None
self.x: E = None
self.w: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: A = None
self.w: B = None
self.v: E = None
self.u: G = None
self.t: 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")
i = G("i")
a.z = h
b.z = f
c.z = h
c.v = h
c.u = h
c.y = f
c.x = a
c.w = a
c.t = b
d.z = e
d.x = e
d.u = e
d.y = c
d.w = h
d.v = i
d.t = g
e.z = b
e.y = b
e.x = b
f.z = i
f.y = e
f.x = h
g.z = f
g.y = f
g.x = e
g.w = e
h.z = a
h.x = a
h.y = e
h.v = e
h.w = b
h.t = b
h.u = i
i.z = f
i.y = f
i.x = e
i.w = e
assert g.y.y.y.z.z.y.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: H = 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: H = None
self.y: F = None
self.x: A = None
self.w: A = None
self.v: H = None
self.u: H = None
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: E = None
self.w: H = None
self.v: G = None
self.u: E = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = 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: F = None
self.x: E = None
self.w: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.y: E = None
self.x: A = None
self.w: B = None
self.v: E = None
self.u: G = None
self.t: 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")
i = G("i")
a.z = h
b.z = f
c.z = h
c.v = h
c.u = h
c.y = f
c.x = a
c.w = a
c.t = b
d.z = e
d.x = e
d.u = e
d.y = c
d.w = h
d.v = i
d.t = g
e.z = b
e.y = b
e.x = b
f.z = i
f.y = e
f.x = h
g.z = f
g.y = f
g.x = e
g.w = e
h.z = a
h.x = a
h.y = e
h.v = e
h.w = b
h.t = b
h.u = i
i.z = f
i.y = f
i.x = e
i.w = e
assert g.y.y.y.z.z.y.txt == "f" | 9 | 23 | 2.555556 | 0.319444 | 8 | 1.125 | 7 | 1 | 4.125 | 6 | 3 | 1 | 5 | 0.555556 | 6 | 0.26087 | 2 | 2 | 5 | 3.333333 | 2 | 4 | 3 | 2 |
686 | 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 = A("d")
e = A("e")
f = B("f")
g = B("g")
h = A("h")
i = B("i")
a.z = h
b.z = g
b.y = d
c.z = g
c.y = a
d.z = h
e.z = h
f.z = g
f.y = e
g.z = b
g.y = a
h.z = d
i.z = b
i.y = h
assert h.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 = A("d")
e = A("e")
f = B("f")
g = B("g")
h = A("h")
i = B("i")
a.z = h
b.z = g
b.y = d
c.z = g
c.y = a
d.z = h
e.z = h
f.z = g
f.y = e
g.z = b
g.y = a
h.z = d
i.z = b
i.y = h
assert h.z.z.z.z.txt == "h" | 9 | 14 | 1.555556 | 0.194444 | 2 | 4.5 | 2 | 1 | 1.5 | 4 | 3 | 2 | 2 | 0.222222 | 2 | 0.142857 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
687 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: B = 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.y: B = None
self.x: B = 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 = A("h")
i = A("i")
a.z = c
a.y = b
a.x = f
b.z = f
c.z = f
c.y = f
c.x = b
d.z = f
d.y = f
d.x = b
e.z = c
e.y = f
e.x = b
f.z = b
g.z = b
g.y = f
g.x = f
h.z = c
h.y = b
h.x = f
i.z = d
i.y = f
i.x = f
assert e.z.z.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.x: B = 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.y: B = None
self.x: B = 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 = A("h")
i = A("i")
a.z = c
a.y = b
a.x = f
b.z = f
c.z = f
c.y = f
c.x = b
d.z = f
d.y = f
d.x = b
e.z = c
e.y = f
e.x = b
f.z = b
g.z = b
g.y = f
g.x = f
h.z = c
h.y = b
h.x = f
i.z = d
i.y = f
i.x = f
assert e.z.z.z.txt == "b" | 9 | 19 | 2.111111 | 0.263889 | 3 | 3 | 3 | 1 | 2.333333 | 3 | 1 | 1 | 4 | 0.444444 | 3 | 0.157895 | 0 | null | null | null | 1 | 3 | 3 | 1 |
688 | 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: B = 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.y: A = 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 = C("h")
i = A("i")
a.z = b
a.y = b
b.z = g
b.y = a
c.z = b
c.y = a
d.z = b
d.y = i
e.z = g
e.y = a
f.z = g
f.y = i
g.z = b
g.y = a
h.z = g
h.y = a
i.z = b
i.y = g
assert a.z.y.y.y.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: B = 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.y: A = 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 = C("h")
i = A("i")
a.z = b
a.y = b
b.z = g
b.y = a
c.z = b
c.y = a
d.z = b
d.y = i
e.z = g
e.y = a
f.z = g
f.y = i
g.z = b
g.y = a
h.z = g
h.y = a
i.z = b
i.y = g
assert a.z.y.y.y.txt == "a" | 9 | 17 | 1.888889 | 0.236111 | 4 | 2.25 | 2 | 2 | 2 | 4 | 3 | 2 | 2 | 0.222222 | 3 | 0.176471 | 3 | 2 | 4 | 2.5 | 2 | 3 | 3 | 2 |
689 | 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: D = None
self.y: E = None
self.x: B = None
self.w: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: B = 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: D = 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 = B("h")
i = C("i")
a.z = f
a.y = c
b.z = d
b.w = d
b.y = e
b.x = g
c.z = e
c.y = b
d.z = e
e.z = d
f.z = a
f.y = i
g.z = d
g.w = d
g.y = e
g.x = b
h.z = d
h.w = d
h.y = e
h.x = b
i.z = e
i.y = h
assert h.y.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: D = None
self.y: E = None
self.x: B = None
self.w: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: B = 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: D = 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 = B("h")
i = C("i")
a.z = f
a.y = c
b.z = d
b.w = d
b.y = e
b.x = g
c.z = e
c.y = b
d.z = e
e.z = d
f.z = a
f.y = i
g.z = d
g.w = d
g.y = e
g.x = b
h.z = d
h.w = d
h.y = e
h.x = b
i.z = e
i.y = h
assert h.y.z.z.txt == "e" | 9 | 19 | 2.111111 | 0.263889 | 5 | 1.8 | 4 | 1 | 2 | 3 | 2 | 1 | 3 | 0.333333 | 3 | 0.157895 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
690 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: D = None
self.w: C = None
self.v: G = None
self.u: C = None
self.t: G = None
self.s: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: H = None
self.x: I = None
self.w: F = None
self.v: A = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: F = None
self.w: I = None
self.v: E = None
self.u: D = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: C = None
self.w: A = None
self.v: G = None
self.u: B = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.x: A = None
self.w: C = None
self.v: H = None
self.u: D = None
self.t: G = None
self.s: I = None
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: E = None
self.w: A = None
self.v: B = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: F = None
self.w: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: G = None
self.w: D = None
self.v: A = None
self.u: A = None
self.t: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: H = 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")
i = I("i")
a.z = e
a.y = d
a.x = d
a.w = c
a.u = c
a.v = g
a.t = g
a.s = f
b.z = a
b.v = a
b.y = h
b.x = i
b.w = f
b.u = d
c.z = f
c.x = f
c.y = e
c.v = e
c.w = i
c.u = d
c.t = d
d.z = e
d.y = c
d.x = c
d.w = a
d.v = g
d.t = g
d.u = b
e.z = g
e.t = g
e.y = a
e.x = a
e.r = a
e.w = c
e.v = h
e.u = d
e.s = i
f.z = e
f.x = e
f.u = e
f.y = d
f.w = a
f.v = b
g.z = d
g.y = e
g.w = e
g.x = f
h.z = e
h.y = e
h.x = g
h.w = d
h.v = a
h.u = a
h.t = a
i.z = d
i.y = b
i.x = h
assert c.z.u.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: D = None
self.w: C = None
self.v: G = None
self.u: C = None
self.t: G = None
self.s: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: H = None
self.x: I = None
self.w: F = None
self.v: A = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: F = None
self.w: I = None
self.v: E = None
self.u: D = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: C = None
self.w: A = None
self.v: G = None
self.u: B = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.y: A = None
self.x: A = None
self.w: C = None
self.v: H = None
self.u: D = None
self.t: G = None
self.s: I = None
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: E = None
self.w: A = None
self.v: B = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.x: F = None
self.w: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: E = None
self.y: E = None
self.x: G = None
self.w: D = None
self.v: A = None
self.u: A = None
self.t: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: D = None
self.y: B = None
self.x: H = 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")
i = I("i")
a.z = e
a.y = d
a.x = d
a.w = c
a.u = c
a.v = g
a.t = g
a.s = f
b.z = a
b.v = a
b.y = h
b.x = i
b.w = f
b.u = d
c.z = f
c.x = f
c.y = e
c.v = e
c.w = i
c.u = d
c.t = d
d.z = e
d.y = c
d.x = c
d.w = a
d.v = g
d.t = g
d.u = b
e.z = g
e.t = g
e.y = a
e.x = a
e.r = a
e.w = c
e.v = h
e.u = d
e.s = i
f.z = e
f.x = e
f.u = e
f.y = d
f.w = a
f.v = b
g.z = d
g.y = e
g.w = e
g.x = f
h.z = e
h.y = e
h.x = g
h.w = d
h.v = a
h.u = a
h.t = a
i.z = d
i.y = b
i.x = h
assert c.z.u.y.txt == "a" | 9 | 39 | 4.333333 | 0.541667 | 9 | 1 | 9 | 3 | 6.333333 | 3 | 1 | 1 | 4 | 0.444444 | 3 | 0.076923 | 0 | null | null | null | 3 | 1 | 1 | 1 |
691 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = A("e")
f = B("f")
g = A("g")
h = C("h")
i = A("i")
a.z = i
a.y = d
a.x = c
b.z = d
b.y = i
b.x = a
c.z = i
c.y = a
c.x = h
d.z = a
d.y = e
d.x = c
e.z = i
e.y = d
e.x = c
f.z = h
f.y = e
f.x = a
g.z = a
g.y = h
g.x = d
h.z = i
h.y = g
h.x = d
i.z = g
i.y = h
i.x = c
assert h.x.z.x.z.x.x.z.y.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: A = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: C = None
self.txt = txt
a = A("a")
b = B("b")
c = C("c")
d = C("d")
e = A("e")
f = B("f")
g = A("g")
h = C("h")
i = A("i")
a.z = i
a.y = d
a.x = c
b.z = d
b.y = i
b.x = a
c.z = i
c.y = a
c.x = h
d.z = a
d.y = e
d.x = c
e.z = i
e.y = d
e.x = c
f.z = h
f.y = e
f.x = a
g.z = a
g.y = h
g.x = d
h.z = i
h.y = g
h.x = d
i.z = g
i.y = h
i.x = c
assert h.x.z.x.z.x.x.z.y.txt == "h" | 9 | 27 | 3 | 0.375 | 3 | 3 | 3 | 3 | 3 | 8 | 3 | 1 | 5 | 0.555556 | 8 | 0.296296 | 4 | 2 | 8 | 4.2 | 3 | 4 | 2 | 2 |
692 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: A = None
self.w: C = None
self.v: 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: B = None
self.y: B = None
self.x: D = 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: E = None
self.x: B = 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 = E("f")
g = A("g")
h = B("h")
i = D("i")
a.z = b
a.y = c
a.w = c
a.x = g
a.v = e
b.z = g
c.z = h
c.y = b
c.x = d
d.z = h
e.z = c
e.y = f
e.x = b
e.v = b
e.w = h
f.z = c
f.y = e
f.x = h
f.w = h
f.v = h
g.z = b
g.y = c
g.w = c
g.x = a
g.v = e
h.z = a
i.z = h
assert d.z.z.y.y.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: C = None
self.x: A = None
self.w: C = None
self.v: 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: B = None
self.y: B = None
self.x: D = 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: E = None
self.x: B = 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 = E("f")
g = A("g")
h = B("h")
i = D("i")
a.z = b
a.y = c
a.w = c
a.x = g
a.v = e
b.z = g
c.z = h
c.y = b
c.x = d
d.z = h
e.z = c
e.y = f
e.x = b
e.v = b
e.w = h
f.z = c
f.y = e
f.x = h
f.w = h
f.v = h
g.z = b
g.y = c
g.w = c
g.x = a
g.v = e
h.z = a
i.z = h
assert d.z.z.y.y.z.txt == "g" | 9 | 22 | 2.444444 | 0.305556 | 5 | 1.8 | 5 | 1 | 3 | 5 | 1 | 1 | 6 | 0.666667 | 5 | 0.227273 | 0 | null | null | null | 2 | 3 | 2 | 1 |
693 | 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.y: 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 = B("h")
i = B("i")
a.z = d
b.z = d
b.y = f
c.z = a
d.z = c
e.z = c
e.y = i
f.z = a
f.y = b
g.z = c
g.y = b
h.z = d
h.y = e
i.z = a
i.y = g
assert e.z.z.z.z.z.z.z.z.z.txt == " | d" | 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.y: 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 = B("h")
i = B("i")
a.z = d
b.z = d
b.y = f
c.z = a
d.z = c
e.z = c
e.y = i
f.z = a
f.y = b
g.z = c
g.y = b
h.z = d
h.y = e
i.z = a
i.y = g
assert e.z.z.z.z.z.z.z.z.z.txt == "d" | 9 | 15 | 1.666667 | 0.208333 | 2 | 4.5 | 2 | 1 | 1.5 | 9 | 3 | 3 | 4 | 0.444444 | 4 | 0.266667 | 6 | 3 | 6 | 4 | 1 | 9 | 9 | 1 |
694 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: B = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = 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 = B("e")
f = D("f")
g = C("g")
h = A("h")
i = D("i")
a.z = f
a.y = d
a.x = c
b.z = d
b.y = g
b.x = g
c.z = a
c.y = h
c.x = e
c.w = d
d.z = i
d.y = h
d.x = a
e.z = i
e.y = g
e.x = c
f.z = d
f.y = h
f.x = h
g.z = a
g.y = h
g.x = e
g.w = f
h.z = i
h.y = d
h.x = c
i.z = f
i.y = a
i.x = h
assert d.y.z.x.x.x.z.y.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.x: B = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = 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 = B("e")
f = D("f")
g = C("g")
h = A("h")
i = D("i")
a.z = f
a.y = d
a.x = c
b.z = d
b.y = g
b.x = g
c.z = a
c.y = h
c.x = e
c.w = d
d.z = i
d.y = h
d.x = a
e.z = i
e.y = g
e.x = c
f.z = d
f.y = h
f.x = h
g.z = a
g.y = h
g.x = e
g.w = f
h.z = i
h.y = d
h.x = c
i.z = f
i.y = a
i.x = h
assert d.y.z.x.x.x.z.y.z.txt == "f" | 9 | 27 | 3 | 0.375 | 4 | 2.25 | 4 | 3 | 3.25 | 8 | 2 | 1 | 7 | 0.777778 | 8 | 0.296296 | 2 | 2 | 4 | 3 | 3 | 3 | 3 | 2 |
695 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.x: D = None
self.w: C = None
self.v: F = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: C = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: E = None
self.w: C = None
self.v: B = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: A = None
self.w: E = None
self.v: A = None
self.u: E = 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 = E("g")
h = A("h")
i = C("i")
a.z = g
a.u = g
a.y = f
a.v = f
a.x = d
a.w = c
b.z = e
b.y = c
b.x = c
b.w = h
c.z = b
c.v = b
c.u = b
c.y = h
c.x = g
c.w = i
d.z = e
d.y = i
e.z = g
e.w = g
e.u = g
e.y = d
e.x = h
e.v = h
f.z = g
g.z = e
g.w = e
g.u = e
g.y = d
g.x = a
g.v = a
h.z = e
h.y = f
h.v = f
h.x = d
h.w = i
h.u = g
i.z = b
i.v = b
i.u = b
i.y = a
i.x = e
i.w = c
assert g.z.u.y.z.u.x.w.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: F = None
self.x: D = None
self.w: C = None
self.v: F = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.x: C = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.x: E = None
self.w: C = None
self.v: B = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.x: A = None
self.w: E = None
self.v: A = None
self.u: E = 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 = E("g")
h = A("h")
i = C("i")
a.z = g
a.u = g
a.y = f
a.v = f
a.x = d
a.w = c
b.z = e
b.y = c
b.x = c
b.w = h
c.z = b
c.v = b
c.u = b
c.y = h
c.x = g
c.w = i
d.z = e
d.y = i
e.z = g
e.w = g
e.u = g
e.y = d
e.x = h
e.v = h
f.z = g
g.z = e
g.w = e
g.u = e
g.y = d
g.x = a
g.v = a
h.z = e
h.y = f
h.v = f
h.x = d
h.w = i
h.u = g
i.z = b
i.v = b
i.u = b
i.y = a
i.x = e
i.w = c
assert g.z.u.y.z.u.x.w.txt == "c" | 9 | 29 | 3.222222 | 0.402778 | 6 | 1.5 | 6 | 1 | 4.166667 | 7 | 3 | 2 | 5 | 0.555556 | 6 | 0.206897 | 3 | 2 | 5 | 3.25 | 5 | 2 | 1 | 3 |
696 | 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.x: B = 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 = A("e")
f = C("f")
g = C("g")
h = B("h")
i = C("i")
a.z = f
b.z = f
b.y = e
b.x = h
c.z = d
d.z = c
e.z = i
f.z = d
g.z = d
h.z = c
h.y = d
h.x = b
i.z = d
assert f.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: C = None
self.y: A = None
self.x: B = 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 = A("e")
f = C("f")
g = C("g")
h = B("h")
i = C("i")
a.z = f
b.z = f
b.y = e
b.x = h
c.z = d
d.z = c
e.z = i
f.z = d
g.z = d
h.z = c
h.y = d
h.x = b
i.z = d
assert f.z.z.z.txt == "d" | 9 | 13 | 1.444444 | 0.180556 | 3 | 3 | 3 | 1 | 1.666667 | 3 | 2 | 1 | 3 | 0.333333 | 3 | 0.230769 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
697 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: A = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: C = None
self.w: E = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: A = None
self.w: C = None
self.v: A = None
self.u: F = 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: A = 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: C = 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")
i = C("i")
a.z = d
a.y = g
a.x = g
a.w = g
b.z = h
b.y = e
b.w = e
b.v = e
b.x = c
c.z = h
c.y = d
c.x = g
c.w = i
c.v = a
c.u = f
d.z = e
d.y = b
e.z = g
e.y = g
e.x = b
f.z = i
f.y = i
g.z = d
g.y = a
g.x = a
g.w = a
h.z = b
h.y = e
h.w = e
h.v = e
h.x = c
i.z = b
i.y = d
i.x = a
i.v = a
i.w = c
i.u = f
assert d.z.x.z.x.x.x.z.y.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: A = None
self.x: A = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.x: C = None
self.w: E = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.x: A = None
self.w: C = None
self.v: A = None
self.u: F = 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: A = 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: C = 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")
i = C("i")
a.z = d
a.y = g
a.x = g
a.w = g
b.z = h
b.y = e
b.w = e
b.v = e
b.x = c
c.z = h
c.y = d
c.x = g
c.w = i
c.v = a
c.u = f
d.z = e
d.y = b
e.z = g
e.y = g
e.x = b
f.z = i
f.y = i
g.z = d
g.y = a
g.x = a
g.w = a
h.z = b
h.y = e
h.w = e
h.v = e
h.x = c
i.z = b
i.y = d
i.x = a
i.v = a
i.w = c
i.u = f
assert d.z.x.z.x.x.x.z.y.y.txt == "e" | 9 | 26 | 2.888889 | 0.361111 | 6 | 1.5 | 6 | 2 | 3.666667 | 9 | 2 | 1 | 7 | 0.777778 | 9 | 0.346154 | 3 | 6 | 8 | 7 | 3 | 4 | 3 | 2 |
698 | class A:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: C = None
self.w: E = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: C = 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: 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 = A("f")
g = B("g")
h = B("h")
i = A("i")
a.z = e
b.z = c
b.x = c
b.y = e
b.w = e
b.v = e
c.z = d
c.y = d
c.x = i
d.z = b
d.y = b
d.x = c
e.z = b
e.y = b
e.x = d
e.w = i
e.v = g
f.z = e
g.z = c
g.x = c
g.y = e
g.w = e
g.v = e
h.z = c
h.x = c
h.y = e
h.w = e
h.v = e
i.z = e
assert b.x.z.y.y.y.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: E = None
self.x: C = None
self.w: E = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.x: C = 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: 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 = A("f")
g = B("g")
h = B("h")
i = A("i")
a.z = e
b.z = c
b.x = c
b.y = e
b.w = e
b.v = e
c.z = d
c.y = d
c.x = i
d.z = b
d.y = b
d.x = c
e.z = b
e.y = b
e.x = d
e.w = i
e.v = g
f.z = e
g.z = c
g.x = c
g.y = e
g.w = e
g.v = e
h.z = c
h.x = c
h.y = e
h.w = e
h.v = e
i.z = e
assert b.x.z.y.y.y.txt == "b" | 9 | 17 | 1.888889 | 0.236111 | 5 | 1.8 | 5 | 1 | 3.4 | 5 | 3 | 1 | 4 | 0.444444 | 5 | 0.294118 | 2 | 2 | 5 | 3.333333 | 3 | 3 | 3 | 2 |
699 | 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.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = A("d")
e = A("e")
f = A("f")
g = B("g")
h = B("h")
i = B("i")
a.z = i
b.z = a
c.z = e
d.z = i
e.z = g
f.z = h
g.z = a
h.z = e
i.z = e
assert a.z.z.z.z.z.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: A = None
self.txt = txt
a = A("a")
b = B("b")
c = B("c")
d = A("d")
e = A("e")
f = A("f")
g = B("g")
h = B("h")
i = B("i")
a.z = i
b.z = a
c.z = e
d.z = i
e.z = g
f.z = h
g.z = a
h.z = e
i.z = e
assert a.z.z.z.z.z.z.z.txt == "g" | 9 | 9 | 1 | 0.125 | 2 | 4.5 | 1 | 1 | 1 | 7 | 2 | 2 | 4 | 0.444444 | 4 | 0.444444 | 4 | 4 | 4 | 4 | 1 | 7 | 7 | 1 |