id
int64 0
399
| prompt
stringlengths 265
2.96k
| answer
stringclasses 14
values | pythoncode
stringlengths 267
2.97k
| num_nodes
int64 3
10
| num_edges
int64 3
40
| avg_node_edge
float64 1
4
| 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
4
| unique_node_number
int64 2
8
| path_node_coverage
float64 0.2
1
| unique_edge_number
int64 2
10
| path_edge_coverage
float64 0.07
1
| num_cycle
int64 0
7
| 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
9
| max_label_consecutive
int64 1
9
| max_node_outdegree
int64 1
4
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
100 | class A:
def __init__(self, txt: str):
self.x: B = None
self.w: C = None
self.q: B = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.w: A = None
self.txt = txt
m = A("m")
i = B("i")
g = C("g")
h = D("h")
e = A("e")
m.x = i
m.q = i
m.w = g
m.z = g
i.x = g
g.x = h
g.w = i
h.x = i
h.w = e
e.x = i
e.q = i
e.w = g
e.z = g
assert e.x.x.x.w.w.txt == " | g" | class A:
def __init__(self, txt: str):
self.x: B = None
self.w: C = None
self.q: B = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.w: A = None
self.txt = txt
m = A("m")
i = B("i")
g = C("g")
h = D("h")
e = A("e")
m.x = i
m.q = i
m.w = g
m.z = g
i.x = g
g.x = h
g.w = i
h.x = i
h.w = e
e.x = i
e.q = i
e.w = g
e.z = g
assert e.x.x.x.w.w.txt == "g" | 5 | 9 | 1.8 | 0.45 | 4 | 1.25 | 4 | 1 | 2.25 | 5 | 2 | 1 | 4 | 0.8 | 5 | 0.555556 | 2 | 3 | 4 | 3.5 | 2 | 3 | 3 | 2 |
101 | class A:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
l = A("l")
c = B("c")
m = B("m")
k = A("k")
e = A("e")
l.s = k
l.q = e
c.s = m
m.s = c
k.s = l
k.q = e
e.s = l
e.q = k
assert m.s.s.s.txt == " | c" | class A:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
l = A("l")
c = B("c")
m = B("m")
k = A("k")
e = A("e")
l.s = k
l.q = e
c.s = m
m.s = c
k.s = l
k.q = e
e.s = l
e.q = k
assert m.s.s.s.txt == "c" | 5 | 8 | 1.6 | 0.4 | 2 | 2.5 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.4 | 2 | 0.25 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
102 | class A:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
f = A("f")
d = B("d")
n = C("n")
k = B("k")
m = C("m")
f.y = n
d.y = f
n.y = k
k.y = f
m.y = d
assert k.y.y.y.y.y.txt == " | n" | class A:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
f = A("f")
d = B("d")
n = C("n")
k = B("k")
m = C("m")
f.y = n
d.y = f
n.y = k
k.y = f
m.y = d
assert k.y.y.y.y.y.txt == "n" | 5 | 5 | 1 | 0.25 | 3 | 1.666667 | 1 | 1 | 1 | 5 | 2 | 2 | 3 | 0.6 | 3 | 0.6 | 3 | 3 | 3 | 3 | 1 | 5 | 5 | 1 |
103 | class A:
def __init__(self, txt: str):
self.y: C = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.o: A = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.o: B = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.o: B = None
self.x: B = None
self.txt = txt
h = A("h")
f = B("f")
m = C("m")
c = D("c")
a = D("a")
h.y = m
h.o = m
f.y = m
f.x = m
f.o = h
m.y = a
m.o = f
m.x = h
c.y = f
c.o = f
c.x = f
a.y = f
a.o = f
a.x = f
assert h.y.y.x.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: C = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.o: A = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.o: B = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.o: B = None
self.x: B = None
self.txt = txt
h = A("h")
f = B("f")
m = C("m")
c = D("c")
a = D("a")
h.y = m
h.o = m
f.y = m
f.x = m
f.o = h
m.y = a
m.o = f
m.x = h
c.y = f
c.o = f
c.x = f
a.y = f
a.o = f
a.x = f
assert h.y.y.x.txt == "f" | 5 | 8 | 1.6 | 0.4 | 4 | 1.25 | 3 | 2 | 2.75 | 3 | 1 | 1 | 4 | 0.8 | 3 | 0.375 | 0 | null | null | null | 2 | 2 | 2 | 1 |
104 | class A:
def __init__(self, txt: str):
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.s: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: D = None
self.s: C = None
self.z: D = None
self.w: D = None
self.txt = txt
n = A("n")
a = B("a")
e = C("e")
h = D("h")
b = D("b")
n.t = h
a.t = e
a.s = b
e.t = n
e.s = n
h.t = b
h.z = b
h.w = b
h.s = e
b.t = h
b.z = h
b.w = h
b.s = e
assert a.s.s.t.txt == " | n" | class A:
def __init__(self, txt: str):
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.s: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: D = None
self.s: C = None
self.z: D = None
self.w: D = None
self.txt = txt
n = A("n")
a = B("a")
e = C("e")
h = D("h")
b = D("b")
n.t = h
a.t = e
a.s = b
e.t = n
e.s = n
h.t = b
h.z = b
h.w = b
h.s = e
b.t = h
b.z = h
b.w = h
b.s = e
assert a.s.s.t.txt == "n" | 5 | 8 | 1.6 | 0.4 | 4 | 1.25 | 4 | 1 | 2.25 | 3 | 1 | 1 | 4 | 0.8 | 3 | 0.375 | 0 | null | null | null | 2 | 2 | 2 | 1 |
105 | class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.t: A = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
h = A("h")
c = B("c")
k = C("k")
m = B("m")
g = B("g")
h.s = k
c.s = k
c.t = h
c.o = g
k.s = h
m.s = k
m.t = h
m.o = c
g.s = k
g.t = h
g.o = m
assert g.o.o.s.s.txt == " | h" | class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.t: A = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
h = A("h")
c = B("c")
k = C("k")
m = B("m")
g = B("g")
h.s = k
c.s = k
c.t = h
c.o = g
k.s = h
m.s = k
m.t = h
m.o = c
g.s = k
g.t = h
g.o = m
assert g.o.o.s.s.txt == "h" | 5 | 11 | 2.2 | 0.55 | 3 | 1.666667 | 3 | 1 | 1.666667 | 4 | 1 | 1 | 5 | 1 | 4 | 0.363636 | 0 | null | null | null | 2 | 2 | 2 | 1 |
106 | class A:
def __init__(self, txt: str):
self.w: C = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.q: C = None
self.txt = txt
g = A("g")
c = B("c")
d = C("d")
a = C("a")
e = B("e")
g.w = d
g.q = c
c.w = e
c.q = d
d.w = g
d.q = a
a.w = g
a.q = d
e.w = c
e.q = d
assert a.q.w.w.q.txt == " | a" | class A:
def __init__(self, txt: str):
self.w: C = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.q: C = None
self.txt = txt
g = A("g")
c = B("c")
d = C("d")
a = C("a")
e = B("e")
g.w = d
g.q = c
c.w = e
c.q = d
d.w = g
d.q = a
a.w = g
a.q = d
e.w = c
e.q = d
assert a.q.w.w.q.txt == "a" | 5 | 10 | 2 | 0.5 | 3 | 1.666667 | 2 | 2 | 2 | 4 | 2 | 1 | 3 | 0.6 | 4 | 0.4 | 2 | 2 | 4 | 3 | 2 | 2 | 2 | 2 |
107 | class A:
def __init__(self, txt: str):
self.q: C = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.o: D = None
self.r: A = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: E = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: B = None
self.o: C = None
self.txt = txt
e = A("e")
m = B("m")
j = C("j")
f = D("f")
l = E("l")
e.q = j
e.o = m
m.q = j
j.q = e
j.r = e
j.o = f
j.u = f
f.q = l
f.o = j
l.q = m
l.o = j
assert m.q.o.o.o.txt == " | f" | class A:
def __init__(self, txt: str):
self.q: C = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.o: D = None
self.r: A = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: E = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: B = None
self.o: C = None
self.txt = txt
e = A("e")
m = B("m")
j = C("j")
f = D("f")
l = E("l")
e.q = j
e.o = m
m.q = j
j.q = e
j.r = e
j.o = f
j.u = f
f.q = l
f.o = j
l.q = m
l.o = j
assert m.q.o.o.o.txt == "f" | 5 | 9 | 1.8 | 0.45 | 5 | 1 | 4 | 1 | 2.2 | 4 | 2 | 2 | 3 | 0.6 | 3 | 0.333333 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
108 | class A:
def __init__(self, txt: str):
self.o: D = None
self.x: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.x: D = None
self.txt = txt
l = A("l")
h = B("h")
i = C("i")
d = D("d")
a = D("a")
l.o = a
l.x = h
l.s = h
h.o = i
i.o = h
d.o = i
d.x = a
a.o = i
a.x = d
assert h.o.o.o.o.o.txt == " | i" | class A:
def __init__(self, txt: str):
self.o: D = None
self.x: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.x: D = None
self.txt = txt
l = A("l")
h = B("h")
i = C("i")
d = D("d")
a = D("a")
l.o = a
l.x = h
l.s = h
h.o = i
i.o = h
d.o = i
d.x = a
a.o = i
a.x = d
assert h.o.o.o.o.o.txt == "i" | 5 | 8 | 1.6 | 0.4 | 4 | 1.25 | 3 | 1 | 1.75 | 5 | 3 | 3 | 2 | 0.4 | 2 | 0.25 | 4 | 2 | 4 | 2.666667 | 1 | 5 | 5 | 1 |
109 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.v: A = None
self.txt = txt
e = A("e")
f = B("f")
k = C("k")
i = D("i")
j = C("j")
e.o = f
f.o = i
k.o = e
k.v = e
i.o = k
i.v = e
j.o = e
j.v = e
assert f.o.v.o.txt == " | f" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.v: A = None
self.txt = txt
e = A("e")
f = B("f")
k = C("k")
i = D("i")
j = C("j")
e.o = f
f.o = i
k.o = e
k.v = e
i.o = k
i.v = e
j.o = e
j.v = e
assert f.o.v.o.txt == "f" | 5 | 6 | 1.2 | 0.3 | 4 | 1.25 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.5 | 1 | 3 | 3 | 3 | 2 | 2 | 1 | 1 |
110 | 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: D = None
self.t: C = None
self.x: A = None
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.t: E = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.t: B = None
self.txt = txt
b = A("b")
m = B("m")
l = C("l")
e = D("e")
j = E("j")
b.z = j
m.z = b
m.x = b
m.q = b
m.y = e
m.t = l
l.z = m
l.y = j
l.t = j
l.x = b
e.z = b
e.y = l
e.t = l
j.z = b
j.y = e
j.t = m
assert b.z.y.z.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: A = None
self.y: D = None
self.t: C = None
self.x: A = None
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.y: E = None
self.t: E = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.y: C = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.t: B = None
self.txt = txt
b = A("b")
m = B("m")
l = C("l")
e = D("e")
j = E("j")
b.z = j
m.z = b
m.x = b
m.q = b
m.y = e
m.t = l
l.z = m
l.y = j
l.t = j
l.x = b
e.z = b
e.y = l
e.t = l
j.z = b
j.y = e
j.t = m
assert b.z.y.z.txt == "b" | 5 | 12 | 2.4 | 0.6 | 5 | 1 | 5 | 1 | 3.2 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.25 | 1 | 3 | 3 | 3 | 2 | 2 | 1 | 1 |
111 | class A:
def __init__(self, txt: str):
self.s: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
e = A("e")
m = B("m")
d = B("d")
g = A("g")
i = B("i")
e.s = d
e.p = m
m.s = g
d.s = g
g.s = m
g.p = i
i.s = e
assert m.s.s.s.p.txt == " | i" | class A:
def __init__(self, txt: str):
self.s: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
e = A("e")
m = B("m")
d = B("d")
g = A("g")
i = B("i")
e.s = d
e.p = m
m.s = g
d.s = g
g.s = m
g.p = i
i.s = e
assert m.s.s.s.p.txt == "i" | 5 | 7 | 1.4 | 0.35 | 2 | 2.5 | 2 | 1 | 1.5 | 4 | 2 | 2 | 3 | 0.6 | 3 | 0.428571 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 2 |
112 | class A:
def __init__(self, txt: str):
self.y: D = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: D = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.v: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.v: C = None
self.r: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
l = A("l")
e = B("e")
a = C("a")
j = D("j")
f = E("f")
l.y = j
l.v = f
e.y = j
e.v = l
a.y = j
a.v = j
j.y = f
j.v = a
j.r = e
f.y = a
assert l.y.v.v.y.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: D = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: D = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.v: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.v: C = None
self.r: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
l = A("l")
e = B("e")
a = C("a")
j = D("j")
f = E("f")
l.y = j
l.v = f
e.y = j
e.v = l
a.y = j
a.v = j
j.y = f
j.v = a
j.r = e
f.y = a
assert l.y.v.v.y.txt == "f" | 5 | 9 | 1.8 | 0.45 | 5 | 1 | 3 | 1 | 2 | 4 | 2 | 1 | 4 | 0.8 | 4 | 0.444444 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
113 | class A:
def __init__(self, txt: str):
self.w: B = None
self.t: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
f = A("f")
d = B("d")
b = C("b")
n = A("n")
a = B("a")
f.w = a
f.t = d
f.y = d
d.w = b
b.w = n
n.w = a
n.t = a
n.y = a
a.w = b
assert d.w.w.y.w.txt == " | b" | class A:
def __init__(self, txt: str):
self.w: B = None
self.t: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
f = A("f")
d = B("d")
b = C("b")
n = A("n")
a = B("a")
f.w = a
f.t = d
f.y = d
d.w = b
b.w = n
n.w = a
n.t = a
n.y = a
a.w = b
assert d.w.w.y.w.txt == "b" | 5 | 6 | 1.2 | 0.3 | 3 | 1.666667 | 3 | 1 | 1.666667 | 4 | 2 | 1 | 4 | 0.8 | 4 | 0.666667 | 1 | 3 | 3 | 3 | 2 | 3 | 2 | 1 |
114 | class A:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.s: A = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
c = A("c")
f = B("f")
j = C("j")
h = B("h")
n = A("n")
c.r = j
f.r = h
f.s = c
f.y = n
j.r = f
h.r = f
h.s = n
h.y = n
n.r = j
assert c.r.r.r.y.txt == " | n" | class A:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.s: A = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
c = A("c")
f = B("f")
j = C("j")
h = B("h")
n = A("n")
c.r = j
f.r = h
f.s = c
f.y = n
j.r = f
h.r = f
h.s = n
h.y = n
n.r = j
assert c.r.r.r.y.txt == "n" | 5 | 8 | 1.6 | 0.4 | 3 | 1.666667 | 3 | 1 | 1.666667 | 4 | 1 | 1 | 5 | 1 | 4 | 0.5 | 0 | null | null | null | 2 | 3 | 3 | 1 |
115 | class A:
def __init__(self, txt: str):
self.t: D = None
self.r: C = None
self.y: D = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.r: B = None
self.y: A = None
self.o: B = None
self.v: B = None
self.txt = txt
n = A("n")
f = B("f")
a = C("a")
k = D("k")
m = E("m")
n.t = k
n.y = k
n.r = a
n.o = a
f.t = a
a.t = k
a.r = k
k.t = n
m.t = a
m.r = f
m.o = f
m.v = f
m.y = n
assert m.y.o.r.txt == " | k" | class A:
def __init__(self, txt: str):
self.t: D = None
self.r: C = None
self.y: D = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.r: B = None
self.y: A = None
self.o: B = None
self.v: B = None
self.txt = txt
n = A("n")
f = B("f")
a = C("a")
k = D("k")
m = E("m")
n.t = k
n.y = k
n.r = a
n.o = a
f.t = a
a.t = k
a.r = k
k.t = n
m.t = a
m.r = f
m.o = f
m.v = f
m.y = n
assert m.y.o.r.txt == "k" | 5 | 8 | 1.6 | 0.4 | 5 | 1 | 5 | 1 | 2.6 | 3 | 1 | 1 | 4 | 0.8 | 3 | 0.375 | 0 | null | null | null | 3 | 1 | 1 | 1 |
116 | class A:
def __init__(self, txt: str):
self.r: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
m = A("m")
g = B("g")
i = B("i")
c = B("c")
k = A("k")
m.r = g
m.o = k
g.r = i
i.r = g
c.r = i
k.r = g
k.o = m
assert c.r.r.r.r.r.txt == " | i" | class A:
def __init__(self, txt: str):
self.r: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
m = A("m")
g = B("g")
i = B("i")
c = B("c")
k = A("k")
m.r = g
m.o = k
g.r = i
i.r = g
c.r = i
k.r = g
k.o = m
assert c.r.r.r.r.r.txt == "i" | 5 | 7 | 1.4 | 0.35 | 2 | 2.5 | 2 | 1 | 1.5 | 5 | 3 | 2 | 3 | 0.6 | 3 | 0.428571 | 3 | 2 | 4 | 2.5 | 1 | 5 | 5 | 1 |
117 | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
c = A("c")
l = B("l")
e = A("e")
g = B("g")
d = B("d")
c.z = d
c.s = e
l.z = d
e.z = g
e.s = c
g.z = d
d.z = g
assert c.s.s.s.s.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
c = A("c")
l = B("l")
e = A("e")
g = B("g")
d = B("d")
c.z = d
c.s = e
l.z = d
e.z = g
e.s = c
g.z = d
d.z = g
assert c.s.s.s.s.txt == "c" | 5 | 7 | 1.4 | 0.35 | 2 | 2.5 | 2 | 1 | 1.5 | 4 | 3 | 2 | 2 | 0.4 | 2 | 0.285714 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
118 | class A:
def __init__(self, txt: str):
self.x: B = None
self.r: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: C = None
self.r: C = None
self.v: A = None
self.txt = txt
d = A("d")
i = B("i")
k = C("k")
e = C("e")
g = B("g")
d.x = i
d.v = i
d.r = g
i.x = d
k.x = e
k.r = e
k.v = d
e.x = k
e.r = k
e.v = d
g.x = d
assert k.v.v.x.txt == " | d" | class A:
def __init__(self, txt: str):
self.x: B = None
self.r: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: C = None
self.r: C = None
self.v: A = None
self.txt = txt
d = A("d")
i = B("i")
k = C("k")
e = C("e")
g = B("g")
d.x = i
d.v = i
d.r = g
i.x = d
k.x = e
k.r = e
k.v = d
e.x = k
e.r = k
e.v = d
g.x = d
assert k.v.v.x.txt == "d" | 5 | 8 | 1.6 | 0.4 | 3 | 1.666667 | 3 | 1 | 2.333333 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.375 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
119 | class A:
def __init__(self, txt: str):
self.w: A = None
self.z: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.z: A = None
self.txt = txt
c = A("c")
n = B("n")
a = C("a")
j = A("j")
i = B("i")
c.w = j
c.p = j
c.z = n
n.w = a
a.w = i
a.z = c
j.w = c
j.p = c
j.z = i
i.w = a
assert n.w.z.p.txt == " | j" | class A:
def __init__(self, txt: str):
self.w: A = None
self.z: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.z: A = None
self.txt = txt
c = A("c")
n = B("n")
a = C("a")
j = A("j")
i = B("i")
c.w = j
c.p = j
c.z = n
n.w = a
a.w = i
a.z = c
j.w = c
j.p = c
j.z = i
i.w = a
assert n.w.z.p.txt == "j" | 5 | 8 | 1.6 | 0.4 | 3 | 1.666667 | 3 | 1 | 2 | 3 | 1 | 1 | 4 | 0.8 | 3 | 0.375 | 0 | null | null | null | 3 | 1 | 1 | 1 |
120 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.v: B = None
self.txt = txt
a = A("a")
d = B("d")
f = C("f")
m = D("m")
i = B("i")
a.t = i
d.t = f
f.t = m
f.v = i
m.t = i
m.v = d
i.t = f
assert a.t.t.t.t.txt == " | i" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.v: B = None
self.txt = txt
a = A("a")
d = B("d")
f = C("f")
m = D("m")
i = B("i")
a.t = i
d.t = f
f.t = m
f.v = i
m.t = i
m.v = d
i.t = f
assert a.t.t.t.t.txt == "i" | 5 | 7 | 1.4 | 0.35 | 4 | 1.25 | 2 | 1 | 1.5 | 4 | 2 | 1 | 4 | 0.8 | 4 | 0.571429 | 1 | 3 | 3 | 3 | 1 | 4 | 4 | 1 |
121 | 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.o: B = None
self.txt = txt
e = A("e")
m = B("m")
j = A("j")
l = B("l")
a = B("a")
e.z = j
m.z = l
m.o = a
j.z = e
l.z = a
l.o = m
a.z = m
a.o = l
assert m.z.z.o.txt == " | l" | 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.o: B = None
self.txt = txt
e = A("e")
m = B("m")
j = A("j")
l = B("l")
a = B("a")
e.z = j
m.z = l
m.o = a
j.z = e
l.z = a
l.o = m
a.z = m
a.o = l
assert m.z.z.o.txt == "l" | 5 | 8 | 1.6 | 0.4 | 2 | 2.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.375 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
122 | class A:
def __init__(self, txt: str):
self.q: C = None
self.y: C = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.y: A = None
self.z: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.y: A = None
self.z: A = None
self.txt = txt
i = A("i")
n = B("n")
g = C("g")
l = C("l")
c = B("c")
i.q = g
i.y = g
i.z = n
n.q = c
n.z = c
n.y = i
g.q = i
g.y = i
g.z = i
l.q = i
l.y = i
l.z = i
c.q = n
c.z = n
c.y = i
assert g.z.z.z.z.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.q: C = None
self.y: C = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.y: A = None
self.z: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.y: A = None
self.z: A = None
self.txt = txt
i = A("i")
n = B("n")
g = C("g")
l = C("l")
c = B("c")
i.q = g
i.y = g
i.z = n
n.q = c
n.z = c
n.y = i
g.q = i
g.y = i
g.z = i
l.q = i
l.y = i
l.z = i
c.q = n
c.z = n
c.y = i
assert g.z.z.z.z.y.txt == "i" | 5 | 8 | 1.6 | 0.4 | 3 | 1.666667 | 3 | 3 | 3 | 5 | 2 | 1 | 4 | 0.8 | 5 | 0.625 | 2 | 2 | 4 | 3 | 2 | 4 | 4 | 2 |
123 | class A:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.t: A = None
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
m = A("m")
b = B("b")
i = C("i")
n = A("n")
f = B("f")
m.y = i
b.y = i
b.o = i
b.t = n
i.y = b
n.y = i
f.y = i
f.o = i
f.t = m
assert b.y.y.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.t: A = None
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
m = A("m")
b = B("b")
i = C("i")
n = A("n")
f = B("f")
m.y = i
b.y = i
b.o = i
b.t = n
i.y = b
n.y = i
f.y = i
f.o = i
f.t = m
assert b.y.y.y.txt == "i" | 5 | 7 | 1.4 | 0.35 | 3 | 1.666667 | 3 | 1 | 1.666667 | 3 | 2 | 2 | 2 | 0.4 | 2 | 0.285714 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
124 | class A:
def __init__(self, txt: str):
self.r: C = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.o: B = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
i = A("i")
c = B("c")
n = C("n")
m = D("m")
a = E("a")
i.r = n
i.o = n
c.r = n
n.r = i
n.o = c
n.x = a
m.r = a
a.r = m
assert c.r.x.r.r.r.txt == " | m" | class A:
def __init__(self, txt: str):
self.r: C = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.o: B = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
i = A("i")
c = B("c")
n = C("n")
m = D("m")
a = E("a")
i.r = n
i.o = n
c.r = n
n.r = i
n.o = c
n.x = a
m.r = a
a.r = m
assert c.r.x.r.r.r.txt == "m" | 5 | 7 | 1.4 | 0.35 | 5 | 1 | 3 | 1 | 1.6 | 5 | 2 | 2 | 4 | 0.8 | 4 | 0.571429 | 2 | 2 | 2 | 2 | 2 | 4 | 3 | 1 |
125 | class A:
def __init__(self, txt: str):
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: E = None
self.z: C = None
self.u: A = None
self.w: D = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
l = A("l")
c = B("c")
f = C("f")
e = D("e")
d = E("d")
l.t = e
c.t = d
c.v = d
c.z = f
c.u = l
c.w = e
f.t = c
e.t = c
d.t = f
assert d.t.t.w.t.txt == " | c" | class A:
def __init__(self, txt: str):
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: E = None
self.z: C = None
self.u: A = None
self.w: D = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
l = A("l")
c = B("c")
f = C("f")
e = D("e")
d = E("d")
l.t = e
c.t = d
c.v = d
c.z = f
c.u = l
c.w = e
f.t = c
e.t = c
d.t = f
assert d.t.t.w.t.txt == "c" | 5 | 8 | 1.6 | 0.4 | 5 | 1 | 5 | 1 | 1.8 | 4 | 2 | 1 | 4 | 0.8 | 4 | 0.5 | 1 | 2 | 2 | 2 | 2 | 3 | 2 | 1 |
126 | class A:
def __init__(self, txt: str):
self.p: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.o: B = None
self.txt = txt
a = A("a")
k = B("k")
g = B("g")
l = A("l")
e = B("e")
a.p = l
a.o = e
k.p = a
k.o = e
g.p = a
g.o = e
l.p = a
l.o = k
e.p = a
e.o = g
assert k.o.p.o.txt == " | e" | class A:
def __init__(self, txt: str):
self.p: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.o: B = None
self.txt = txt
a = A("a")
k = B("k")
g = B("g")
l = A("l")
e = B("e")
a.p = l
a.o = e
k.p = a
k.o = e
g.p = a
g.o = e
l.p = a
l.o = k
e.p = a
e.o = g
assert k.o.p.o.txt == "e" | 5 | 10 | 2 | 0.5 | 2 | 2.5 | 2 | 2 | 2 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.3 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
127 | class A:
def __init__(self, txt: str):
self.p: B = None
self.s: C = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.s: C = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.s: C = None
self.txt = txt
n = A("n")
d = B("d")
a = C("a")
b = D("b")
h = C("h")
n.p = d
n.s = h
n.w = h
d.p = a
a.p = d
a.s = h
a.w = b
b.p = d
b.s = h
h.p = d
h.s = a
h.w = b
assert h.w.p.p.txt == " | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.s: C = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.s: C = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.s: C = None
self.txt = txt
n = A("n")
d = B("d")
a = C("a")
b = D("b")
h = C("h")
n.p = d
n.s = h
n.w = h
d.p = a
a.p = d
a.s = h
a.w = b
b.p = d
b.s = h
h.p = d
h.s = a
h.w = b
assert h.w.p.p.txt == "a" | 5 | 11 | 2.2 | 0.55 | 4 | 1.25 | 3 | 1 | 2.25 | 3 | 1 | 1 | 4 | 0.8 | 3 | 0.272727 | 0 | null | null | null | 2 | 2 | 2 | 1 |
128 | class A:
def __init__(self, txt: str):
self.o: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
e = A("e")
f = B("f")
k = A("k")
m = B("m")
d = B("d")
e.o = f
e.x = k
f.o = d
k.o = f
k.x = e
m.o = d
d.o = m
assert f.o.o.o.txt == " | d" | class A:
def __init__(self, txt: str):
self.o: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
e = A("e")
f = B("f")
k = A("k")
m = B("m")
d = B("d")
e.o = f
e.x = k
f.o = d
k.o = f
k.x = e
m.o = d
d.o = m
assert f.o.o.o.txt == "d" | 5 | 7 | 1.4 | 0.35 | 2 | 2.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.428571 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
129 | class A:
def __init__(self, txt: str):
self.x: C = None
self.o: C = None
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.o: A = None
self.z: A = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.o: D = None
self.z: A = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
b = A("b")
n = B("n")
a = C("a")
e = D("e")
f = C("f")
b.x = f
b.o = a
b.z = e
n.x = e
n.o = b
n.z = b
n.y = b
a.x = b
a.z = b
a.o = e
a.y = n
e.x = b
f.x = b
f.z = b
f.o = e
f.y = n
assert e.x.z.x.x.txt == " | f" | class A:
def __init__(self, txt: str):
self.x: C = None
self.o: C = None
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.o: A = None
self.z: A = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.o: D = None
self.z: A = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
b = A("b")
n = B("n")
a = C("a")
e = D("e")
f = C("f")
b.x = f
b.o = a
b.z = e
n.x = e
n.o = b
n.z = b
n.y = b
a.x = b
a.z = b
a.o = e
a.y = n
e.x = b
f.x = b
f.z = b
f.o = e
f.y = n
assert e.x.z.x.x.txt == "f" | 5 | 12 | 2.4 | 0.6 | 4 | 1.25 | 4 | 1 | 3 | 4 | 2 | 2 | 3 | 0.6 | 3 | 0.25 | 2 | 2 | 2 | 2 | 2 | 3 | 2 | 2 |
130 | class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.z: B = None
self.p: B = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.z: B = None
self.txt = txt
f = A("f")
l = B("l")
a = C("a")
b = D("b")
n = A("n")
f.s = a
l.s = n
a.s = f
a.z = l
a.p = l
a.r = l
b.s = f
b.z = l
n.s = a
assert f.s.s.s.txt == " | a" | class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.z: B = None
self.p: B = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.z: B = None
self.txt = txt
f = A("f")
l = B("l")
a = C("a")
b = D("b")
n = A("n")
f.s = a
l.s = n
a.s = f
a.z = l
a.p = l
a.r = l
b.s = f
b.z = l
n.s = a
assert f.s.s.s.txt == "a" | 5 | 7 | 1.4 | 0.35 | 4 | 1.25 | 4 | 1 | 2 | 3 | 2 | 2 | 2 | 0.4 | 2 | 0.285714 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
131 | class A:
def __init__(self, txt: str):
self.o: D = None
self.s: D = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.s: E = None
self.t: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.s: D = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: E = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
h = A("h")
g = B("g")
f = C("f")
d = D("d")
i = E("i")
h.o = d
h.s = d
h.t = f
g.o = h
g.s = i
g.t = i
f.o = d
f.s = d
f.t = d
d.o = i
d.s = i
i.o = h
assert i.o.s.s.o.txt == " | h" | class A:
def __init__(self, txt: str):
self.o: D = None
self.s: D = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.s: E = None
self.t: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.s: D = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: E = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
h = A("h")
g = B("g")
f = C("f")
d = D("d")
i = E("i")
h.o = d
h.s = d
h.t = f
g.o = h
g.s = i
g.t = i
f.o = d
f.s = d
f.t = d
d.o = i
d.s = i
i.o = h
assert i.o.s.s.o.txt == "h" | 5 | 7 | 1.4 | 0.35 | 5 | 1 | 3 | 1 | 2.4 | 4 | 2 | 2 | 3 | 0.6 | 3 | 0.428571 | 2 | 3 | 3 | 3 | 2 | 2 | 2 | 1 |
132 | class A:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
f = A("f")
j = B("j")
n = C("n")
m = D("m")
b = B("b")
f.x = n
j.x = m
j.o = b
n.x = j
m.x = f
b.x = m
b.o = j
assert f.x.x.x.txt == " | m" | class A:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
f = A("f")
j = B("j")
n = C("n")
m = D("m")
b = B("b")
f.x = n
j.x = m
j.o = b
n.x = j
m.x = f
b.x = m
b.o = j
assert f.x.x.x.txt == "m" | 5 | 7 | 1.4 | 0.35 | 4 | 1.25 | 2 | 1 | 1.25 | 3 | 1 | 1 | 4 | 0.8 | 3 | 0.428571 | 0 | null | null | null | 1 | 3 | 3 | 1 |
133 | class A:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.o: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
a = A("a")
b = B("b")
f = C("f")
k = D("k")
d = E("d")
a.q = d
b.q = d
f.q = b
f.o = d
k.q = a
d.q = a
assert b.q.q.q.txt == " | d" | class A:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.o: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
a = A("a")
b = B("b")
f = C("f")
k = D("k")
d = E("d")
a.q = d
b.q = d
f.q = b
f.o = d
k.q = a
d.q = a
assert b.q.q.q.txt == "d" | 5 | 6 | 1.2 | 0.3 | 5 | 1 | 2 | 1 | 1.2 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.5 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
134 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.q: A = None
self.txt = txt
g = A("g")
k = B("k")
e = A("e")
b = A("b")
l = B("l")
g.v = l
k.v = g
k.q = g
e.v = k
b.v = k
l.v = e
l.q = g
assert g.v.q.v.txt == " | l" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.q: A = None
self.txt = txt
g = A("g")
k = B("k")
e = A("e")
b = A("b")
l = B("l")
g.v = l
k.v = g
k.q = g
e.v = k
b.v = k
l.v = e
l.q = g
assert g.v.q.v.txt == "l" | 5 | 6 | 1.2 | 0.3 | 2 | 2.5 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.4 | 2 | 0.333333 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
135 | class A:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.v: A = None
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.v: B = None
self.txt = txt
j = A("j")
h = B("h")
m = C("m")
i = B("i")
c = B("c")
j.w = m
h.w = j
h.v = j
h.s = i
m.w = j
m.v = h
i.w = j
i.v = j
i.s = c
c.w = j
c.v = j
c.s = i
assert h.s.s.w.w.txt == " | m" | class A:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.v: A = None
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.v: B = None
self.txt = txt
j = A("j")
h = B("h")
m = C("m")
i = B("i")
c = B("c")
j.w = m
h.w = j
h.v = j
h.s = i
m.w = j
m.v = h
i.w = j
i.v = j
i.s = c
c.w = j
c.v = j
c.s = i
assert h.s.s.w.w.txt == "m" | 5 | 9 | 1.8 | 0.45 | 3 | 1.666667 | 3 | 1 | 2 | 4 | 1 | 1 | 5 | 1 | 4 | 0.444444 | 0 | null | null | null | 2 | 2 | 2 | 1 |
136 | class A:
def __init__(self, txt: str):
self.v: C = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.u: B = None
self.x: B = None
self.txt = txt
h = A("h")
d = B("d")
m = C("m")
b = A("b")
e = B("e")
h.v = m
h.u = b
d.v = e
m.v = h
m.u = d
m.x = e
b.v = m
b.u = h
e.v = d
assert h.u.u.v.v.u.txt == " | b" | class A:
def __init__(self, txt: str):
self.v: C = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.u: B = None
self.x: B = None
self.txt = txt
h = A("h")
d = B("d")
m = C("m")
b = A("b")
e = B("e")
h.v = m
h.u = b
d.v = e
m.v = h
m.u = d
m.x = e
b.v = m
b.u = h
e.v = d
assert h.u.u.v.v.u.txt == "b" | 5 | 9 | 1.8 | 0.45 | 3 | 1.666667 | 3 | 1 | 2 | 5 | 3 | 2 | 3 | 0.6 | 4 | 0.444444 | 3 | 2 | 4 | 3 | 2 | 3 | 2 | 2 |
137 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.p: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
l = A("l")
g = B("g")
i = C("i")
h = A("h")
e = B("e")
l.z = g
g.z = e
g.p = e
i.z = l
h.z = e
e.z = g
e.p = g
assert i.z.z.z.p.p.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.p: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
l = A("l")
g = B("g")
i = C("i")
h = A("h")
e = B("e")
l.z = g
g.z = e
g.p = e
i.z = l
h.z = e
e.z = g
e.p = g
assert i.z.z.z.p.p.txt == "e" | 5 | 5 | 1 | 0.25 | 3 | 1.666667 | 2 | 1 | 1.333333 | 5 | 2 | 1 | 4 | 0.8 | 5 | 1 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 2 |
138 | class A:
def __init__(self, txt: str):
self.x: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
m = A("m")
d = B("d")
g = A("g")
k = B("k")
f = B("f")
m.x = g
m.q = g
d.x = g
g.x = m
g.q = m
k.x = m
f.x = g
assert f.x.x.q.q.txt == " | m" | class A:
def __init__(self, txt: str):
self.x: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
m = A("m")
d = B("d")
g = A("g")
k = B("k")
f = B("f")
m.x = g
m.q = g
d.x = g
g.x = m
g.q = m
k.x = m
f.x = g
assert f.x.x.q.q.txt == "m" | 5 | 5 | 1 | 0.25 | 2 | 2.5 | 2 | 1 | 1.5 | 4 | 2 | 1 | 3 | 0.6 | 4 | 0.8 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
139 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
b = A("b")
h = B("h")
l = A("l")
i = B("i")
f = A("f")
b.z = f
h.z = l
l.z = b
i.z = l
f.z = l
assert l.z.z.z.z.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
b = A("b")
h = B("h")
l = A("l")
i = B("i")
f = A("f")
b.z = f
h.z = l
l.z = b
i.z = l
f.z = l
assert l.z.z.z.z.z.txt == "f" | 5 | 5 | 1 | 0.25 | 2 | 2.5 | 1 | 1 | 1 | 5 | 2 | 2 | 3 | 0.6 | 3 | 0.6 | 3 | 3 | 3 | 3 | 1 | 5 | 5 | 1 |
140 | class A:
def __init__(self, txt: str):
self.w: D = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: E = None
self.t: D = None
self.s: D = None
self.v: C = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: B = None
self.t: A = None
self.txt = txt
l = A("l")
j = B("j")
k = C("k")
a = D("a")
g = E("g")
l.w = a
l.t = j
j.w = g
j.t = a
j.s = a
j.v = k
j.q = k
k.w = g
k.t = l
a.w = l
g.w = j
g.t = l
assert j.w.w.w.txt == " | g" | class A:
def __init__(self, txt: str):
self.w: D = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: E = None
self.t: D = None
self.s: D = None
self.v: C = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: B = None
self.t: A = None
self.txt = txt
l = A("l")
j = B("j")
k = C("k")
a = D("a")
g = E("g")
l.w = a
l.t = j
j.w = g
j.t = a
j.s = a
j.v = k
j.q = k
k.w = g
k.t = l
a.w = l
g.w = j
g.t = l
assert j.w.w.w.txt == "g" | 5 | 10 | 2 | 0.5 | 5 | 1 | 5 | 1 | 2.4 | 3 | 2 | 2 | 2 | 0.4 | 2 | 0.2 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
141 | class A:
def __init__(self, txt: str):
self.t: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.q: B = None
self.txt = txt
j = A("j")
e = B("e")
c = B("c")
n = A("n")
m = B("m")
j.t = e
j.q = c
e.t = j
e.q = m
c.t = j
c.q = m
n.t = c
n.q = e
m.t = n
m.q = c
assert j.q.q.t.t.t.txt == " | j" | class A:
def __init__(self, txt: str):
self.t: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.q: B = None
self.txt = txt
j = A("j")
e = B("e")
c = B("c")
n = A("n")
m = B("m")
j.t = e
j.q = c
e.t = j
e.q = m
c.t = j
c.q = m
n.t = c
n.q = e
m.t = n
m.q = c
assert j.q.q.t.t.t.txt == "j" | 5 | 10 | 2 | 0.5 | 2 | 2.5 | 2 | 2 | 2 | 5 | 2 | 1 | 4 | 0.8 | 5 | 0.5 | 2 | 3 | 5 | 4 | 2 | 3 | 3 | 2 |
142 | class A:
def __init__(self, txt: str):
self.u: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
d = A("d")
i = B("i")
j = B("j")
f = B("f")
l = A("l")
d.u = l
d.r = j
i.u = d
j.u = l
f.u = l
l.u = d
l.r = i
assert i.u.u.u.txt == " | d" | class A:
def __init__(self, txt: str):
self.u: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
d = A("d")
i = B("i")
j = B("j")
f = B("f")
l = A("l")
d.u = l
d.r = j
i.u = d
j.u = l
f.u = l
l.u = d
l.r = i
assert i.u.u.u.txt == "d" | 5 | 7 | 1.4 | 0.35 | 2 | 2.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.428571 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
143 | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.r: D = None
self.s: D = None
self.q: E = 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.r: A = None
self.s: C = None
self.q: D = None
self.txt = txt
l = A("l")
j = B("j")
h = C("h")
k = D("k")
c = E("c")
l.z = k
j.z = l
j.r = c
h.z = k
h.r = k
h.s = k
h.q = c
k.z = j
c.z = j
c.r = l
c.s = h
c.q = k
assert c.z.r.r.z.txt == " | k" | class A:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.r: D = None
self.s: D = None
self.q: E = 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.r: A = None
self.s: C = None
self.q: D = None
self.txt = txt
l = A("l")
j = B("j")
h = C("h")
k = D("k")
c = E("c")
l.z = k
j.z = l
j.r = c
h.z = k
h.r = k
h.s = k
h.q = c
k.z = j
c.z = j
c.r = l
c.s = h
c.q = k
assert c.z.r.r.z.txt == "k" | 5 | 10 | 2 | 0.5 | 5 | 1 | 4 | 1 | 2.4 | 4 | 2 | 1 | 4 | 0.8 | 4 | 0.4 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
144 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.s: C = None
self.z: C = None
self.txt = txt
e = A("e")
n = B("n")
k = C("k")
b = C("b")
h = B("h")
e.x = n
n.x = h
n.s = e
k.x = n
k.s = b
k.z = b
b.x = n
b.s = k
b.z = k
h.x = n
h.s = e
assert h.s.x.s.txt == " | e" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.s: C = None
self.z: C = None
self.txt = txt
e = A("e")
n = B("n")
k = C("k")
b = C("b")
h = B("h")
e.x = n
n.x = h
n.s = e
k.x = n
k.s = b
k.z = b
b.x = n
b.s = k
b.z = k
h.x = n
h.s = e
assert h.s.x.s.txt == "e" | 5 | 9 | 1.8 | 0.45 | 3 | 1.666667 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.333333 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
145 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.v: C = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.v: B = None
self.txt = txt
b = A("b")
d = B("d")
c = C("c")
k = A("k")
f = B("f")
b.z = f
d.z = f
d.v = c
d.x = k
c.z = d
c.v = d
k.z = d
f.z = d
f.v = c
f.x = b
assert c.v.z.v.z.x.txt == " | k" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.v: C = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.v: B = None
self.txt = txt
b = A("b")
d = B("d")
c = C("c")
k = A("k")
f = B("f")
b.z = f
d.z = f
d.v = c
d.x = k
c.z = d
c.v = d
k.z = d
f.z = d
f.v = c
f.x = b
assert c.v.z.v.z.x.txt == "k" | 5 | 9 | 1.8 | 0.45 | 3 | 1.666667 | 3 | 1 | 2 | 5 | 2 | 1 | 4 | 0.8 | 5 | 0.555556 | 2 | 3 | 3 | 3 | 3 | 2 | 1 | 2 |
146 | class A:
def __init__(self, txt: str):
self.u: D = None
self.z: B = None
self.p: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.z: A = None
self.p: D = None
self.q: E = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: E = None
self.z: A = None
self.p: A = None
self.q: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
i = A("i")
n = B("n")
e = C("e")
m = D("m")
c = E("c")
i.u = m
i.z = n
i.p = c
n.u = c
n.q = c
n.z = i
n.p = m
n.v = m
e.u = c
m.u = c
m.z = i
m.p = i
m.q = n
c.u = i
assert n.z.p.u.txt == " | i" | class A:
def __init__(self, txt: str):
self.u: D = None
self.z: B = None
self.p: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.z: A = None
self.p: D = None
self.q: E = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: E = None
self.z: A = None
self.p: A = None
self.q: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
i = A("i")
n = B("n")
e = C("e")
m = D("m")
c = E("c")
i.u = m
i.z = n
i.p = c
n.u = c
n.q = c
n.z = i
n.p = m
n.v = m
e.u = c
m.u = c
m.z = i
m.p = i
m.q = n
c.u = i
assert n.z.p.u.txt == "i" | 5 | 11 | 2.2 | 0.55 | 5 | 1 | 5 | 1 | 2.8 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.272727 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 |
147 | class A:
def __init__(self, txt: str):
self.w: D = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: D = None
self.z: D = None
self.u: A = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: E = None
self.z: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.z: B = None
self.u: D = None
self.txt = txt
i = A("i")
l = B("l")
g = C("g")
e = D("e")
k = E("k")
i.w = e
i.z = g
l.w = e
l.z = e
l.u = i
l.p = g
g.w = l
e.w = k
e.z = g
k.w = i
k.z = l
k.u = e
assert l.z.z.w.p.w.txt == " | l" | class A:
def __init__(self, txt: str):
self.w: D = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: D = None
self.z: D = None
self.u: A = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: E = None
self.z: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.z: B = None
self.u: D = None
self.txt = txt
i = A("i")
l = B("l")
g = C("g")
e = D("e")
k = E("k")
i.w = e
i.z = g
l.w = e
l.z = e
l.u = i
l.p = g
g.w = l
e.w = k
e.z = g
k.w = i
k.z = l
k.u = e
assert l.z.z.w.p.w.txt == "l" | 5 | 11 | 2.2 | 0.55 | 5 | 1 | 4 | 1 | 2.4 | 5 | 3 | 2 | 3 | 0.6 | 4 | 0.363636 | 3 | 2 | 5 | 3 | 3 | 2 | 2 | 2 |
148 | class A:
def __init__(self, txt: str):
self.v: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: B = None
self.txt = txt
f = A("f")
j = B("j")
d = A("d")
n = A("n")
i = B("i")
f.v = d
f.s = j
j.v = n
j.s = i
d.v = f
d.s = i
n.v = f
n.s = j
i.v = f
i.s = j
assert d.v.v.v.s.txt == " | j" | class A:
def __init__(self, txt: str):
self.v: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: B = None
self.txt = txt
f = A("f")
j = B("j")
d = A("d")
n = A("n")
i = B("i")
f.v = d
f.s = j
j.v = n
j.s = i
d.v = f
d.s = i
n.v = f
n.s = j
i.v = f
i.s = j
assert d.v.v.v.s.txt == "j" | 5 | 10 | 2 | 0.5 | 2 | 2.5 | 2 | 2 | 2 | 4 | 2 | 2 | 3 | 0.6 | 3 | 0.3 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 2 |
149 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.v: A = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.v: C = None
self.txt = txt
f = A("f")
i = B("i")
b = C("b")
l = D("l")
c = E("c")
f.x = i
i.x = f
b.x = f
b.v = f
b.y = c
l.x = f
c.x = f
c.v = b
assert f.x.x.x.txt == " | i" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.v: A = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.v: C = None
self.txt = txt
f = A("f")
i = B("i")
b = C("b")
l = D("l")
c = E("c")
f.x = i
i.x = f
b.x = f
b.v = f
b.y = c
l.x = f
c.x = f
c.v = b
assert f.x.x.x.txt == "i" | 5 | 7 | 1.4 | 0.35 | 5 | 1 | 3 | 1 | 1.6 | 3 | 2 | 2 | 2 | 0.4 | 2 | 0.285714 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
150 | class A:
def __init__(self, txt: str):
self.p: C = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.y: C = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.y: B = None
self.txt = txt
m = A("m")
c = B("c")
j = C("j")
n = D("n")
l = A("l")
g = A("g")
m.p = j
m.y = c
c.p = g
c.y = j
c.t = n
j.p = n
n.p = c
n.y = c
l.p = j
l.y = c
g.p = j
g.y = c
assert j.p.y.y.txt == " | j" | class A:
def __init__(self, txt: str):
self.p: C = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.y: C = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.y: B = None
self.txt = txt
m = A("m")
c = B("c")
j = C("j")
n = D("n")
l = A("l")
g = A("g")
m.p = j
m.y = c
c.p = g
c.y = j
c.t = n
j.p = n
n.p = c
n.y = c
l.p = j
l.y = c
g.p = j
g.y = c
assert j.p.y.y.txt == "j" | 6 | 11 | 1.833333 | 0.366667 | 4 | 1.5 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 0.5 | 3 | 0.272727 | 1 | 3 | 3 | 3 | 2 | 2 | 2 | 1 |
151 | class A:
def __init__(self, txt: str):
self.u: A = None
self.o: A = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
g = A("g")
f = B("f")
c = C("c")
n = C("n")
e = A("e")
a = C("a")
g.u = e
g.o = e
g.r = n
f.u = n
c.u = f
n.u = f
e.u = g
e.o = g
e.r = a
a.u = f
assert f.u.u.u.txt == " | n" | class A:
def __init__(self, txt: str):
self.u: A = None
self.o: A = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
g = A("g")
f = B("f")
c = C("c")
n = C("n")
e = A("e")
a = C("a")
g.u = e
g.o = e
g.r = n
f.u = n
c.u = f
n.u = f
e.u = g
e.o = g
e.r = a
a.u = f
assert f.u.u.u.txt == "n" | 6 | 8 | 1.333333 | 0.266667 | 3 | 2 | 3 | 1 | 1.666667 | 3 | 2 | 2 | 2 | 0.333333 | 2 | 0.25 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
152 | class A:
def __init__(self, txt: str):
self.t: D = None
self.y: E = None
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.y: A = None
self.p: B = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: E = None
self.y: B = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: B = None
self.y: A = None
self.p: B = None
self.txt = txt
d = A("d")
k = B("k")
i = C("i")
j = D("j")
f = E("f")
l = B("l")
d.t = j
d.p = j
d.y = f
k.t = i
k.q = i
k.y = d
k.p = l
i.t = f
i.y = l
i.p = j
j.t = d
f.t = k
f.p = k
f.y = d
l.t = i
l.q = i
l.y = d
l.p = k
assert i.p.t.p.t.txt == " | d" | class A:
def __init__(self, txt: str):
self.t: D = None
self.y: E = None
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.y: A = None
self.p: B = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: E = None
self.y: B = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: B = None
self.y: A = None
self.p: B = None
self.txt = txt
d = A("d")
k = B("k")
i = C("i")
j = D("j")
f = E("f")
l = B("l")
d.t = j
d.p = j
d.y = f
k.t = i
k.q = i
k.y = d
k.p = l
i.t = f
i.y = l
i.p = j
j.t = d
f.t = k
f.p = k
f.y = d
l.t = i
l.q = i
l.y = d
l.p = k
assert i.p.t.p.t.txt == "d" | 6 | 14 | 2.333333 | 0.466667 | 5 | 1.2 | 4 | 1 | 2.8 | 4 | 2 | 2 | 3 | 0.5 | 3 | 0.214286 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
153 | 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.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.s: A = None
self.r: C = None
self.txt = txt
c = A("c")
b = B("b")
k = C("k")
a = C("a")
h = A("h")
g = B("g")
c.z = k
b.z = h
b.s = g
k.z = b
k.s = c
k.r = a
a.z = g
a.s = c
a.r = k
h.z = a
g.z = h
g.s = b
assert b.z.z.z.s.s.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.s: A = None
self.r: C = None
self.txt = txt
c = A("c")
b = B("b")
k = C("k")
a = C("a")
h = A("h")
g = B("g")
c.z = k
b.z = h
b.s = g
k.z = b
k.s = c
k.r = a
a.z = g
a.s = c
a.r = k
h.z = a
g.z = h
g.s = b
assert b.z.z.z.s.s.z.txt == "h" | 6 | 12 | 2 | 0.4 | 3 | 2 | 3 | 1 | 2 | 6 | 2 | 1 | 4 | 0.666667 | 6 | 0.5 | 3 | 2 | 5 | 3.666667 | 2 | 4 | 3 | 2 |
154 | class A:
def __init__(self, txt: str):
self.z: B = None
self.q: A = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.q: A = None
self.r: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.q: B = None
self.r: B = None
self.txt = txt
k = A("k")
g = B("g")
i = C("i")
c = C("c")
j = A("j")
f = B("f")
k.z = f
k.q = j
k.r = i
g.z = j
g.q = j
g.r = f
i.z = c
i.q = f
i.r = f
c.z = i
c.q = g
c.r = f
j.z = f
j.q = k
j.r = c
f.z = k
f.q = k
f.r = g
assert i.r.r.r.z.r.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: B = None
self.q: A = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.q: A = None
self.r: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.q: B = None
self.r: B = None
self.txt = txt
k = A("k")
g = B("g")
i = C("i")
c = C("c")
j = A("j")
f = B("f")
k.z = f
k.q = j
k.r = i
g.z = j
g.q = j
g.r = f
i.z = c
i.q = f
i.r = f
c.z = i
c.q = g
c.r = f
j.z = f
j.q = k
j.r = c
f.z = k
f.q = k
f.r = g
assert i.r.r.r.z.r.txt == "i" | 6 | 15 | 2.5 | 0.5 | 3 | 2 | 3 | 3 | 3 | 5 | 2 | 1 | 4 | 0.666667 | 5 | 0.333333 | 2 | 2 | 5 | 3.5 | 2 | 4 | 3 | 2 |
155 | class A:
def __init__(self, txt: str):
self.s: D = None
self.t: B = None
self.v: F = None
self.p: D = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.t: D = None
self.v: F = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.t: B = None
self.v: B = None
self.p: B = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.t: E = None
self.v: C = None
self.p: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: B = None
self.t: C = None
self.v: C = None
self.p: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: D = None
self.t: C = None
self.txt = txt
l = A("l")
i = B("i")
f = C("f")
k = D("k")
g = E("g")
h = F("h")
l.s = k
l.p = k
l.t = i
l.v = h
l.u = g
i.s = f
i.t = k
i.v = h
i.p = g
f.s = l
f.t = i
f.v = i
f.p = i
f.u = k
k.s = h
k.t = g
k.v = f
k.p = l
g.s = i
g.p = i
g.t = f
g.v = f
h.s = k
h.t = f
assert k.p.p.t.txt == " | g" | class A:
def __init__(self, txt: str):
self.s: D = None
self.t: B = None
self.v: F = None
self.p: D = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.t: D = None
self.v: F = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.t: B = None
self.v: B = None
self.p: B = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.t: E = None
self.v: C = None
self.p: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: B = None
self.t: C = None
self.v: C = None
self.p: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: D = None
self.t: C = None
self.txt = txt
l = A("l")
i = B("i")
f = C("f")
k = D("k")
g = E("g")
h = F("h")
l.s = k
l.p = k
l.t = i
l.v = h
l.u = g
i.s = f
i.t = k
i.v = h
i.p = g
f.s = l
f.t = i
f.v = i
f.p = i
f.u = k
k.s = h
k.t = g
k.v = f
k.p = l
g.s = i
g.p = i
g.t = f
g.v = f
h.s = k
h.t = f
assert k.p.p.t.txt == "g" | 6 | 19 | 3.166667 | 0.633333 | 6 | 1 | 5 | 2 | 4 | 3 | 2 | 1 | 3 | 0.5 | 3 | 0.157895 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
156 | class A:
def __init__(self, txt: str):
self.u: C = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.y: B = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.y: A = None
self.s: B = None
self.txt = txt
j = A("j")
e = B("e")
f = C("f")
c = A("c")
a = A("a")
h = B("h")
j.u = f
j.y = a
e.u = c
e.y = h
e.s = a
f.u = e
f.y = j
f.s = h
c.u = f
c.y = j
a.u = f
a.y = j
h.u = j
h.s = j
h.y = e
assert c.u.u.u.y.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.u: C = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.y: B = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.y: A = None
self.s: B = None
self.txt = txt
j = A("j")
e = B("e")
f = C("f")
c = A("c")
a = A("a")
h = B("h")
j.u = f
j.y = a
e.u = c
e.y = h
e.s = a
f.u = e
f.y = j
f.s = h
c.u = f
c.y = j
a.u = f
a.y = j
h.u = j
h.s = j
h.y = e
assert c.u.u.u.y.y.txt == "a" | 6 | 14 | 2.333333 | 0.466667 | 3 | 2 | 3 | 2 | 2.666667 | 5 | 2 | 1 | 5 | 0.833333 | 5 | 0.357143 | 1 | 3 | 3 | 3 | 2 | 3 | 3 | 2 |
157 | class A:
def __init__(self, txt: str):
self.u: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.p: A = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: D = None
self.p: A = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: D = None
self.p: B = None
self.t: B = None
self.o: C = None
self.txt = txt
m = A("m")
e = B("e")
a = C("a")
h = D("h")
c = A("c")
n = D("n")
m.u = e
m.p = c
e.u = c
e.p = c
e.t = n
a.u = h
a.p = m
a.t = m
h.u = n
h.p = e
h.t = e
h.o = a
c.u = e
c.p = m
n.u = h
n.p = e
n.t = e
n.o = a
assert h.u.p.t.p.txt == " | e" | class A:
def __init__(self, txt: str):
self.u: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.p: A = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: D = None
self.p: A = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: D = None
self.p: B = None
self.t: B = None
self.o: C = None
self.txt = txt
m = A("m")
e = B("e")
a = C("a")
h = D("h")
c = A("c")
n = D("n")
m.u = e
m.p = c
e.u = c
e.p = c
e.t = n
a.u = h
a.p = m
a.t = m
h.u = n
h.p = e
h.t = e
h.o = a
c.u = e
c.p = m
n.u = h
n.p = e
n.t = e
n.o = a
assert h.u.p.t.p.txt == "e" | 6 | 14 | 2.333333 | 0.466667 | 4 | 1.5 | 4 | 2 | 3 | 4 | 2 | 2 | 3 | 0.5 | 3 | 0.214286 | 2 | 2 | 2 | 2 | 3 | 2 | 1 | 1 |
158 | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: D = None
self.s: C = None
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.x: B = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: C = None
self.x: B = None
self.s: A = None
self.r: B = None
self.y: B = None
self.txt = txt
g = A("g")
f = B("f")
k = C("k")
d = D("d")
n = E("n")
a = E("a")
g.q = f
g.x = d
g.r = d
g.s = k
f.q = n
k.q = d
k.x = f
k.s = f
d.q = g
d.x = a
n.q = k
n.x = f
n.r = f
n.y = f
n.s = g
a.q = k
a.x = f
a.r = f
a.y = f
a.s = g
assert g.x.x.x.q.r.txt == " | f" | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: D = None
self.s: C = None
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.x: B = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: C = None
self.x: B = None
self.s: A = None
self.r: B = None
self.y: B = None
self.txt = txt
g = A("g")
f = B("f")
k = C("k")
d = D("d")
n = E("n")
a = E("a")
g.q = f
g.x = d
g.r = d
g.s = k
f.q = n
k.q = d
k.x = f
k.s = f
d.q = g
d.x = a
n.q = k
n.x = f
n.r = f
n.y = f
n.s = g
a.q = k
a.x = f
a.r = f
a.y = f
a.s = g
assert g.x.x.x.q.r.txt == "f" | 6 | 14 | 2.333333 | 0.466667 | 5 | 1.2 | 5 | 1 | 3 | 5 | 2 | 1 | 5 | 0.833333 | 5 | 0.357143 | 1 | 2 | 2 | 2 | 3 | 3 | 3 | 1 |
159 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.u: C = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
g = A("g")
b = B("b")
f = C("f")
i = C("i")
m = B("m")
l = A("l")
g.p = l
b.p = i
b.u = f
b.s = g
f.p = b
i.p = m
m.p = i
m.u = f
m.s = l
l.p = g
assert f.p.u.p.u.p.s.txt == " | g" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.u: C = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
g = A("g")
b = B("b")
f = C("f")
i = C("i")
m = B("m")
l = A("l")
g.p = l
b.p = i
b.u = f
b.s = g
f.p = b
i.p = m
m.p = i
m.u = f
m.s = l
l.p = g
assert f.p.u.p.u.p.s.txt == "g" | 6 | 10 | 1.666667 | 0.333333 | 3 | 2 | 3 | 1 | 1.666667 | 6 | 3 | 3 | 3 | 0.5 | 3 | 0.3 | 4 | 2 | 4 | 2.666667 | 3 | 3 | 1 | 2 |
160 | class A:
def __init__(self, txt: str):
self.q: D = None
self.z: D = None
self.w: B = None
self.u: E = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: D = None
self.z: A = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: E = None
self.z: A = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.z: A = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.z: C = None
self.txt = txt
g = A("g")
j = B("j")
l = C("l")
d = D("d")
k = E("k")
h = E("h")
g.q = d
g.z = d
g.w = j
g.p = j
g.u = h
j.q = d
j.z = g
j.w = l
l.q = h
l.z = g
l.w = d
d.q = g
d.z = g
d.w = k
k.q = g
k.z = l
h.q = g
h.z = l
assert g.w.w.q.q.w.txt == " | j" | class A:
def __init__(self, txt: str):
self.q: D = None
self.z: D = None
self.w: B = None
self.u: E = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: D = None
self.z: A = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: E = None
self.z: A = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.z: A = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.z: C = None
self.txt = txt
g = A("g")
j = B("j")
l = C("l")
d = D("d")
k = E("k")
h = E("h")
g.q = d
g.z = d
g.w = j
g.p = j
g.u = h
j.q = d
j.z = g
j.w = l
l.q = h
l.z = g
l.w = d
d.q = g
d.z = g
d.w = k
k.q = g
k.z = l
h.q = g
h.z = l
assert g.w.w.q.q.w.txt == "j" | 6 | 15 | 2.5 | 0.5 | 5 | 1.2 | 5 | 2 | 3.2 | 5 | 2 | 2 | 4 | 0.666667 | 4 | 0.266667 | 2 | 4 | 4 | 4 | 2 | 3 | 2 | 1 |
161 | class A:
def __init__(self, txt: str):
self.r: D = None
self.u: E = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.u: D = None
self.v: D = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.u: D = None
self.v: D = None
self.q: C = None
self.z: D = None
self.txt = txt
a = A("a")
n = B("n")
l = C("l")
d = D("d")
b = E("b")
m = E("m")
a.r = d
a.u = b
a.v = n
n.r = m
l.r = a
l.u = d
l.v = d
l.q = n
d.r = b
b.r = l
b.q = l
b.u = d
b.v = d
b.z = d
m.r = l
m.q = l
m.u = d
m.v = d
m.z = d
assert b.z.r.z.r.r.q.txt == " | n" | class A:
def __init__(self, txt: str):
self.r: D = None
self.u: E = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.u: D = None
self.v: D = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.u: D = None
self.v: D = None
self.q: C = None
self.z: D = None
self.txt = txt
a = A("a")
n = B("n")
l = C("l")
d = D("d")
b = E("b")
m = E("m")
a.r = d
a.u = b
a.v = n
n.r = m
l.r = a
l.u = d
l.v = d
l.q = n
d.r = b
b.r = l
b.q = l
b.u = d
b.v = d
b.z = d
m.r = l
m.q = l
m.u = d
m.v = d
m.z = d
assert b.z.r.z.r.r.q.txt == "n" | 6 | 12 | 2 | 0.4 | 5 | 1.2 | 5 | 1 | 2.8 | 6 | 3 | 2 | 4 | 0.666667 | 4 | 0.333333 | 3 | 2 | 4 | 2.5 | 3 | 3 | 2 | 2 |
162 | class A:
def __init__(self, txt: str):
self.x: C = None
self.w: C = None
self.q: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.w: A = None
self.q: A = None
self.txt = txt
n = A("n")
b = B("b")
j = C("j")
m = D("m")
c = A("c")
l = A("l")
n.x = j
n.w = j
n.q = l
n.r = b
b.x = c
j.x = c
m.x = b
m.w = n
m.q = n
c.x = j
c.w = j
c.q = l
c.r = b
l.x = j
l.w = j
l.q = n
l.r = b
assert c.q.r.x.x.x.r.txt == " | b" | class A:
def __init__(self, txt: str):
self.x: C = None
self.w: C = None
self.q: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.w: A = None
self.q: A = None
self.txt = txt
n = A("n")
b = B("b")
j = C("j")
m = D("m")
c = A("c")
l = A("l")
n.x = j
n.w = j
n.q = l
n.r = b
b.x = c
j.x = c
m.x = b
m.w = n
m.q = n
c.x = j
c.w = j
c.q = l
c.r = b
l.x = j
l.w = j
l.q = n
l.r = b
assert c.q.r.x.x.x.r.txt == "b" | 6 | 13 | 2.166667 | 0.433333 | 4 | 1.5 | 4 | 1 | 2.25 | 6 | 3 | 1 | 4 | 0.666667 | 6 | 0.461538 | 3 | 2 | 5 | 3.5 | 3 | 3 | 3 | 3 |
163 | class A:
def __init__(self, txt: str):
self.q: E = None
self.u: C = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.u: E = None
self.z: D = None
self.y: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.u: D = None
self.z: E = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: D = None
self.u: B = None
self.z: A = None
self.txt = txt
n = A("n")
j = B("j")
f = C("f")
b = D("b")
g = E("g")
m = C("m")
n.q = g
n.u = f
n.z = f
j.q = n
j.u = g
j.z = b
j.y = b
f.q = j
f.u = b
f.y = b
f.z = g
b.q = j
b.u = j
g.q = b
g.u = j
g.z = n
m.q = j
m.u = b
m.y = b
m.z = g
assert f.u.q.u.q.txt == " | b" | class A:
def __init__(self, txt: str):
self.q: E = None
self.u: C = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.u: E = None
self.z: D = None
self.y: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.u: D = None
self.z: E = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: D = None
self.u: B = None
self.z: A = None
self.txt = txt
n = A("n")
j = B("j")
f = C("f")
b = D("b")
g = E("g")
m = C("m")
n.q = g
n.u = f
n.z = f
j.q = n
j.u = g
j.z = b
j.y = b
f.q = j
f.u = b
f.y = b
f.z = g
b.q = j
b.u = j
g.q = b
g.u = j
g.z = n
m.q = j
m.u = b
m.y = b
m.z = g
assert f.u.q.u.q.txt == "b" | 6 | 15 | 2.5 | 0.5 | 5 | 1.2 | 4 | 2 | 3.2 | 4 | 2 | 1 | 4 | 0.666667 | 4 | 0.266667 | 1 | 3 | 3 | 3 | 2 | 2 | 1 | 1 |
164 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
f = A("f")
j = B("j")
a = A("a")
l = A("l")
d = A("d")
e = B("e")
f.p = e
j.p = a
a.p = j
l.p = j
d.p = e
e.p = a
assert d.p.p.p.txt == " | j" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
f = A("f")
j = B("j")
a = A("a")
l = A("l")
d = A("d")
e = B("e")
f.p = e
j.p = a
a.p = j
l.p = j
d.p = e
e.p = a
assert d.p.p.p.txt == "j" | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 3 | 1 | 1 | 4 | 0.666667 | 3 | 0.5 | 0 | null | null | null | 1 | 3 | 3 | 1 |
165 | class A:
def __init__(self, txt: str):
self.r: B = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.v: A = None
self.u: A = None
self.q: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.v: A = None
self.u: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.v: B = None
self.u: D = None
self.q: A = None
self.y: B = None
self.txt = txt
f = A("f")
k = B("k")
h = C("h")
e = D("e")
i = E("i")
b = B("b")
f.r = b
f.v = i
k.r = h
k.v = f
k.u = f
k.q = e
h.r = k
h.v = f
e.r = h
e.v = f
e.u = f
i.r = b
i.y = b
i.v = k
i.u = e
i.q = f
b.r = h
b.v = f
b.u = f
b.q = e
assert k.v.r.q.u.txt == " | f" | class A:
def __init__(self, txt: str):
self.r: B = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.v: A = None
self.u: A = None
self.q: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.v: A = None
self.u: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.v: B = None
self.u: D = None
self.q: A = None
self.y: B = None
self.txt = txt
f = A("f")
k = B("k")
h = C("h")
e = D("e")
i = E("i")
b = B("b")
f.r = b
f.v = i
k.r = h
k.v = f
k.u = f
k.q = e
h.r = k
h.v = f
e.r = h
e.v = f
e.u = f
i.r = b
i.y = b
i.v = k
i.u = e
i.q = f
b.r = h
b.v = f
b.u = f
b.q = e
assert k.v.r.q.u.txt == "f" | 6 | 16 | 2.666667 | 0.533333 | 5 | 1.2 | 5 | 2 | 3.2 | 4 | 2 | 1 | 4 | 0.666667 | 4 | 0.25 | 1 | 3 | 3 | 3 | 4 | 1 | 1 | 1 |
166 | class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.q: C = None
self.w: A = None
self.txt = txt
m = A("m")
d = B("d")
n = C("n")
f = A("f")
c = C("c")
j = B("j")
m.s = n
d.s = j
n.s = f
n.q = c
n.w = m
f.s = c
c.s = f
c.q = n
c.w = m
j.s = d
assert f.s.w.s.txt == " | n" | class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.q: C = None
self.w: A = None
self.txt = txt
m = A("m")
d = B("d")
n = C("n")
f = A("f")
c = C("c")
j = B("j")
m.s = n
d.s = j
n.s = f
n.q = c
n.w = m
f.s = c
c.s = f
c.q = n
c.w = m
j.s = d
assert f.s.w.s.txt == "n" | 6 | 10 | 1.666667 | 0.333333 | 3 | 2 | 3 | 1 | 1.666667 | 3 | 1 | 1 | 4 | 0.666667 | 3 | 0.3 | 0 | null | null | null | 2 | 2 | 1 | 1 |
167 | class A:
def __init__(self, txt: str):
self.r: D = None
self.u: E = None
self.z: D = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.u: B = None
self.z: D = None
self.q: E = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: A = None
self.u: C = None
self.z: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.u: A = None
self.txt = txt
e = A("e")
g = B("g")
j = C("j")
l = D("l")
b = E("b")
d = D("d")
e.r = d
e.q = d
e.u = b
e.z = l
g.r = j
g.u = l
j.r = e
j.u = g
j.z = d
j.y = d
j.q = b
l.r = e
l.u = j
l.z = j
b.r = j
b.u = e
d.r = e
d.u = j
d.z = j
assert l.r.u.r.z.r.txt == " | e" | class A:
def __init__(self, txt: str):
self.r: D = None
self.u: E = None
self.z: D = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.u: B = None
self.z: D = None
self.q: E = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: A = None
self.u: C = None
self.z: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.u: A = None
self.txt = txt
e = A("e")
g = B("g")
j = C("j")
l = D("l")
b = E("b")
d = D("d")
e.r = d
e.q = d
e.u = b
e.z = l
g.r = j
g.u = l
j.r = e
j.u = g
j.z = d
j.y = d
j.q = b
l.r = e
l.u = j
l.z = j
b.r = j
b.u = e
d.r = e
d.u = j
d.z = j
assert l.r.u.r.z.r.txt == "e" | 6 | 15 | 2.5 | 0.5 | 5 | 1.2 | 5 | 2 | 3.2 | 5 | 2 | 1 | 5 | 0.833333 | 5 | 0.333333 | 1 | 4 | 4 | 4 | 3 | 3 | 1 | 1 |
168 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: E = None
self.t: F = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.t: E = None
self.z: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: F = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: E = None
self.txt = txt
c = A("c")
g = B("g")
e = C("e")
l = D("l")
j = E("j")
n = F("n")
c.o = g
g.o = j
g.t = n
g.z = c
e.o = l
e.t = j
e.z = n
l.o = n
l.t = e
j.o = g
n.o = j
assert l.o.o.o.txt == " | g" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: E = None
self.t: F = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.t: E = None
self.z: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: F = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: E = None
self.txt = txt
c = A("c")
g = B("g")
e = C("e")
l = D("l")
j = E("j")
n = F("n")
c.o = g
g.o = j
g.t = n
g.z = c
e.o = l
e.t = j
e.z = n
l.o = n
l.t = e
j.o = g
n.o = j
assert l.o.o.o.txt == "g" | 6 | 11 | 1.833333 | 0.366667 | 6 | 1 | 3 | 1 | 1.833333 | 3 | 1 | 1 | 4 | 0.666667 | 3 | 0.272727 | 0 | null | null | null | 1 | 3 | 3 | 1 |
169 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: B = None
self.txt = txt
i = A("i")
m = B("m")
a = B("a")
g = A("g")
b = B("b")
l = A("l")
i.o = l
m.o = i
m.w = b
a.o = g
a.w = b
g.o = i
b.o = i
b.w = a
l.o = i
assert m.w.o.o.txt == " | l" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: B = None
self.txt = txt
i = A("i")
m = B("m")
a = B("a")
g = A("g")
b = B("b")
l = A("l")
i.o = l
m.o = i
m.w = b
a.o = g
a.w = b
g.o = i
b.o = i
b.w = a
l.o = i
assert m.w.o.o.txt == "l" | 6 | 9 | 1.5 | 0.3 | 2 | 3 | 2 | 1 | 1.5 | 3 | 1 | 1 | 4 | 0.666667 | 3 | 0.333333 | 0 | null | null | null | 2 | 2 | 2 | 1 |
170 | class A:
def __init__(self, txt: str):
self.u: D = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.v: A = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: C = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.v: D = None
self.w: C = None
self.txt = txt
g = A("g")
c = B("c")
l = C("l")
i = D("i")
a = C("a")
e = D("e")
g.u = i
g.v = l
c.u = i
c.v = g
c.w = a
l.u = a
l.v = c
i.u = l
i.v = e
i.w = a
a.u = l
a.v = c
e.u = l
e.v = i
e.w = a
assert e.u.v.v.u.txt == " | i" | class A:
def __init__(self, txt: str):
self.u: D = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.v: A = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: C = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.v: D = None
self.w: C = None
self.txt = txt
g = A("g")
c = B("c")
l = C("l")
i = D("i")
a = C("a")
e = D("e")
g.u = i
g.v = l
c.u = i
c.v = g
c.w = a
l.u = a
l.v = c
i.u = l
i.v = e
i.w = a
a.u = l
a.v = c
e.u = l
e.v = i
e.w = a
assert e.u.v.v.u.txt == "i" | 6 | 15 | 2.5 | 0.5 | 4 | 1.5 | 3 | 2 | 2.5 | 4 | 1 | 1 | 5 | 0.833333 | 4 | 0.266667 | 0 | null | null | null | 2 | 2 | 2 | 1 |
171 | class A:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.w: D = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: D = None
self.w: A = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.w: A = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
k = A("k")
h = B("h")
f = C("f")
g = D("g")
j = E("j")
c = B("c")
k.v = f
h.v = c
h.w = g
h.p = g
f.v = g
f.w = k
f.p = h
g.v = f
g.p = f
g.w = k
j.v = h
c.v = h
c.w = g
c.p = g
assert j.v.p.w.v.v.p.txt == " | f" | class A:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.w: D = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: D = None
self.w: A = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.w: A = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
k = A("k")
h = B("h")
f = C("f")
g = D("g")
j = E("j")
c = B("c")
k.v = f
h.v = c
h.w = g
h.p = g
f.v = g
f.w = k
f.p = h
g.v = f
g.p = f
g.w = k
j.v = h
c.v = h
c.w = g
c.p = g
assert j.v.p.w.v.v.p.txt == "f" | 6 | 11 | 1.833333 | 0.366667 | 5 | 1.2 | 3 | 1 | 2.2 | 6 | 2 | 1 | 5 | 0.833333 | 6 | 0.545455 | 2 | 2 | 3 | 2.5 | 3 | 3 | 2 | 2 |
172 | class A:
def __init__(self, txt: str):
self.z: B = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.v: B = None
self.txt = txt
e = A("e")
f = B("f")
c = C("c")
n = B("n")
k = A("k")
g = C("g")
e.z = f
e.v = c
f.z = e
f.v = c
c.z = f
c.v = f
n.z = e
n.v = g
k.z = f
k.v = g
g.z = f
g.v = f
assert n.v.z.v.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: B = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.v: B = None
self.txt = txt
e = A("e")
f = B("f")
c = C("c")
n = B("n")
k = A("k")
g = C("g")
e.z = f
e.v = c
f.z = e
f.v = c
c.z = f
c.v = f
n.z = e
n.v = g
k.z = f
k.v = g
g.z = f
g.v = f
assert n.v.z.v.txt == "c" | 6 | 10 | 1.666667 | 0.333333 | 3 | 2 | 2 | 2 | 2 | 3 | 1 | 1 | 4 | 0.666667 | 3 | 0.3 | 0 | null | null | null | 2 | 2 | 1 | 1 |
173 | class A:
def __init__(self, txt: str):
self.v: C = None
self.r: F = None
self.y: E = None
self.t: D = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: E = None
self.r: E = None
self.y: D = None
self.t: E = None
self.q: A = None
self.o: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.r: C = None
self.y: C = None
self.t: F = None
self.q: F = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.r: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: D = None
self.r: A = None
self.y: E = None
self.t: D = None
self.txt = txt
e = A("e")
g = B("g")
f = C("f")
n = D("n")
h = E("h")
i = F("i")
e.v = f
e.r = i
e.y = h
e.t = n
e.q = n
g.v = e
f.v = h
f.r = h
f.t = h
f.y = n
f.q = e
f.o = g
n.v = f
n.r = f
n.y = f
n.o = f
n.t = i
n.q = i
h.v = i
h.r = n
i.v = n
i.t = n
i.r = e
i.y = h
assert n.o.t.v.r.txt == " | e" | class A:
def __init__(self, txt: str):
self.v: C = None
self.r: F = None
self.y: E = None
self.t: D = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: E = None
self.r: E = None
self.y: D = None
self.t: E = None
self.q: A = None
self.o: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.r: C = None
self.y: C = None
self.t: F = None
self.q: F = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.r: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: D = None
self.r: A = None
self.y: E = None
self.t: D = None
self.txt = txt
e = A("e")
g = B("g")
f = C("f")
n = D("n")
h = E("h")
i = F("i")
e.v = f
e.r = i
e.y = h
e.t = n
e.q = n
g.v = e
f.v = h
f.r = h
f.t = h
f.y = n
f.q = e
f.o = g
n.v = f
n.r = f
n.y = f
n.o = f
n.t = i
n.q = i
h.v = i
h.r = n
i.v = n
i.t = n
i.r = e
i.y = h
assert n.o.t.v.r.txt == "e" | 6 | 16 | 2.666667 | 0.533333 | 6 | 1 | 6 | 1 | 4 | 4 | 1 | 1 | 5 | 0.833333 | 4 | 0.25 | 0 | null | null | null | 4 | 1 | 1 | 1 |
174 | class A:
def __init__(self, txt: str):
self.u: E = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.t: C = None
self.o: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.t: D = None
self.o: D = None
self.p: E = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: D = None
self.t: A = None
self.o: B = None
self.txt = txt
g = A("g")
c = B("c")
a = C("a")
d = D("d")
i = E("i")
n = A("n")
g.u = i
g.t = c
c.u = d
c.t = a
c.o = i
a.u = c
a.x = c
a.t = d
a.o = d
a.p = i
d.u = a
d.t = a
i.u = d
i.t = g
i.o = c
n.u = i
n.t = c
assert n.u.o.t.x.o.t.txt == " | g" | class A:
def __init__(self, txt: str):
self.u: E = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.t: C = None
self.o: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.t: D = None
self.o: D = None
self.p: E = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: D = None
self.t: A = None
self.o: B = None
self.txt = txt
g = A("g")
c = B("c")
a = C("a")
d = D("d")
i = E("i")
n = A("n")
g.u = i
g.t = c
c.u = d
c.t = a
c.o = i
a.u = c
a.x = c
a.t = d
a.o = d
a.p = i
d.u = a
d.t = a
i.u = d
i.t = g
i.o = c
n.u = i
n.t = c
assert n.u.o.t.x.o.t.txt == "g" | 6 | 14 | 2.333333 | 0.466667 | 5 | 1.2 | 5 | 2 | 3 | 6 | 2 | 1 | 5 | 0.833333 | 6 | 0.428571 | 2 | 2 | 4 | 3 | 4 | 2 | 1 | 2 |
175 | class A:
def __init__(self, txt: str):
self.z: C = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.p: 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: B = None
self.p: A = None
self.q: A = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.p: A = None
self.txt = txt
j = A("j")
e = B("e")
h = C("h")
g = D("g")
f = E("f")
l = B("l")
j.z = h
j.y = l
e.z = l
e.p = l
e.y = g
h.z = l
g.z = h
g.y = l
g.p = j
g.q = j
g.r = j
f.z = h
f.y = g
f.p = j
l.z = e
l.p = e
l.y = g
assert j.z.z.p.z.p.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: B = None
self.y: D = None
self.p: 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: B = None
self.p: A = None
self.q: A = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.p: A = None
self.txt = txt
j = A("j")
e = B("e")
h = C("h")
g = D("g")
f = E("f")
l = B("l")
j.z = h
j.y = l
e.z = l
e.p = l
e.y = g
h.z = l
g.z = h
g.y = l
g.p = j
g.q = j
g.r = j
f.z = h
f.y = g
f.p = j
l.z = e
l.p = e
l.y = g
assert j.z.z.p.z.p.txt == "e" | 6 | 13 | 2.166667 | 0.433333 | 5 | 1.2 | 5 | 1 | 2.8 | 5 | 2 | 2 | 4 | 0.666667 | 4 | 0.307692 | 2 | 2 | 2 | 2 | 2 | 3 | 2 | 1 |
176 | class A:
def __init__(self, txt: str):
self.y: E = None
self.r: B = None
self.s: B = None
self.t: B = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.r: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.r: B = None
self.s: A = None
self.txt = txt
g = A("g")
l = B("l")
j = C("j")
a = D("a")
h = E("h")
i = E("i")
g.y = i
g.r = l
g.s = l
g.t = l
g.v = j
l.y = j
l.r = g
j.y = g
j.r = i
a.y = i
a.r = l
h.y = a
h.r = l
h.s = g
i.y = a
i.r = l
i.s = g
assert i.y.y.s.r.y.y.txt == " | g" | class A:
def __init__(self, txt: str):
self.y: E = None
self.r: B = None
self.s: B = None
self.t: B = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.r: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.r: B = None
self.s: A = None
self.txt = txt
g = A("g")
l = B("l")
j = C("j")
a = D("a")
h = E("h")
i = E("i")
g.y = i
g.r = l
g.s = l
g.t = l
g.v = j
l.y = j
l.r = g
j.y = g
j.r = i
a.y = i
a.r = l
h.y = a
h.r = l
h.s = g
i.y = a
i.r = l
i.s = g
assert i.y.y.s.r.y.y.txt == "g" | 6 | 15 | 2.5 | 0.5 | 5 | 1.2 | 5 | 2 | 2.8 | 6 | 2 | 1 | 5 | 0.833333 | 6 | 0.4 | 2 | 2 | 3 | 2.5 | 3 | 4 | 2 | 2 |
177 | class A:
def __init__(self, txt: str):
self.y: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
m = A("m")
h = B("h")
i = A("i")
e = B("e")
g = B("g")
n = B("n")
m.y = e
m.z = i
h.y = m
i.y = g
i.z = m
e.y = m
g.y = m
n.y = i
assert i.y.y.z.txt == " | i" | class A:
def __init__(self, txt: str):
self.y: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
m = A("m")
h = B("h")
i = A("i")
e = B("e")
g = B("g")
n = B("n")
m.y = e
m.z = i
h.y = m
i.y = g
i.z = m
e.y = m
g.y = m
n.y = i
assert i.y.y.z.txt == "i" | 6 | 8 | 1.333333 | 0.266667 | 2 | 3 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.5 | 3 | 0.375 | 1 | 3 | 3 | 3 | 2 | 2 | 2 | 1 |
178 | class A:
def __init__(self, txt: str):
self.u: C = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
d = A("d")
b = B("b")
g = C("g")
a = A("a")
c = B("c")
n = C("n")
d.u = g
d.o = a
b.u = c
b.o = a
g.u = n
a.u = n
a.o = d
c.u = b
c.o = d
n.u = g
assert b.o.u.u.u.u.u.txt == " | n" | class A:
def __init__(self, txt: str):
self.u: C = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
d = A("d")
b = B("b")
g = C("g")
a = A("a")
c = B("c")
n = C("n")
d.u = g
d.o = a
b.u = c
b.o = a
g.u = n
a.u = n
a.o = d
c.u = b
c.o = d
n.u = g
assert b.o.u.u.u.u.u.txt == "n" | 6 | 10 | 1.666667 | 0.333333 | 3 | 2 | 2 | 1 | 1.666667 | 6 | 3 | 2 | 4 | 0.666667 | 4 | 0.4 | 3 | 2 | 4 | 2.5 | 2 | 5 | 5 | 1 |
179 | class A:
def __init__(self, txt: str):
self.v: C = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
c = A("c")
f = B("f")
l = C("l")
n = D("n")
b = A("b")
m = C("m")
c.v = l
c.w = f
f.v = n
l.v = n
n.v = m
b.v = l
b.w = f
m.v = n
assert f.v.v.v.txt == " | n" | class A:
def __init__(self, txt: str):
self.v: C = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
c = A("c")
f = B("f")
l = C("l")
n = D("n")
b = A("b")
m = C("m")
c.v = l
c.w = f
f.v = n
l.v = n
n.v = m
b.v = l
b.w = f
m.v = n
assert f.v.v.v.txt == "n" | 6 | 8 | 1.333333 | 0.266667 | 4 | 1.5 | 2 | 1 | 1.25 | 3 | 2 | 1 | 3 | 0.5 | 3 | 0.375 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
180 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.x: A = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
c = A("c")
l = B("l")
b = C("b")
f = D("f")
n = E("n")
j = A("j")
c.t = l
l.t = f
b.t = l
b.x = f
f.t = l
f.x = j
f.o = j
n.t = b
j.t = l
assert b.t.t.o.t.t.txt == " | f" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.x: A = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
c = A("c")
l = B("l")
b = C("b")
f = D("f")
n = E("n")
j = A("j")
c.t = l
l.t = f
b.t = l
b.x = f
f.t = l
f.x = j
f.o = j
n.t = b
j.t = l
assert b.t.t.o.t.t.txt == "f" | 6 | 8 | 1.333333 | 0.266667 | 5 | 1.2 | 3 | 1 | 1.6 | 5 | 2 | 2 | 4 | 0.666667 | 4 | 0.5 | 2 | 3 | 3 | 3 | 2 | 4 | 2 | 1 |
181 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
n = B("n")
b = A("b")
k = B("k")
e = B("e")
j = A("j")
f.q = n
n.q = b
b.q = n
k.q = b
e.q = b
j.q = e
assert k.q.q.q.q.q.txt == " | b" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
n = B("n")
b = A("b")
k = B("k")
e = B("e")
j = A("j")
f.q = n
n.q = b
b.q = n
k.q = b
e.q = b
j.q = e
assert k.q.q.q.q.q.txt == "b" | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 5 | 3 | 2 | 3 | 0.5 | 3 | 0.5 | 3 | 2 | 4 | 2.5 | 1 | 5 | 5 | 1 |
182 | class A:
def __init__(self, txt: str):
self.t: B = None
self.x: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.x: A = None
self.q: B = None
self.txt = txt
l = A("l")
i = B("i")
b = C("b")
e = A("e")
a = A("a")
c = C("c")
l.t = i
l.x = a
l.q = e
i.t = b
i.x = b
b.t = e
b.x = l
b.q = i
e.t = i
e.x = l
e.q = l
a.t = i
a.x = l
a.q = e
c.t = a
c.x = l
c.q = i
assert b.t.x.q.txt == " | e" | class A:
def __init__(self, txt: str):
self.t: B = None
self.x: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.x: A = None
self.q: B = None
self.txt = txt
l = A("l")
i = B("i")
b = C("b")
e = A("e")
a = A("a")
c = C("c")
l.t = i
l.x = a
l.q = e
i.t = b
i.x = b
b.t = e
b.x = l
b.q = i
e.t = i
e.x = l
e.q = l
a.t = i
a.x = l
a.q = e
c.t = a
c.x = l
c.q = i
assert b.t.x.q.txt == "e" | 6 | 15 | 2.5 | 0.5 | 3 | 2 | 3 | 2 | 2.666667 | 3 | 2 | 1 | 3 | 0.5 | 3 | 0.2 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 |
183 | class A:
def __init__(self, txt: str):
self.o: C = None
self.y: E = None
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.y: A = None
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: E = None
self.y: F = None
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: C = None
self.y: C = None
self.z: B = None
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
a = A("a")
d = B("d")
f = C("f")
i = D("i")
k = E("k")
m = F("m")
a.o = f
a.y = k
a.z = k
d.o = i
f.o = d
f.y = a
f.z = a
i.o = k
i.y = m
i.z = d
k.o = f
k.y = f
k.z = d
k.r = a
m.o = i
assert f.o.o.z.o.txt == " | i" | class A:
def __init__(self, txt: str):
self.o: C = None
self.y: E = None
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.y: A = None
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: E = None
self.y: F = None
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: C = None
self.y: C = None
self.z: B = None
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
a = A("a")
d = B("d")
f = C("f")
i = D("i")
k = E("k")
m = F("m")
a.o = f
a.y = k
a.z = k
d.o = i
f.o = d
f.y = a
f.z = a
i.o = k
i.y = m
i.z = d
k.o = f
k.y = f
k.z = d
k.r = a
m.o = i
assert f.o.o.z.o.txt == "i" | 6 | 12 | 2 | 0.4 | 6 | 1 | 4 | 1 | 2.5 | 4 | 2 | 2 | 3 | 0.5 | 3 | 0.25 | 2 | 2 | 2 | 2 | 2 | 3 | 2 | 1 |
184 | class A:
def __init__(self, txt: str):
self.q: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
m = A("m")
e = B("e")
g = A("g")
b = A("b")
k = B("k")
n = B("n")
m.q = e
m.z = e
e.q = n
g.q = n
g.z = n
b.q = k
b.z = k
k.q = e
n.q = k
assert m.q.q.q.q.txt == " | e" | class A:
def __init__(self, txt: str):
self.q: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
m = A("m")
e = B("e")
g = A("g")
b = A("b")
k = B("k")
n = B("n")
m.q = e
m.z = e
e.q = n
g.q = n
g.z = n
b.q = k
b.z = k
k.q = e
n.q = k
assert m.q.q.q.q.txt == "e" | 6 | 6 | 1 | 0.2 | 2 | 3 | 2 | 1 | 1.5 | 4 | 2 | 1 | 4 | 0.666667 | 4 | 0.666667 | 1 | 3 | 3 | 3 | 1 | 4 | 4 | 1 |
185 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
m = A("m")
i = B("i")
g = B("g")
c = A("c")
d = A("d")
f = A("f")
m.v = c
i.v = g
g.v = i
c.v = f
d.v = f
f.v = d
assert i.v.v.v.txt == " | g" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
m = A("m")
i = B("i")
g = B("g")
c = A("c")
d = A("d")
f = A("f")
m.v = c
i.v = g
g.v = i
c.v = f
d.v = f
f.v = d
assert i.v.v.v.txt == "g" | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 3 | 2 | 2 | 2 | 0.333333 | 2 | 0.333333 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
186 | class A:
def __init__(self, txt: str):
self.x: C = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.s: A = None
self.v: D = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.s: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: D = None
self.s: B = None
self.txt = txt
l = A("l")
m = B("m")
j = C("j")
k = D("k")
n = D("n")
b = C("b")
l.x = j
l.s = b
m.x = b
m.s = l
m.y = l
m.v = n
j.x = k
j.s = b
k.x = n
k.s = m
n.x = k
n.s = m
b.x = n
b.s = j
assert n.s.v.s.v.x.x.txt == " | n" | class A:
def __init__(self, txt: str):
self.x: C = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.s: A = None
self.v: D = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.s: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: D = None
self.s: B = None
self.txt = txt
l = A("l")
m = B("m")
j = C("j")
k = D("k")
n = D("n")
b = C("b")
l.x = j
l.s = b
m.x = b
m.s = l
m.y = l
m.v = n
j.x = k
j.s = b
k.x = n
k.s = m
n.x = k
n.s = m
b.x = n
b.s = j
assert n.s.v.s.v.x.x.txt == "n" | 6 | 13 | 2.166667 | 0.433333 | 4 | 1.5 | 4 | 2 | 2.5 | 6 | 4 | 2 | 3 | 0.5 | 4 | 0.307692 | 4 | 2 | 6 | 3.142857 | 3 | 2 | 2 | 2 |
187 | class A:
def __init__(self, txt: str):
self.z: C = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.q: E = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.q: A = None
self.p: E = None
self.y: 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: A = None
self.txt = txt
f = A("f")
k = B("k")
i = C("i")
a = D("a")
l = E("l")
n = B("n")
f.z = i
f.q = i
k.z = l
k.q = l
k.p = a
i.z = l
i.p = l
i.q = f
i.y = a
a.z = k
l.z = f
n.z = l
n.q = l
n.p = a
assert k.p.z.p.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: C = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.q: E = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.q: A = None
self.p: E = None
self.y: 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: A = None
self.txt = txt
f = A("f")
k = B("k")
i = C("i")
a = D("a")
l = E("l")
n = B("n")
f.z = i
f.q = i
k.z = l
k.q = l
k.p = a
i.z = l
i.p = l
i.q = f
i.y = a
a.z = k
l.z = f
n.z = l
n.q = l
n.p = a
assert k.p.z.p.txt == "a" | 6 | 10 | 1.666667 | 0.333333 | 5 | 1.2 | 4 | 1 | 2.2 | 3 | 2 | 2 | 2 | 0.333333 | 2 | 0.2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
188 | class A:
def __init__(self, txt: str):
self.q: B = None
self.z: B = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.z: A = None
self.w: F = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.z: A = None
self.w: B = None
self.v: A = None
self.o: D = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.z: E = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: C = None
self.z: D = None
self.w: A = None
self.v: A = None
self.txt = txt
c = A("c")
i = B("i")
m = C("m")
k = D("k")
d = E("d")
f = F("f")
c.q = i
c.z = i
c.w = m
i.q = m
i.v = m
i.z = c
i.w = f
m.q = c
m.z = c
m.v = c
m.w = i
m.s = i
m.o = k
k.q = c
k.w = c
k.z = d
d.q = k
f.q = m
f.z = k
f.w = c
f.v = c
assert f.w.w.s.z.w.txt == " | m" | class A:
def __init__(self, txt: str):
self.q: B = None
self.z: B = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.z: A = None
self.w: F = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.z: A = None
self.w: B = None
self.v: A = None
self.o: D = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.z: E = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: C = None
self.z: D = None
self.w: A = None
self.v: A = None
self.txt = txt
c = A("c")
i = B("i")
m = C("m")
k = D("k")
d = E("d")
f = F("f")
c.q = i
c.z = i
c.w = m
i.q = m
i.v = m
i.z = c
i.w = f
m.q = c
m.z = c
m.v = c
m.w = i
m.s = i
m.o = k
k.q = c
k.w = c
k.z = d
d.q = k
f.q = m
f.z = k
f.w = c
f.v = c
assert f.w.w.s.z.w.txt == "m" | 6 | 14 | 2.333333 | 0.466667 | 6 | 1 | 6 | 1 | 3.5 | 5 | 2 | 2 | 4 | 0.666667 | 4 | 0.285714 | 2 | 3 | 3 | 3 | 3 | 3 | 2 | 1 |
189 | class A:
def __init__(self, txt: str):
self.p: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
b = A("b")
k = B("k")
h = A("h")
c = B("c")
e = A("e")
l = B("l")
b.p = h
b.r = k
k.p = l
h.p = e
h.r = k
c.p = k
e.p = h
e.r = l
l.p = k
assert h.p.p.r.txt == " | k" | class A:
def __init__(self, txt: str):
self.p: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
b = A("b")
k = B("k")
h = A("h")
c = B("c")
e = A("e")
l = B("l")
b.p = h
b.r = k
k.p = l
h.p = e
h.r = k
c.p = k
e.p = h
e.r = l
l.p = k
assert h.p.p.r.txt == "k" | 6 | 9 | 1.5 | 0.3 | 2 | 3 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.5 | 3 | 0.333333 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
190 | class A:
def __init__(self, txt: str):
self.u: D = None
self.v: C = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.v: A = None
self.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
b = A("b")
i = B("i")
f = C("f")
m = D("m")
d = B("d")
j = D("j")
b.u = m
b.v = f
b.y = i
i.u = j
i.v = b
i.y = d
f.u = d
m.u = f
d.u = j
d.v = b
d.y = i
j.u = f
assert d.u.u.u.y.u.txt == " | j" | class A:
def __init__(self, txt: str):
self.u: D = None
self.v: C = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.v: A = None
self.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
b = A("b")
i = B("i")
f = C("f")
m = D("m")
d = B("d")
j = D("j")
b.u = m
b.v = f
b.y = i
i.u = j
i.v = b
i.y = d
f.u = d
m.u = f
d.u = j
d.v = b
d.y = i
j.u = f
assert d.u.u.u.y.u.txt == "j" | 6 | 12 | 2 | 0.4 | 4 | 1.5 | 3 | 1 | 2 | 5 | 2 | 1 | 4 | 0.666667 | 5 | 0.416667 | 2 | 3 | 4 | 3.5 | 2 | 4 | 3 | 2 |
191 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
m = A("m")
h = B("h")
f = C("f")
c = C("c")
d = B("d")
k = B("k")
m.r = h
h.r = k
f.r = d
c.r = k
d.r = k
k.r = h
assert f.r.r.r.r.r.r.txt == " | k" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
m = A("m")
h = B("h")
f = C("f")
c = C("c")
d = B("d")
k = B("k")
m.r = h
h.r = k
f.r = d
c.r = k
d.r = k
k.r = h
assert f.r.r.r.r.r.r.txt == "k" | 6 | 6 | 1 | 0.2 | 3 | 2 | 1 | 1 | 1 | 6 | 3 | 2 | 4 | 0.666667 | 4 | 0.666667 | 3 | 2 | 4 | 2.5 | 1 | 6 | 6 | 1 |
192 | class A:
def __init__(self, txt: str):
self.r: C = None
self.w: C = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.w: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.w: B = None
self.txt = txt
k = A("k")
g = B("g")
h = C("h")
l = C("l")
f = B("f")
i = C("i")
k.r = i
k.w = i
k.x = f
g.r = k
g.w = f
h.r = f
h.w = f
l.r = f
l.w = f
f.r = k
f.w = g
i.r = g
i.w = f
assert i.r.w.w.r.w.w.txt == " | f" | class A:
def __init__(self, txt: str):
self.r: C = None
self.w: C = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.w: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.w: B = None
self.txt = txt
k = A("k")
g = B("g")
h = C("h")
l = C("l")
f = B("f")
i = C("i")
k.r = i
k.w = i
k.x = f
g.r = k
g.w = f
h.r = f
h.w = f
l.r = f
l.w = f
f.r = k
f.w = g
i.r = g
i.w = f
assert i.r.w.w.r.w.w.txt == "f" | 6 | 10 | 1.666667 | 0.333333 | 3 | 2 | 3 | 2 | 2.333333 | 6 | 2 | 1 | 4 | 0.666667 | 6 | 0.6 | 3 | 2 | 5 | 3.666667 | 2 | 4 | 2 | 2 |
193 | class A:
def __init__(self, txt: str):
self.y: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
h = A("h")
k = B("k")
d = B("d")
c = A("c")
f = A("f")
b = A("b")
h.y = f
h.x = f
k.y = d
d.y = k
c.y = b
c.x = f
f.y = b
f.x = h
b.y = c
b.x = c
assert d.y.y.y.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.y: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
h = A("h")
k = B("k")
d = B("d")
c = A("c")
f = A("f")
b = A("b")
h.y = f
h.x = f
k.y = d
d.y = k
c.y = b
c.x = f
f.y = b
f.x = h
b.y = c
b.x = c
assert d.y.y.y.y.txt == "d" | 6 | 8 | 1.333333 | 0.266667 | 2 | 3 | 2 | 1 | 1.5 | 4 | 3 | 2 | 2 | 0.333333 | 2 | 0.25 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
194 | class A:
def __init__(self, txt: str):
self.z: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.p: A = None
self.txt = txt
m = A("m")
n = B("n")
c = B("c")
e = A("e")
g = B("g")
a = B("a")
m.z = n
m.p = a
n.z = c
n.p = m
c.z = g
c.p = e
e.z = g
e.p = c
g.z = n
g.p = m
a.z = c
a.p = e
assert m.p.z.z.p.txt == " | m" | class A:
def __init__(self, txt: str):
self.z: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.p: A = None
self.txt = txt
m = A("m")
n = B("n")
c = B("c")
e = A("e")
g = B("g")
a = B("a")
m.z = n
m.p = a
n.z = c
n.p = m
c.z = g
c.p = e
e.z = g
e.p = c
g.z = n
g.p = m
a.z = c
a.p = e
assert m.p.z.z.p.txt == "m" | 6 | 12 | 2 | 0.4 | 2 | 3 | 2 | 2 | 2 | 4 | 2 | 1 | 4 | 0.666667 | 4 | 0.333333 | 1 | 4 | 4 | 4 | 2 | 2 | 2 | 1 |
195 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
m = A("m")
k = B("k")
c = A("c")
j = B("j")
l = B("l")
e = A("e")
m.t = e
k.t = e
c.t = e
j.t = c
l.t = e
e.t = m
assert j.t.t.t.t.t.txt == " | m" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
m = A("m")
k = B("k")
c = A("c")
j = B("j")
l = B("l")
e = A("e")
m.t = e
k.t = e
c.t = e
j.t = c
l.t = e
e.t = m
assert j.t.t.t.t.t.txt == "m" | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 5 | 2 | 2 | 4 | 0.666667 | 4 | 0.666667 | 2 | 2 | 2 | 2 | 1 | 5 | 5 | 1 |
196 | class A:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: D = None
self.z: A = None
self.txt = txt
a = A("a")
j = B("j")
e = C("e")
h = D("h")
k = C("k")
m = D("m")
a.v = k
j.v = h
j.z = a
e.v = a
e.z = m
h.v = m
h.z = a
k.v = a
k.z = h
m.v = h
m.z = a
assert m.z.v.v.v.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: D = None
self.z: A = None
self.txt = txt
a = A("a")
j = B("j")
e = C("e")
h = D("h")
k = C("k")
m = D("m")
a.v = k
j.v = h
j.z = a
e.v = a
e.z = m
h.v = m
h.z = a
k.v = a
k.z = h
m.v = h
m.z = a
assert m.z.v.v.v.z.txt == "h" | 6 | 11 | 1.833333 | 0.366667 | 4 | 1.5 | 2 | 1 | 1.75 | 5 | 2 | 2 | 4 | 0.666667 | 4 | 0.363636 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 2 |
197 | class A:
def __init__(self, txt: str):
self.x: C = None
self.r: E = None
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.r: D = None
self.y: F = None
self.o: E = None
self.u: D = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.r: B = None
self.y: A = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: E = None
self.r: D = None
self.y: A = None
self.o: A = None
self.txt = txt
a = A("a")
e = B("e")
n = C("n")
b = D("b")
l = E("l")
m = F("m")
a.x = n
a.r = l
a.y = m
e.x = n
e.r = b
e.u = b
e.y = m
e.o = l
e.t = a
n.x = a
n.y = a
n.r = e
n.o = b
b.x = a
l.x = n
m.x = l
m.r = b
m.y = a
m.o = a
assert n.o.x.x.o.x.txt == " | a" | class A:
def __init__(self, txt: str):
self.x: C = None
self.r: E = None
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.r: D = None
self.y: F = None
self.o: E = None
self.u: D = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.r: B = None
self.y: A = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: E = None
self.r: D = None
self.y: A = None
self.o: A = None
self.txt = txt
a = A("a")
e = B("e")
n = C("n")
b = D("b")
l = E("l")
m = F("m")
a.x = n
a.r = l
a.y = m
e.x = n
e.r = b
e.u = b
e.y = m
e.o = l
e.t = a
n.x = a
n.y = a
n.r = e
n.o = b
b.x = a
l.x = n
m.x = l
m.r = b
m.y = a
m.o = a
assert n.o.x.x.o.x.txt == "a" | 6 | 16 | 2.666667 | 0.533333 | 6 | 1 | 6 | 1 | 3.166667 | 5 | 2 | 2 | 3 | 0.5 | 3 | 0.1875 | 3 | 3 | 3 | 3 | 2 | 3 | 2 | 1 |
198 | class A:
def __init__(self, txt: str):
self.v: D = None
self.y: D = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: F = None
self.y: E = None
self.p: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: A = None
self.y: A = None
self.p: C = None
self.w: A = None
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: D = None
self.y: A = None
self.txt = txt
g = A("g")
a = B("a")
k = C("k")
d = D("d")
i = E("i")
b = F("b")
g.v = d
g.y = d
g.p = a
a.v = b
k.v = b
k.p = b
k.y = i
d.v = g
d.y = a
i.v = g
i.y = g
i.w = g
i.x = g
i.p = k
b.v = d
b.y = g
assert a.v.v.y.v.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.v: D = None
self.y: D = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: F = None
self.y: E = None
self.p: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: A = None
self.y: A = None
self.p: C = None
self.w: A = None
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: D = None
self.y: A = None
self.txt = txt
g = A("g")
a = B("a")
k = C("k")
d = D("d")
i = E("i")
b = F("b")
g.v = d
g.y = d
g.p = a
a.v = b
k.v = b
k.p = b
k.y = i
d.v = g
d.y = a
i.v = g
i.y = g
i.w = g
i.x = g
i.p = k
b.v = d
b.y = g
assert a.v.v.y.v.v.txt == "d" | 6 | 11 | 1.833333 | 0.366667 | 6 | 1 | 5 | 1 | 2.666667 | 5 | 2 | 2 | 3 | 0.5 | 3 | 0.272727 | 3 | 3 | 3 | 3 | 2 | 4 | 2 | 1 |
199 | class A:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
m = A("m")
h = B("h")
g = C("g")
k = D("k")
j = A("j")
f = B("f")
m.y = g
h.y = j
g.y = h
k.y = h
j.y = g
f.y = m
assert g.y.y.y.y.txt == " | h" | class A:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
m = A("m")
h = B("h")
g = C("g")
k = D("k")
j = A("j")
f = B("f")
m.y = g
h.y = j
g.y = h
k.y = h
j.y = g
f.y = m
assert g.y.y.y.y.txt == "h" | 6 | 6 | 1 | 0.2 | 4 | 1.5 | 1 | 1 | 1 | 4 | 2 | 2 | 3 | 0.5 | 3 | 0.5 | 2 | 3 | 3 | 3 | 1 | 4 | 4 | 1 |