id
int64 300
2.15k
| prompt
stringlengths 265
1.79k
| answer
stringclasses 10
values | pythoncode
stringlengths 267
1.8k
| depth0
stringclasses 10
values | depth1
stringclasses 10
values | depth2
stringclasses 10
values | depth3
stringclasses 10
values | depth4
stringclasses 11
values | depth5
stringclasses 11
values | depth6
stringclasses 11
values | depth7
stringclasses 11
values | num_nodes
int64 3
7
| num_edges
int64 3
28
| num_classes
int64 2
7
| path_length
int64 3
7
| num_cycle
int64 0
6
| correctness
bool 1
class | one_correct
bool 1
class |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
300 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.t: B = None
self.txt = txt
c = A("c")
j = B("j")
b = A("b")
i = B("i")
c.y = j
j.u = c
j.t = i
b.y = i
i.u = b
i.t = j
assert j.u.y.t.u.txt == " | b" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.t: B = None
self.txt = txt
c = A("c")
j = B("j")
b = A("b")
i = B("i")
c.y = j
j.u = c
j.t = i
b.y = i
i.u = b
i.t = j
assert j.u.y.t.u.txt == "b" | j | c | j | i | b | x | x | x | 4 | 6 | 2 | 4 | 1 | true | true |
301 | class A:
def __init__(self, txt: str):
self.r: E = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.u: E = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: C = None
self.q: C = None
self.z: D = None
self.x: D = None
self.txt = txt
i = A("i")
b = B("b")
a = C("a")
j = D("j")
h = E("h")
i.r = h
i.v = h
b.p = i
a.o = j
a.u = h
a.x = b
j.u = b
h.w = a
h.q = a
h.z = j
h.x = j
assert a.o.u.p.txt == " | i" | class A:
def __init__(self, txt: str):
self.r: E = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.u: E = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: C = None
self.q: C = None
self.z: D = None
self.x: D = None
self.txt = txt
i = A("i")
b = B("b")
a = C("a")
j = D("j")
h = E("h")
i.r = h
i.v = h
b.p = i
a.o = j
a.u = h
a.x = b
j.u = b
h.w = a
h.q = a
h.z = j
h.x = j
assert a.o.u.p.txt == "i" | a | j | b | i | x | x | x | x | 5 | 8 | 5 | 3 | 0 | true | true |
302 | class A:
def __init__(self, txt: str):
self.q: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.s: A = None
self.txt = txt
c = A("c")
j = B("j")
a = A("a")
g = A("g")
i = B("i")
h = B("h")
c.q = g
c.s = a
j.p = i
j.s = c
a.q = g
a.s = c
g.q = a
g.s = c
i.p = j
i.s = a
h.p = j
h.s = g
assert g.q.q.s.txt == " | c" | class A:
def __init__(self, txt: str):
self.q: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.s: A = None
self.txt = txt
c = A("c")
j = B("j")
a = A("a")
g = A("g")
i = B("i")
h = B("h")
c.q = g
c.s = a
j.p = i
j.s = c
a.q = g
a.s = c
g.q = a
g.s = c
i.p = j
i.s = a
h.p = j
h.s = g
assert g.q.q.s.txt == "c" | g | a | g | c | x | x | x | x | 6 | 12 | 2 | 3 | 1 | true | true |
303 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: A = None
self.txt = txt
e = A("e")
c = B("c")
g = A("g")
d = B("d")
e.v = g
c.v = e
c.s = g
g.v = e
d.v = g
d.s = e
assert d.s.v.v.txt == " | e" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: A = None
self.txt = txt
e = A("e")
c = B("c")
g = A("g")
d = B("d")
e.v = g
c.v = e
c.s = g
g.v = e
d.v = g
d.s = e
assert d.s.v.v.txt == "e" | d | e | g | e | x | x | x | x | 4 | 6 | 2 | 3 | 1 | true | true |
304 | class A:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: C = None
self.y: B = None
self.txt = txt
f = A("f")
g = B("g")
b = C("b")
h = C("h")
j = B("j")
e = A("e")
f.v = b
g.t = h
g.x = f
b.p = h
b.y = j
h.p = b
h.y = g
j.t = b
j.x = e
e.v = b
assert e.v.y.x.v.p.y.txt == " | g" | class A:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: C = None
self.y: B = None
self.txt = txt
f = A("f")
g = B("g")
b = C("b")
h = C("h")
j = B("j")
e = A("e")
f.v = b
g.t = h
g.x = f
b.p = h
b.y = j
h.p = b
h.y = g
j.t = b
j.x = e
e.v = b
assert e.v.y.x.v.p.y.txt == "g" | e | b | j | e | b | h | g | x | 6 | 10 | 3 | 6 | 2 | true | true |
305 | class A:
def __init__(self, txt: str):
self.s: B = None
self.w: E = None
self.o: B = None
self.p: C = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: G = None
self.o: D = None
self.w: E = None
self.u: D = None
self.x: D = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: F = None
self.z: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: A = None
self.p: F = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.w: C = None
self.x: D = None
self.s: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: D = None
self.v: B = None
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: B = None
self.p: B = None
self.v: D = None
self.w: B = None
self.txt = txt
i = A("i")
g = B("g")
c = C("c")
e = D("e")
h = E("h")
b = F("b")
a = G("a")
i.s = g
i.o = g
i.w = h
i.p = c
i.u = c
g.s = a
g.o = e
g.u = e
g.x = e
g.w = h
g.v = i
c.t = b
c.z = a
e.u = i
e.p = b
e.t = a
h.u = c
h.w = c
h.x = e
h.s = i
b.s = e
b.v = g
b.q = a
a.u = g
a.p = g
a.w = g
a.v = e
assert c.t.q.p.v.txt == " | i" | class A:
def __init__(self, txt: str):
self.s: B = None
self.w: E = None
self.o: B = None
self.p: C = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: G = None
self.o: D = None
self.w: E = None
self.u: D = None
self.x: D = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: F = None
self.z: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: A = None
self.p: F = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.w: C = None
self.x: D = None
self.s: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: D = None
self.v: B = None
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: B = None
self.p: B = None
self.v: D = None
self.w: B = None
self.txt = txt
i = A("i")
g = B("g")
c = C("c")
e = D("e")
h = E("h")
b = F("b")
a = G("a")
i.s = g
i.o = g
i.w = h
i.p = c
i.u = c
g.s = a
g.o = e
g.u = e
g.x = e
g.w = h
g.v = i
c.t = b
c.z = a
e.u = i
e.p = b
e.t = a
h.u = c
h.w = c
h.x = e
h.s = i
b.s = e
b.v = g
b.q = a
a.u = g
a.p = g
a.w = g
a.v = e
assert c.t.q.p.v.txt == "i" | c | b | a | g | i | x | x | x | 7 | 20 | 7 | 4 | 0 | true | true |
306 | class A:
def __init__(self, txt: str):
self.w: C = None
self.v: C = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.o: A = None
self.w: A = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
h = A("h")
j = B("j")
e = C("e")
c = D("c")
g = C("g")
h.w = g
h.v = e
h.o = j
j.v = c
j.o = h
j.w = h
j.z = e
e.z = j
e.w = j
c.p = g
g.z = j
g.w = j
assert e.z.v.p.z.txt == " | j" | class A:
def __init__(self, txt: str):
self.w: C = None
self.v: C = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.o: A = None
self.w: A = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
h = A("h")
j = B("j")
e = C("e")
c = D("c")
g = C("g")
h.w = g
h.v = e
h.o = j
j.v = c
j.o = h
j.w = h
j.z = e
e.z = j
e.w = j
c.p = g
g.z = j
g.w = j
assert e.z.v.p.z.txt == "j" | e | j | c | g | j | x | x | x | 5 | 9 | 4 | 4 | 1 | true | true |
307 | class A:
def __init__(self, txt: str):
self.p: B = 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.v: B = None
self.txt = txt
j = A("j")
f = B("f")
b = C("b")
j.p = f
f.u = b
b.v = f
assert b.v.u.v.txt == " | f" | class A:
def __init__(self, txt: str):
self.p: B = 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.v: B = None
self.txt = txt
j = A("j")
f = B("f")
b = C("b")
j.p = f
f.u = b
b.v = f
assert b.v.u.v.txt == "f" | b | f | b | f | x | x | x | x | 3 | 3 | 3 | 3 | 2 | true | true |
308 | class A:
def __init__(self, txt: str):
self.q: B = None
self.t: E = None
self.p: B = None
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: D = None
self.y: A = None
self.o: C = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: C = None
self.z: A = None
self.q: D = None
self.w: C = None
self.s: A = None
self.txt = txt
e = A("e")
c = B("c")
b = C("b")
j = D("j")
d = E("d")
e.q = c
e.p = c
e.t = d
e.r = j
c.w = j
c.y = e
c.u = e
c.o = b
b.x = d
b.y = j
j.v = e
d.o = b
d.w = b
d.z = e
d.s = e
d.q = j
assert c.y.r.v.r.v.txt == " | e" | class A:
def __init__(self, txt: str):
self.q: B = None
self.t: E = None
self.p: B = None
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: D = None
self.y: A = None
self.o: C = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: C = None
self.z: A = None
self.q: D = None
self.w: C = None
self.s: A = None
self.txt = txt
e = A("e")
c = B("c")
b = C("b")
j = D("j")
d = E("d")
e.q = c
e.p = c
e.t = d
e.r = j
c.w = j
c.y = e
c.u = e
c.o = b
b.x = d
b.y = j
j.v = e
d.o = b
d.w = b
d.z = e
d.s = e
d.q = j
assert c.y.r.v.r.v.txt == "e" | c | e | j | e | j | e | x | x | 5 | 12 | 5 | 5 | 3 | true | true |
309 | class A:
def __init__(self, txt: str):
self.o: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.q: B = None
self.txt = txt
g = A("g")
h = B("h")
b = A("b")
f = B("f")
g.o = f
g.u = h
h.z = g
h.q = f
b.o = h
b.u = h
f.z = g
f.q = h
assert h.q.q.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.o: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.q: B = None
self.txt = txt
g = A("g")
h = B("h")
b = A("b")
f = B("f")
g.o = f
g.u = h
h.z = g
h.q = f
b.o = h
b.u = h
f.z = g
f.q = h
assert h.q.q.z.txt == "g" | h | f | h | g | x | x | x | x | 4 | 7 | 2 | 3 | 1 | true | true |
310 | class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.p: A = 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.q: B = None
self.y: C = None
self.v: A = None
self.s: A = None
self.txt = txt
j = A("j")
f = B("f")
d = C("d")
c = D("c")
g = A("g")
a = C("a")
i = D("i")
j.o = a
f.q = j
f.p = j
d.u = f
c.q = f
c.y = a
c.v = j
c.s = j
g.o = d
a.u = f
i.q = f
i.y = a
i.v = g
i.s = j
assert a.u.p.o.u.txt == " | f" | class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.p: A = 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.q: B = None
self.y: C = None
self.v: A = None
self.s: A = None
self.txt = txt
j = A("j")
f = B("f")
d = C("d")
c = D("c")
g = A("g")
a = C("a")
i = D("i")
j.o = a
f.q = j
f.p = j
d.u = f
c.q = f
c.y = a
c.v = j
c.s = j
g.o = d
a.u = f
i.q = f
i.y = a
i.v = g
i.s = j
assert a.u.p.o.u.txt == "f" | a | f | j | a | f | x | x | x | 7 | 12 | 4 | 4 | 2 | true | true |
311 | class A:
def __init__(self, txt: str):
self.y: D = None
self.t: D = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.q: E = None
self.u: A = None
self.r: E = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
f = A("f")
e = B("e")
i = C("i")
h = D("h")
g = E("g")
d = A("d")
f.y = h
f.t = h
f.w = d
e.y = i
e.q = g
e.r = g
e.u = f
e.p = f
i.y = e
i.r = e
h.v = f
g.t = f
d.y = h
d.t = h
d.w = f
assert d.w.w.y.v.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: D = None
self.t: D = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.q: E = None
self.u: A = None
self.r: E = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
f = A("f")
e = B("e")
i = C("i")
h = D("h")
g = E("g")
d = A("d")
f.y = h
f.t = h
f.w = d
e.y = i
e.q = g
e.r = g
e.u = f
e.p = f
i.y = e
i.r = e
h.v = f
g.t = f
d.y = h
d.t = h
d.w = f
assert d.w.w.y.v.txt == "f" | d | f | d | h | f | x | x | x | 6 | 10 | 5 | 4 | 2 | true | true |
312 | class A:
def __init__(self, txt: str):
self.w: F = None
self.o: G = None
self.x: G = None
self.p: E = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: G = None
self.v: E = None
self.z: D = None
self.w: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.t: B = None
self.p: F = None
self.x: A = None
self.v: G = None
self.u: F = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.z: F = None
self.w: F = None
self.o: G = None
self.t: E = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: F = None
self.w: B = None
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: E = None
self.v: E = None
self.p: C = None
self.q: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
e = A("e")
d = B("d")
i = C("i")
h = D("h")
c = E("c")
g = F("g")
f = G("f")
e.w = g
e.o = f
e.x = f
e.p = c
e.z = i
d.p = f
d.v = c
d.z = h
d.w = h
i.z = d
i.t = d
i.p = g
i.u = g
i.x = e
i.v = f
i.w = c
h.y = c
h.t = c
h.z = g
h.w = g
h.o = f
h.x = i
c.o = g
c.q = g
c.w = d
g.s = c
g.v = c
g.p = i
g.q = h
f.t = i
assert h.o.t.p.txt == " | g" | class A:
def __init__(self, txt: str):
self.w: F = None
self.o: G = None
self.x: G = None
self.p: E = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: G = None
self.v: E = None
self.z: D = None
self.w: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.t: B = None
self.p: F = None
self.x: A = None
self.v: G = None
self.u: F = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.z: F = None
self.w: F = None
self.o: G = None
self.t: E = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: F = None
self.w: B = None
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: E = None
self.v: E = None
self.p: C = None
self.q: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
e = A("e")
d = B("d")
i = C("i")
h = D("h")
c = E("c")
g = F("g")
f = G("f")
e.w = g
e.o = f
e.x = f
e.p = c
e.z = i
d.p = f
d.v = c
d.z = h
d.w = h
i.z = d
i.t = d
i.p = g
i.u = g
i.x = e
i.v = f
i.w = c
h.y = c
h.t = c
h.z = g
h.w = g
h.o = f
h.x = i
c.o = g
c.q = g
c.w = d
g.s = c
g.v = c
g.p = i
g.q = h
f.t = i
assert h.o.t.p.txt == "g" | h | f | i | g | x | x | x | x | 7 | 22 | 7 | 3 | 0 | true | true |
313 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.x: A = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
h = A("h")
c = B("c")
i = C("i")
d = A("d")
h.z = c
c.u = i
c.x = d
c.s = h
i.q = c
d.z = c
assert c.x.z.u.q.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.x: A = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
h = A("h")
c = B("c")
i = C("i")
d = A("d")
h.z = c
c.u = i
c.x = d
c.s = h
i.q = c
d.z = c
assert c.x.z.u.q.txt == "c" | c | d | c | i | c | x | x | x | 4 | 6 | 3 | 4 | 2 | true | true |
314 | class A:
def __init__(self, txt: str):
self.z: C = None
self.x: C = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.t: B = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.v: A = None
self.txt = txt
f = A("f")
e = B("e")
h = C("h")
i = A("i")
c = B("c")
f.z = h
f.x = h
f.w = h
e.x = f
e.t = c
e.r = i
h.s = f
h.v = f
i.z = h
i.x = h
i.w = h
c.x = i
c.t = e
c.r = f
assert e.r.x.s.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: C = None
self.x: C = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.t: B = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.v: A = None
self.txt = txt
f = A("f")
e = B("e")
h = C("h")
i = A("i")
c = B("c")
f.z = h
f.x = h
f.w = h
e.x = f
e.t = c
e.r = i
h.s = f
h.v = f
i.z = h
i.x = h
i.w = h
c.x = i
c.t = e
c.r = f
assert e.r.x.s.txt == "f" | e | i | h | f | x | x | x | x | 5 | 9 | 3 | 3 | 0 | true | true |
315 | class A:
def __init__(self, txt: str):
self.r: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.q: B = None
self.txt = txt
c = A("c")
g = B("g")
d = A("d")
f = B("f")
c.r = d
c.t = d
g.s = c
g.q = f
d.r = c
d.t = c
f.s = d
f.q = g
assert d.r.t.r.txt == " | c" | class A:
def __init__(self, txt: str):
self.r: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.q: B = None
self.txt = txt
c = A("c")
g = B("g")
d = A("d")
f = B("f")
c.r = d
c.t = d
g.s = c
g.q = f
d.r = c
d.t = c
f.s = d
f.q = g
assert d.r.t.r.txt == "c" | d | c | d | c | x | x | x | x | 4 | 6 | 2 | 3 | 2 | true | true |
316 | class A:
def __init__(self, txt: str):
self.v: D = None
self.y: C = None
self.w: C = None
self.t: F = None
self.s: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.v: E = None
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: F = None
self.o: B = None
self.r: E = None
self.q: F = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.z: B = None
self.v: F = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
c = A("c")
g = B("g")
j = C("j")
d = D("d")
f = E("f")
a = F("a")
c.v = d
c.y = j
c.w = j
c.t = a
c.s = a
g.r = c
g.v = f
g.y = a
j.t = a
j.q = a
j.o = g
j.r = f
j.p = c
d.p = j
d.u = g
f.o = g
f.z = g
f.v = a
f.u = j
a.u = j
assert d.u.y.u.o.txt == " | g" | class A:
def __init__(self, txt: str):
self.v: D = None
self.y: C = None
self.w: C = None
self.t: F = None
self.s: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.v: E = None
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: F = None
self.o: B = None
self.r: E = None
self.q: F = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.z: B = None
self.v: F = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
c = A("c")
g = B("g")
j = C("j")
d = D("d")
f = E("f")
a = F("a")
c.v = d
c.y = j
c.w = j
c.t = a
c.s = a
g.r = c
g.v = f
g.y = a
j.t = a
j.q = a
j.o = g
j.r = f
j.p = c
d.p = j
d.u = g
f.o = g
f.z = g
f.v = a
f.u = j
a.u = j
assert d.u.y.u.o.txt == "g" | d | g | a | j | g | x | x | x | 6 | 16 | 6 | 4 | 1 | true | true |
317 | class A:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.o: C = None
self.v: F = None
self.s: D = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.u: B = None
self.o: D = None
self.z: F = None
self.w: E = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: F = None
self.w: A = None
self.s: B = None
self.q: F = None
self.y: A = None
self.r: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: F = None
self.p: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: B = None
self.v: C = None
self.o: A = None
self.w: C = None
self.q: C = None
self.txt = txt
c = A("c")
f = B("f")
e = C("e")
b = D("b")
a = E("a")
d = F("d")
c.q = e
f.r = b
f.s = b
f.p = b
f.o = e
f.v = d
e.p = b
e.o = b
e.u = f
e.z = d
e.w = a
e.v = c
b.p = d
b.q = d
b.w = c
b.y = c
b.s = f
b.r = f
a.w = d
a.p = f
d.t = f
d.v = e
d.w = e
d.q = e
d.o = c
assert d.o.q.w.p.s.txt == " | b" | class A:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.o: C = None
self.v: F = None
self.s: D = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.u: B = None
self.o: D = None
self.z: F = None
self.w: E = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: F = None
self.w: A = None
self.s: B = None
self.q: F = None
self.y: A = None
self.r: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: F = None
self.p: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: B = None
self.v: C = None
self.o: A = None
self.w: C = None
self.q: C = None
self.txt = txt
c = A("c")
f = B("f")
e = C("e")
b = D("b")
a = E("a")
d = F("d")
c.q = e
f.r = b
f.s = b
f.p = b
f.o = e
f.v = d
e.p = b
e.o = b
e.u = f
e.z = d
e.w = a
e.v = c
b.p = d
b.q = d
b.w = c
b.y = c
b.s = f
b.r = f
a.w = d
a.p = f
d.t = f
d.v = e
d.w = e
d.q = e
d.o = c
assert d.o.q.w.p.s.txt == "b" | d | c | e | a | f | b | x | x | 6 | 17 | 6 | 5 | 0 | true | true |
318 | class A:
def __init__(self, txt: str):
self.t: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
f = A("f")
a = B("a")
j = A("j")
f.t = j
f.z = a
a.s = j
j.t = f
j.z = a
assert j.z.s.t.txt == " | f" | class A:
def __init__(self, txt: str):
self.t: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
f = A("f")
a = B("a")
j = A("j")
f.t = j
f.z = a
a.s = j
j.t = f
j.z = a
assert j.z.s.t.txt == "f" | j | a | j | f | x | x | x | x | 3 | 5 | 2 | 3 | 1 | true | true |
319 | 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.r: B = None
self.s: A = None
self.txt = txt
a = A("a")
d = B("d")
e = A("e")
h = A("h")
j = A("j")
g = A("g")
f = B("f")
a.o = d
a.x = g
d.r = f
d.s = h
e.o = d
e.x = h
h.o = d
h.x = e
j.o = f
j.x = g
g.o = d
g.x = j
f.r = d
f.s = h
assert f.s.x.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.r: B = None
self.s: A = None
self.txt = txt
a = A("a")
d = B("d")
e = A("e")
h = A("h")
j = A("j")
g = A("g")
f = B("f")
a.o = d
a.x = g
d.r = f
d.s = h
e.o = d
e.x = h
h.o = d
h.x = e
j.o = f
j.x = g
g.o = d
g.x = j
f.r = d
f.s = h
assert f.s.x.o.txt == "d" | f | h | e | d | x | x | x | x | 7 | 14 | 2 | 3 | 0 | true | true |
320 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.v: A = None
self.txt = txt
e = A("e")
f = B("f")
b = B("b")
c = A("c")
e.p = f
f.s = e
f.v = e
b.s = c
b.v = e
c.p = f
assert b.s.p.s.txt == " | e" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.v: A = None
self.txt = txt
e = A("e")
f = B("f")
b = B("b")
c = A("c")
e.p = f
f.s = e
f.v = e
b.s = c
b.v = e
c.p = f
assert b.s.p.s.txt == "e" | b | c | f | e | x | x | x | x | 4 | 5 | 2 | 3 | 0 | true | true |
321 | class A:
def __init__(self, txt: str):
self.w: D = None
self.x: E = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
a = A("a")
h = B("h")
e = C("e")
i = D("i")
c = E("c")
j = E("j")
a.w = i
a.x = j
a.t = e
h.u = i
e.r = a
i.o = h
i.r = c
c.r = e
j.r = e
assert c.r.r.w.o.txt == " | h" | class A:
def __init__(self, txt: str):
self.w: D = None
self.x: E = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
a = A("a")
h = B("h")
e = C("e")
i = D("i")
c = E("c")
j = E("j")
a.w = i
a.x = j
a.t = e
h.u = i
e.r = a
i.o = h
i.r = c
c.r = e
j.r = e
assert c.r.r.w.o.txt == "h" | c | e | a | i | h | x | x | x | 6 | 9 | 5 | 4 | 0 | true | true |
322 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
e = A("e")
d = B("d")
b = A("b")
e.v = b
d.t = b
b.v = e
assert d.t.v.v.txt == " | b" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
e = A("e")
d = B("d")
b = A("b")
e.v = b
d.t = b
b.v = e
assert d.t.v.v.txt == "b" | d | b | e | b | x | x | x | x | 3 | 3 | 2 | 3 | 1 | true | true |
323 | class A:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.s: A = None
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.t: C = None
self.v: A = None
self.s: A = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.w: D = None
self.txt = txt
j = A("j")
i = B("i")
a = C("a")
f = D("f")
b = E("b")
d = C("d")
j.v = a
i.z = b
i.s = j
i.q = j
a.u = b
a.x = b
f.r = i
f.t = a
f.v = j
f.s = j
f.w = j
b.q = j
b.w = f
d.u = b
d.x = b
assert j.v.x.w.s.txt == " | j" | class A:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.s: A = None
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.t: C = None
self.v: A = None
self.s: A = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.w: D = None
self.txt = txt
j = A("j")
i = B("i")
a = C("a")
f = D("f")
b = E("b")
d = C("d")
j.v = a
i.z = b
i.s = j
i.q = j
a.u = b
a.x = b
f.r = i
f.t = a
f.v = j
f.s = j
f.w = j
b.q = j
b.w = f
d.u = b
d.x = b
assert j.v.x.w.s.txt == "j" | j | a | b | f | j | x | x | x | 6 | 10 | 5 | 4 | 1 | true | true |
324 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
g = A("g")
f = B("f")
c = A("c")
g.v = f
f.r = g
c.v = f
assert c.v.r.v.txt == " | f" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
g = A("g")
f = B("f")
c = A("c")
g.v = f
f.r = g
c.v = f
assert c.v.r.v.txt == "f" | c | f | g | f | x | x | x | x | 3 | 3 | 2 | 3 | 1 | true | true |
325 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
h = A("h")
e = B("e")
b = A("b")
h.w = b
e.w = h
b.w = h
assert b.w.w.w.txt == " | h" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
h = A("h")
e = B("e")
b = A("b")
h.w = b
e.w = h
b.w = h
assert b.w.w.w.txt == "h" | b | h | b | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 | true | true |
326 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
b = A("b")
e = B("e")
c = B("c")
j = A("j")
b.r = j
e.y = j
c.y = b
j.r = b
assert c.y.r.r.txt == " | b" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
b = A("b")
e = B("e")
c = B("c")
j = A("j")
b.r = j
e.y = j
c.y = b
j.r = b
assert c.y.r.r.txt == "b" | c | b | j | b | x | x | x | x | 4 | 4 | 2 | 3 | 1 | true | true |
327 | class A:
def __init__(self, txt: str):
self.s: C = None
self.p: C = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
f = A("f")
j = B("j")
i = C("i")
f.s = i
f.p = i
f.u = j
j.r = f
i.o = f
assert j.r.u.r.txt == " | f" | class A:
def __init__(self, txt: str):
self.s: C = None
self.p: C = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
f = A("f")
j = B("j")
i = C("i")
f.s = i
f.p = i
f.u = j
j.r = f
i.o = f
assert j.r.u.r.txt == "f" | j | f | j | f | x | x | x | x | 3 | 4 | 3 | 3 | 2 | true | true |
328 | class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
e = B("e")
j = C("j")
g = B("g")
d.s = j
e.q = g
e.s = j
j.z = d
g.q = e
g.s = j
assert g.s.z.s.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
e = B("e")
j = C("j")
g = B("g")
d.s = j
e.q = g
e.s = j
j.z = d
g.q = e
g.s = j
assert g.s.z.s.z.txt == "d" | g | j | d | j | d | x | x | x | 4 | 6 | 3 | 4 | 2 | true | true |
329 | class A:
def __init__(self, txt: str):
self.q: B = None
self.u: C = 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.u: D = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
e = A("e")
b = B("b")
h = C("h")
d = D("d")
e.q = b
e.u = h
b.x = e
h.u = d
h.p = e
d.z = b
assert h.u.z.x.txt == " | e" | class A:
def __init__(self, txt: str):
self.q: B = None
self.u: C = 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.u: D = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
e = A("e")
b = B("b")
h = C("h")
d = D("d")
e.q = b
e.u = h
b.x = e
h.u = d
h.p = e
d.z = b
assert h.u.z.x.txt == "e" | h | d | b | e | x | x | x | x | 4 | 6 | 4 | 3 | 0 | true | true |
330 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.s: B = None
self.txt = txt
c = A("c")
g = B("g")
h = B("h")
e = A("e")
f = B("f")
c.p = e
g.r = h
g.s = h
h.r = f
h.s = f
e.p = c
f.r = g
f.s = g
assert c.p.p.p.p.txt == " | c" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.s: B = None
self.txt = txt
c = A("c")
g = B("g")
h = B("h")
e = A("e")
f = B("f")
c.p = e
g.r = h
g.s = h
h.r = f
h.s = f
e.p = c
f.r = g
f.s = g
assert c.p.p.p.p.txt == "c" | c | e | c | e | c | x | x | x | 5 | 5 | 2 | 4 | 3 | true | true |
331 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.q: B = None
self.txt = txt
g = A("g")
a = B("a")
e = B("e")
g.u = e
a.z = g
a.q = e
e.z = g
e.q = a
assert e.z.u.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.q: B = None
self.txt = txt
g = A("g")
a = B("a")
e = B("e")
g.u = e
a.z = g
a.q = e
e.z = g
e.q = a
assert e.z.u.z.txt == "g" | e | g | e | g | x | x | x | x | 3 | 5 | 2 | 3 | 2 | true | true |
332 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.r: B = None
self.txt = txt
h = A("h")
c = B("c")
j = B("j")
e = B("e")
g = B("g")
f = B("f")
h.o = f
c.o = h
c.r = e
j.o = h
j.r = c
e.o = h
e.r = j
g.o = h
g.r = f
f.o = h
f.r = g
assert f.o.o.r.o.o.o.txt == " | h" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.r: B = None
self.txt = txt
h = A("h")
c = B("c")
j = B("j")
e = B("e")
g = B("g")
f = B("f")
h.o = f
c.o = h
c.r = e
j.o = h
j.r = c
e.o = h
e.r = j
g.o = h
g.r = f
f.o = h
f.r = g
assert f.o.o.r.o.o.o.txt == "h" | f | h | f | g | h | f | h | x | 6 | 11 | 2 | 6 | 4 | true | true |
333 | class A:
def __init__(self, txt: str):
self.s: C = None
self.u: B = None
self.x: 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.y: D = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
i = A("i")
j = B("j")
g = C("g")
f = D("f")
i.s = g
i.u = j
i.x = j
j.q = g
g.y = f
g.x = j
f.y = i
assert f.y.s.y.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.s: C = None
self.u: B = None
self.x: 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.y: D = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
i = A("i")
j = B("j")
g = C("g")
f = D("f")
i.s = g
i.u = j
i.x = j
j.q = g
g.y = f
g.x = j
f.y = i
assert f.y.s.y.y.txt == "i" | f | i | g | f | i | x | x | x | 4 | 6 | 4 | 4 | 2 | true | true |
334 | class A:
def __init__(self, txt: str):
self.u: B = None
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.z: C = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
c = A("c")
g = B("g")
j = C("j")
c.u = g
c.p = j
g.q = j
g.z = j
g.s = j
j.v = c
assert j.v.p.v.txt == " | c" | class A:
def __init__(self, txt: str):
self.u: B = None
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.z: C = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
c = A("c")
g = B("g")
j = C("j")
c.u = g
c.p = j
g.q = j
g.z = j
g.s = j
j.v = c
assert j.v.p.v.txt == "c" | j | c | j | c | x | x | x | x | 3 | 4 | 3 | 3 | 2 | true | true |
335 | class A:
def __init__(self, txt: str):
self.y: C = None
self.v: D = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.z: C = None
self.p: A = None
self.s: E = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.p: D = None
self.s: D = None
self.v: D = None
self.txt = txt
h = A("h")
j = B("j")
c = C("c")
f = D("f")
g = E("g")
h.y = c
h.v = f
h.z = j
j.u = g
j.s = g
j.z = c
j.p = h
j.v = f
c.s = g
f.w = g
g.x = h
g.p = f
g.s = f
g.v = f
assert h.v.w.v.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: C = None
self.v: D = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.z: C = None
self.p: A = None
self.s: E = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.p: D = None
self.s: D = None
self.v: D = None
self.txt = txt
h = A("h")
j = B("j")
c = C("c")
f = D("f")
g = E("g")
h.y = c
h.v = f
h.z = j
j.u = g
j.s = g
j.z = c
j.p = h
j.v = f
c.s = g
f.w = g
g.x = h
g.p = f
g.s = f
g.v = f
assert h.v.w.v.txt == "f" | h | f | g | f | x | x | x | x | 5 | 11 | 5 | 3 | 1 | true | true |
336 | class A:
def __init__(self, txt: str):
self.u: B = None
self.x: C = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: C = None
self.o: C = None
self.r: C = None
self.txt = txt
b = A("b")
j = B("j")
g = C("g")
f = C("f")
d = A("d")
b.u = j
b.x = g
b.z = d
j.t = d
j.z = g
g.y = f
g.o = f
g.r = f
f.y = g
f.o = g
f.r = g
d.u = j
d.x = f
d.z = b
assert j.t.z.z.x.o.txt == " | g" | class A:
def __init__(self, txt: str):
self.u: B = None
self.x: C = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: C = None
self.o: C = None
self.r: C = None
self.txt = txt
b = A("b")
j = B("j")
g = C("g")
f = C("f")
d = A("d")
b.u = j
b.x = g
b.z = d
j.t = d
j.z = g
g.y = f
g.o = f
g.r = f
f.y = g
f.o = g
f.r = g
d.u = j
d.x = f
d.z = b
assert j.t.z.z.x.o.txt == "g" | j | d | b | d | f | g | x | x | 5 | 10 | 3 | 5 | 1 | true | true |
337 | class A:
def __init__(self, txt: str):
self.w: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
i = B("i")
d = A("d")
e = A("e")
b = B("b")
c = A("c")
a = B("a")
j.w = b
j.t = a
i.y = d
d.w = a
d.t = b
e.w = i
e.t = i
b.y = j
c.w = a
c.t = i
a.y = e
assert d.t.y.w.y.txt == " | j" | class A:
def __init__(self, txt: str):
self.w: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
i = B("i")
d = A("d")
e = A("e")
b = B("b")
c = A("c")
a = B("a")
j.w = b
j.t = a
i.y = d
d.w = a
d.t = b
e.w = i
e.t = i
b.y = j
c.w = a
c.t = i
a.y = e
assert d.t.y.w.y.txt == "j" | d | b | j | b | j | x | x | x | 7 | 10 | 2 | 4 | 2 | true | true |
338 | class A:
def __init__(self, txt: str):
self.r: F = None
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: C = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: A = None
self.w: D = None
self.o: A = None
self.y: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: F = None
self.x: F = None
self.txt = txt
i = A("i")
a = B("a")
c = C("c")
e = D("e")
d = E("d")
b = F("b")
j = G("j")
i.r = b
i.x = b
a.p = e
a.r = c
c.w = i
e.x = c
e.v = c
d.t = i
b.t = i
b.o = i
b.w = e
b.y = d
j.o = b
j.x = b
assert d.t.r.w.x.w.txt == " | i" | class A:
def __init__(self, txt: str):
self.r: F = None
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: C = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: A = None
self.w: D = None
self.o: A = None
self.y: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: F = None
self.x: F = None
self.txt = txt
i = A("i")
a = B("a")
c = C("c")
e = D("e")
d = E("d")
b = F("b")
j = G("j")
i.r = b
i.x = b
a.p = e
a.r = c
c.w = i
e.x = c
e.v = c
d.t = i
b.t = i
b.o = i
b.w = e
b.y = d
j.o = b
j.x = b
assert d.t.r.w.x.w.txt == "i" | d | i | b | e | c | i | x | x | 7 | 10 | 7 | 5 | 1 | true | true |
339 | class A:
def __init__(self, txt: str):
self.p: C = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: E = None
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.o: B = None
self.z: C = None
self.y: D = None
self.x: C = None
self.t: A = None
self.txt = txt
h = A("h")
f = B("f")
b = C("b")
i = D("i")
c = E("c")
j = F("j")
h.p = b
h.y = i
f.r = c
f.t = i
b.w = i
b.y = f
i.x = c
i.s = j
c.r = b
j.u = h
j.t = h
j.o = f
j.z = b
j.x = b
j.y = i
assert f.r.r.w.s.txt == " | j" | class A:
def __init__(self, txt: str):
self.p: C = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: E = None
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.o: B = None
self.z: C = None
self.y: D = None
self.x: C = None
self.t: A = None
self.txt = txt
h = A("h")
f = B("f")
b = C("b")
i = D("i")
c = E("c")
j = F("j")
h.p = b
h.y = i
f.r = c
f.t = i
b.w = i
b.y = f
i.x = c
i.s = j
c.r = b
j.u = h
j.t = h
j.o = f
j.z = b
j.x = b
j.y = i
assert f.r.r.w.s.txt == "j" | f | c | b | i | j | x | x | x | 6 | 13 | 6 | 4 | 0 | true | true |
340 | class A:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: C = None
self.p: B = None
self.txt = txt
c = A("c")
e = B("e")
d = C("d")
g = D("g")
f = D("f")
c.x = f
e.s = f
d.p = c
g.s = d
g.p = e
f.s = d
f.p = e
assert d.p.x.s.p.txt == " | c" | class A:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: C = None
self.p: B = None
self.txt = txt
c = A("c")
e = B("e")
d = C("d")
g = D("g")
f = D("f")
c.x = f
e.s = f
d.p = c
g.s = d
g.p = e
f.s = d
f.p = e
assert d.p.x.s.p.txt == "c" | d | c | f | d | c | x | x | x | 5 | 7 | 4 | 4 | 2 | true | true |
341 | class A:
def __init__(self, txt: str):
self.w: F = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.u: A = None
self.s: C = None
self.w: D = 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.o: C = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: B = None
self.v: C = None
self.s: A = None
self.p: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.q: C = None
self.r: C = None
self.txt = txt
b = A("b")
g = B("g")
a = C("a")
c = D("c")
i = E("i")
f = F("f")
b.w = f
b.p = g
g.y = a
g.s = a
g.u = b
g.w = c
a.x = b
c.o = a
c.u = a
i.q = g
i.v = a
i.s = b
i.p = c
f.y = g
f.q = a
f.r = a
assert f.q.x.p.s.txt == " | a" | class A:
def __init__(self, txt: str):
self.w: F = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.u: A = None
self.s: C = None
self.w: D = 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.o: C = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: B = None
self.v: C = None
self.s: A = None
self.p: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.q: C = None
self.r: C = None
self.txt = txt
b = A("b")
g = B("g")
a = C("a")
c = D("c")
i = E("i")
f = F("f")
b.w = f
b.p = g
g.y = a
g.s = a
g.u = b
g.w = c
a.x = b
c.o = a
c.u = a
i.q = g
i.v = a
i.s = b
i.p = c
f.y = g
f.q = a
f.r = a
assert f.q.x.p.s.txt == "a" | f | a | b | g | a | x | x | x | 6 | 13 | 6 | 4 | 1 | true | true |
342 | class A:
def __init__(self, txt: str):
self.r: C = None
self.x: B = None
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.o: D = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
j = A("j")
d = B("d")
a = C("a")
i = D("i")
b = B("b")
c = B("c")
j.r = a
j.p = a
j.x = c
d.p = a
d.o = i
d.u = j
a.o = j
i.w = c
b.p = a
b.o = i
b.u = j
c.p = a
c.o = i
c.u = j
assert i.w.o.w.o.w.u.txt == " | j" | class A:
def __init__(self, txt: str):
self.r: C = None
self.x: B = None
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.o: D = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
j = A("j")
d = B("d")
a = C("a")
i = D("i")
b = B("b")
c = B("c")
j.r = a
j.p = a
j.x = c
d.p = a
d.o = i
d.u = j
a.o = j
i.w = c
b.p = a
b.o = i
b.u = j
c.p = a
c.o = i
c.u = j
assert i.w.o.w.o.w.u.txt == "j" | i | c | i | c | i | c | j | x | 6 | 13 | 4 | 6 | 4 | true | true |
343 | 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.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.v: C = None
self.p: B = None
self.txt = txt
h = A("h")
g = B("g")
d = C("d")
e = C("e")
h.s = d
g.s = h
g.q = h
d.z = h
d.v = e
d.p = g
e.z = h
e.v = d
e.p = g
assert d.p.s.s.p.txt == " | g" | 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.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.v: C = None
self.p: B = None
self.txt = txt
h = A("h")
g = B("g")
d = C("d")
e = C("e")
h.s = d
g.s = h
g.q = h
d.z = h
d.v = e
d.p = g
e.z = h
e.v = d
e.p = g
assert d.p.s.s.p.txt == "g" | d | g | h | d | g | x | x | x | 4 | 8 | 3 | 4 | 2 | true | true |
344 | class A:
def __init__(self, txt: str):
self.r: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
i = A("i")
b = B("b")
a = B("a")
f = A("f")
i.r = f
i.q = f
b.z = a
a.z = b
f.r = i
f.q = i
assert f.q.q.q.txt == " | i" | class A:
def __init__(self, txt: str):
self.r: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
i = A("i")
b = B("b")
a = B("a")
f = A("f")
i.r = f
i.q = f
b.z = a
a.z = b
f.r = i
f.q = i
assert f.q.q.q.txt == "i" | f | i | f | i | x | x | x | x | 4 | 4 | 2 | 3 | 2 | true | true |
345 | class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.s: A = None
self.txt = txt
e = A("e")
i = B("i")
h = C("h")
e.o = h
i.y = h
h.u = i
h.s = e
assert h.u.y.s.txt == " | e" | class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.s: A = None
self.txt = txt
e = A("e")
i = B("i")
h = C("h")
e.o = h
i.y = h
h.u = i
h.s = e
assert h.u.y.s.txt == "e" | h | i | h | e | x | x | x | x | 3 | 4 | 3 | 3 | 1 | true | true |
346 | class A:
def __init__(self, txt: str):
self.v: D = None
self.t: B = None
self.s: C = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.o: B = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
a = A("a")
e = B("e")
j = C("j")
g = D("g")
c = C("c")
h = B("h")
a.v = g
a.t = h
a.s = c
a.r = c
e.q = j
e.o = h
e.p = c
j.t = c
g.r = a
c.t = j
h.q = j
h.p = j
h.o = e
assert a.t.p.t.t.txt == " | j" | class A:
def __init__(self, txt: str):
self.v: D = None
self.t: B = None
self.s: C = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.o: B = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
a = A("a")
e = B("e")
j = C("j")
g = D("g")
c = C("c")
h = B("h")
a.v = g
a.t = h
a.s = c
a.r = c
e.q = j
e.o = h
e.p = c
j.t = c
g.r = a
c.t = j
h.q = j
h.p = j
h.o = e
assert a.t.p.t.t.txt == "j" | a | h | j | c | j | x | x | x | 6 | 11 | 4 | 4 | 1 | true | true |
347 | class A:
def __init__(self, txt: str):
self.t: C = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.t: A = None
self.r: A = None
self.txt = txt
b = A("b")
h = B("h")
i = C("i")
b.t = i
b.r = i
h.o = b
h.p = i
i.o = h
i.t = b
i.r = b
assert b.r.o.o.txt == " | b" | class A:
def __init__(self, txt: str):
self.t: C = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.t: A = None
self.r: A = None
self.txt = txt
b = A("b")
h = B("h")
i = C("i")
b.t = i
b.r = i
h.o = b
h.p = i
i.o = h
i.t = b
i.r = b
assert b.r.o.o.txt == "b" | b | i | h | b | x | x | x | x | 3 | 5 | 3 | 3 | 1 | true | true |
348 | class A:
def __init__(self, txt: str):
self.r: D = None
self.v: B = None
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.s: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: A = None
self.q: A = None
self.w: A = None
self.txt = txt
h = A("h")
e = B("e")
c = C("c")
d = D("d")
i = B("i")
f = C("f")
g = B("g")
h.r = d
h.u = d
h.v = g
e.z = g
e.x = d
c.p = e
c.s = h
d.r = h
d.q = h
d.w = h
i.z = g
i.x = d
f.p = e
f.s = h
g.z = e
g.x = d
assert e.x.r.u.q.txt == " | h" | class A:
def __init__(self, txt: str):
self.r: D = None
self.v: B = None
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.s: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: A = None
self.q: A = None
self.w: A = None
self.txt = txt
h = A("h")
e = B("e")
c = C("c")
d = D("d")
i = B("i")
f = C("f")
g = B("g")
h.r = d
h.u = d
h.v = g
e.z = g
e.x = d
c.p = e
c.s = h
d.r = h
d.q = h
d.w = h
i.z = g
i.x = d
f.p = e
f.s = h
g.z = e
g.x = d
assert e.x.r.u.q.txt == "h" | e | d | h | d | h | x | x | x | 7 | 13 | 4 | 4 | 2 | true | true |
349 | class A:
def __init__(self, txt: str):
self.w: B = 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.t: B = None
self.p: A = None
self.u: B = None
self.txt = txt
e = A("e")
d = B("d")
c = C("c")
e.w = d
d.p = c
c.t = d
c.u = d
c.p = e
assert c.u.p.p.txt == " | e" | class A:
def __init__(self, txt: str):
self.w: B = 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.t: B = None
self.p: A = None
self.u: B = None
self.txt = txt
e = A("e")
d = B("d")
c = C("c")
e.w = d
d.p = c
c.t = d
c.u = d
c.p = e
assert c.u.p.p.txt == "e" | c | d | c | e | x | x | x | x | 3 | 4 | 3 | 3 | 1 | true | true |
350 | class A:
def __init__(self, txt: str):
self.x: E = None
self.z: D = None
self.q: D = None
self.y: F = None
self.w: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.r: D = None
self.y: A = None
self.w: F = None
self.v: F = None
self.t: F = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: F = None
self.s: F = None
self.u: E = None
self.q: F = 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.q: D = None
self.y: C = None
self.o: C = None
self.t: G = None
self.x: B = None
self.s: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: B = None
self.p: B = None
self.q: A = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
f = A("f")
g = B("g")
b = C("b")
a = D("a")
e = E("e")
c = F("c")
j = G("j")
f.x = e
f.w = e
f.z = a
f.q = a
f.y = c
g.z = j
g.r = a
g.y = f
g.w = c
g.v = c
g.t = c
g.s = b
b.r = c
b.s = c
b.q = c
b.u = e
a.r = e
e.q = a
e.y = b
e.o = b
e.t = j
e.x = g
e.s = f
c.w = g
c.p = g
c.q = f
c.y = f
j.q = e
assert a.r.t.q.txt == " | e" | class A:
def __init__(self, txt: str):
self.x: E = None
self.z: D = None
self.q: D = None
self.y: F = None
self.w: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.r: D = None
self.y: A = None
self.w: F = None
self.v: F = None
self.t: F = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: F = None
self.s: F = None
self.u: E = None
self.q: F = 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.q: D = None
self.y: C = None
self.o: C = None
self.t: G = None
self.x: B = None
self.s: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: B = None
self.p: B = None
self.q: A = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
f = A("f")
g = B("g")
b = C("b")
a = D("a")
e = E("e")
c = F("c")
j = G("j")
f.x = e
f.w = e
f.z = a
f.q = a
f.y = c
g.z = j
g.r = a
g.y = f
g.w = c
g.v = c
g.t = c
g.s = b
b.r = c
b.s = c
b.q = c
b.u = e
a.r = e
e.q = a
e.y = b
e.o = b
e.t = j
e.x = g
e.s = f
c.w = g
c.p = g
c.q = f
c.y = f
j.q = e
assert a.r.t.q.txt == "e" | a | e | j | e | x | x | x | x | 7 | 19 | 7 | 3 | 1 | true | true |
351 | class A:
def __init__(self, txt: str):
self.p: D = None
self.t: C = None
self.u: E = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.v: A = None
self.r: E = None
self.x: D = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.w: B = None
self.v: A = None
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: C = None
self.y: B = None
self.s: D = None
self.p: D = None
self.t: C = None
self.txt = txt
g = A("g")
e = B("e")
i = C("i")
f = D("f")
b = E("b")
g.p = f
g.t = i
g.o = i
g.u = b
e.q = i
e.v = f
i.t = f
i.x = f
i.y = f
i.v = g
i.r = b
f.o = e
f.w = e
f.v = g
f.s = i
b.w = i
b.t = i
b.y = e
b.s = f
b.p = f
assert b.y.v.s.v.txt == " | g" | class A:
def __init__(self, txt: str):
self.p: D = None
self.t: C = None
self.u: E = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.v: A = None
self.r: E = None
self.x: D = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.w: B = None
self.v: A = None
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: C = None
self.y: B = None
self.s: D = None
self.p: D = None
self.t: C = None
self.txt = txt
g = A("g")
e = B("e")
i = C("i")
f = D("f")
b = E("b")
g.p = f
g.t = i
g.o = i
g.u = b
e.q = i
e.v = f
i.t = f
i.x = f
i.y = f
i.v = g
i.r = b
f.o = e
f.w = e
f.v = g
f.s = i
b.w = i
b.t = i
b.y = e
b.s = f
b.p = f
assert b.y.v.s.v.txt == "g" | b | e | f | i | g | x | x | x | 5 | 14 | 5 | 4 | 0 | true | true |
352 | class A:
def __init__(self, txt: str):
self.s: B = None
self.y: D = None
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.s: C = None
self.r: D = None
self.z: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.x: D = None
self.p: C = None
self.txt = txt
j = A("j")
i = B("i")
e = C("e")
c = D("c")
b = E("b")
g = B("g")
j.s = g
j.y = c
j.t = c
i.y = g
i.z = g
i.s = e
i.r = c
e.r = g
c.w = e
b.r = c
b.x = c
b.p = e
g.y = i
g.z = i
g.s = e
g.r = c
assert b.p.r.r.txt == " | c" | class A:
def __init__(self, txt: str):
self.s: B = None
self.y: D = None
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.s: C = None
self.r: D = None
self.z: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.x: D = None
self.p: C = None
self.txt = txt
j = A("j")
i = B("i")
e = C("e")
c = D("c")
b = E("b")
g = B("g")
j.s = g
j.y = c
j.t = c
i.y = g
i.z = g
i.s = e
i.r = c
e.r = g
c.w = e
b.r = c
b.x = c
b.p = e
g.y = i
g.z = i
g.s = e
g.r = c
assert b.p.r.r.txt == "c" | b | e | g | c | x | x | x | x | 6 | 12 | 5 | 3 | 0 | true | true |
353 | class A:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.q: C = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.o: E = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.x: A = None
self.w: D = None
self.r: A = None
self.txt = txt
b = A("b")
a = B("a")
g = C("g")
c = D("c")
h = E("h")
b.x = c
a.s = g
a.q = g
a.w = g
g.r = a
c.v = b
c.o = h
c.y = h
h.y = c
h.w = c
h.x = b
h.r = b
assert h.r.x.y.w.txt == " | c" | class A:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.q: C = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.o: E = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.x: A = None
self.w: D = None
self.r: A = None
self.txt = txt
b = A("b")
a = B("a")
g = C("g")
c = D("c")
h = E("h")
b.x = c
a.s = g
a.q = g
a.w = g
g.r = a
c.v = b
c.o = h
c.y = h
h.y = c
h.w = c
h.x = b
h.r = b
assert h.r.x.y.w.txt == "c" | h | b | c | h | c | x | x | x | 5 | 7 | 5 | 4 | 2 | true | true |
354 | class A:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.s: C = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
c = A("c")
j = B("j")
e = C("e")
c.r = e
j.p = c
j.v = c
j.s = e
e.y = c
assert e.y.r.y.txt == " | c" | class A:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.s: C = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
c = A("c")
j = B("j")
e = C("e")
c.r = e
j.p = c
j.v = c
j.s = e
e.y = c
assert e.y.r.y.txt == "c" | e | c | e | c | x | x | x | x | 3 | 4 | 3 | 3 | 2 | true | true |
355 | class A:
def __init__(self, txt: str):
self.y: D = None
self.z: C = None
self.p: E = None
self.u: E = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.x: E = None
self.r: D = None
self.w: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: F = None
self.u: C = None
self.o: A = None
self.x: F = None
self.y: B = None
self.p: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.p: C = None
self.x: F = None
self.u: F = None
self.v: D = None
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: E = None
self.y: C = None
self.txt = txt
j = A("j")
e = B("e")
d = C("d")
a = D("a")
g = E("g")
f = F("f")
j.y = a
j.z = d
j.p = g
j.u = g
j.t = e
e.q = j
e.y = g
d.t = a
d.r = a
d.x = g
d.w = f
a.w = f
a.x = f
a.u = d
a.o = j
a.p = j
a.y = e
g.y = e
g.p = d
g.x = f
g.u = f
g.v = a
g.z = j
f.o = g
f.y = d
assert g.u.y.w.o.p.w.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: D = None
self.z: C = None
self.p: E = None
self.u: E = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.x: E = None
self.r: D = None
self.w: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: F = None
self.u: C = None
self.o: A = None
self.x: F = None
self.y: B = None
self.p: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.p: C = None
self.x: F = None
self.u: F = None
self.v: D = None
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: E = None
self.y: C = None
self.txt = txt
j = A("j")
e = B("e")
d = C("d")
a = D("a")
g = E("g")
f = F("f")
j.y = a
j.z = d
j.p = g
j.u = g
j.t = e
e.q = j
e.y = g
d.t = a
d.r = a
d.x = g
d.w = f
a.w = f
a.x = f
a.u = d
a.o = j
a.p = j
a.y = e
g.y = e
g.p = d
g.x = f
g.u = f
g.v = a
g.z = j
f.o = g
f.y = d
assert g.u.y.w.o.p.w.txt == "f" | g | f | d | f | g | d | f | x | 6 | 20 | 6 | 6 | 4 | true | true |
356 | class A:
def __init__(self, txt: str):
self.q: B = None
self.s: D = None
self.v: C = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.y: A = None
self.p: F = None
self.s: A = None
self.o: A = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: F = None
self.r: E = None
self.v: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: F = None
self.r: D = None
self.w: C = None
self.x: A = None
self.u: A = None
self.v: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: A = None
self.u: E = None
self.o: D = None
self.y: B = None
self.p: B = None
self.txt = txt
d = A("d")
e = B("e")
i = C("i")
g = D("g")
j = E("j")
c = F("c")
d.q = e
d.s = g
d.v = i
d.u = i
e.r = g
e.y = d
e.s = d
e.o = d
e.p = c
e.z = i
i.t = c
i.v = c
i.r = j
g.y = i
j.y = c
j.r = g
j.w = i
j.x = d
j.u = d
j.v = d
c.v = d
c.u = j
c.o = g
c.y = e
c.p = e
assert d.q.z.r.w.t.txt == " | c" | class A:
def __init__(self, txt: str):
self.q: B = None
self.s: D = None
self.v: C = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.y: A = None
self.p: F = None
self.s: A = None
self.o: A = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: F = None
self.r: E = None
self.v: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: F = None
self.r: D = None
self.w: C = None
self.x: A = None
self.u: A = None
self.v: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: A = None
self.u: E = None
self.o: D = None
self.y: B = None
self.p: B = None
self.txt = txt
d = A("d")
e = B("e")
i = C("i")
g = D("g")
j = E("j")
c = F("c")
d.q = e
d.s = g
d.v = i
d.u = i
e.r = g
e.y = d
e.s = d
e.o = d
e.p = c
e.z = i
i.t = c
i.v = c
i.r = j
g.y = i
j.y = c
j.r = g
j.w = i
j.x = d
j.u = d
j.v = d
c.v = d
c.u = j
c.o = g
c.y = e
c.p = e
assert d.q.z.r.w.t.txt == "c" | d | e | i | j | i | c | x | x | 6 | 18 | 6 | 5 | 1 | true | true |
357 | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
h = A("h")
e = B("e")
d = A("d")
h.y = e
h.q = d
e.t = d
d.y = e
d.q = h
assert d.q.q.q.txt == " | h" | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
h = A("h")
e = B("e")
d = A("d")
h.y = e
h.q = d
e.t = d
d.y = e
d.q = h
assert d.q.q.q.txt == "h" | d | h | d | h | x | x | x | x | 3 | 5 | 2 | 3 | 2 | true | true |
358 | class A:
def __init__(self, txt: str):
self.w: A = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.s: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: E = None
self.q: C = None
self.z: B = None
self.v: B = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: A = None
self.u: C = None
self.r: A = None
self.t: C = None
self.y: B = None
self.txt = txt
a = A("a")
h = B("h")
i = C("i")
f = D("f")
d = E("d")
c = A("c")
a.w = c
a.v = f
h.r = i
h.w = a
i.w = c
i.s = a
f.p = d
f.q = i
f.w = i
f.z = h
f.v = h
d.v = c
d.u = i
d.t = i
d.r = a
d.y = h
c.w = a
c.v = f
assert d.v.w.v.p.txt == " | d" | class A:
def __init__(self, txt: str):
self.w: A = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.s: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: E = None
self.q: C = None
self.z: B = None
self.v: B = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: A = None
self.u: C = None
self.r: A = None
self.t: C = None
self.y: B = None
self.txt = txt
a = A("a")
h = B("h")
i = C("i")
f = D("f")
d = E("d")
c = A("c")
a.w = c
a.v = f
h.r = i
h.w = a
i.w = c
i.s = a
f.p = d
f.q = i
f.w = i
f.z = h
f.v = h
d.v = c
d.u = i
d.t = i
d.r = a
d.y = h
c.w = a
c.v = f
assert d.v.w.v.p.txt == "d" | d | c | a | f | d | x | x | x | 6 | 15 | 5 | 4 | 1 | true | true |
359 | class A:
def __init__(self, txt: str):
self.r: D = None
self.x: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.r: C = 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.q: C = None
self.txt = txt
b = A("b")
a = B("a")
i = C("i")
j = D("j")
b.r = j
b.x = a
b.o = a
a.q = b
a.r = i
i.x = b
j.q = i
assert j.q.x.o.txt == " | a" | class A:
def __init__(self, txt: str):
self.r: D = None
self.x: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.r: C = 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.q: C = None
self.txt = txt
b = A("b")
a = B("a")
i = C("i")
j = D("j")
b.r = j
b.x = a
b.o = a
a.q = b
a.r = i
i.x = b
j.q = i
assert j.q.x.o.txt == "a" | j | i | b | a | x | x | x | x | 4 | 6 | 4 | 3 | 0 | true | true |
360 | class A:
def __init__(self, txt: str):
self.o: B = 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.u: A = None
self.txt = txt
j = A("j")
c = B("c")
g = C("g")
j.o = c
c.y = j
g.y = c
g.u = j
assert c.y.o.y.txt == " | j" | class A:
def __init__(self, txt: str):
self.o: B = 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.u: A = None
self.txt = txt
j = A("j")
c = B("c")
g = C("g")
j.o = c
c.y = j
g.y = c
g.u = j
assert c.y.o.y.txt == "j" | c | j | c | j | x | x | x | x | 3 | 4 | 3 | 3 | 2 | true | true |
361 | class A:
def __init__(self, txt: str):
self.r: C = None
self.w: D = None
self.x: B = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.y: B = None
self.v: C = None
self.z: C = None
self.txt = txt
e = A("e")
i = B("i")
a = C("a")
h = D("h")
e.r = a
e.t = a
e.w = h
e.x = i
i.r = h
a.r = h
h.w = e
h.y = i
h.v = a
h.z = a
assert e.w.z.r.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.r: C = None
self.w: D = None
self.x: B = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.y: B = None
self.v: C = None
self.z: C = None
self.txt = txt
e = A("e")
i = B("i")
a = C("a")
h = D("h")
e.r = a
e.t = a
e.w = h
e.x = i
i.r = h
a.r = h
h.w = e
h.y = i
h.v = a
h.z = a
assert e.w.z.r.y.txt == "i" | e | h | a | h | i | x | x | x | 4 | 8 | 4 | 4 | 1 | true | true |
362 | class A:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.s: C = None
self.txt = txt
f = A("f")
h = B("h")
e = C("e")
j = A("j")
a = A("a")
b = C("b")
f.x = b
h.w = e
h.z = f
e.q = b
e.s = b
j.x = e
a.x = b
b.q = e
b.s = e
assert b.s.s.q.q.s.s.txt == " | b" | class A:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.s: C = None
self.txt = txt
f = A("f")
h = B("h")
e = C("e")
j = A("j")
a = A("a")
b = C("b")
f.x = b
h.w = e
h.z = f
e.q = b
e.s = b
j.x = e
a.x = b
b.q = e
b.s = e
assert b.s.s.q.q.s.s.txt == "b" | b | e | b | e | b | e | b | x | 6 | 7 | 3 | 6 | 5 | true | true |
363 | class A:
def __init__(self, txt: str):
self.u: D = None
self.w: D = None
self.o: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.v: B = None
self.p: A = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
e = A("e")
b = B("b")
d = C("d")
g = D("g")
e.u = g
e.w = g
e.o = g
b.w = e
d.y = b
d.v = b
d.p = e
d.x = e
g.s = e
assert e.w.s.u.s.txt == " | e" | class A:
def __init__(self, txt: str):
self.u: D = None
self.w: D = None
self.o: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.v: B = None
self.p: A = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
e = A("e")
b = B("b")
d = C("d")
g = D("g")
e.u = g
e.w = g
e.o = g
b.w = e
d.y = b
d.v = b
d.p = e
d.x = e
g.s = e
assert e.w.s.u.s.txt == "e" | e | g | e | g | e | x | x | x | 4 | 5 | 4 | 4 | 3 | true | true |
364 | class A:
def __init__(self, txt: str):
self.w: D = None
self.r: D = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.s: B = None
self.r: D = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.v: B = None
self.txt = txt
b = A("b")
g = B("g")
i = C("i")
a = D("a")
b.w = a
b.r = a
b.o = g
g.z = i
g.r = i
i.o = a
i.r = a
i.p = a
i.s = g
a.y = b
a.v = g
assert g.z.p.y.txt == " | b" | class A:
def __init__(self, txt: str):
self.w: D = None
self.r: D = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.s: B = None
self.r: D = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.v: B = None
self.txt = txt
b = A("b")
g = B("g")
i = C("i")
a = D("a")
b.w = a
b.r = a
b.o = g
g.z = i
g.r = i
i.o = a
i.r = a
i.p = a
i.s = g
a.y = b
a.v = g
assert g.z.p.y.txt == "b" | g | i | a | b | x | x | x | x | 4 | 7 | 4 | 3 | 0 | true | true |
365 | class A:
def __init__(self, txt: str):
self.u: D = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.w: B = None
self.v: B = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.u: D = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.s: B = None
self.x: C = None
self.txt = txt
d = A("d")
f = B("f")
b = C("b")
g = D("g")
a = A("a")
h = B("h")
i = A("i")
d.u = g
d.x = a
f.q = i
f.w = h
f.v = h
f.x = g
b.y = f
b.p = f
b.u = g
g.o = a
g.s = h
g.x = b
a.u = g
a.x = d
h.q = a
h.w = f
h.v = f
h.x = g
i.u = g
i.x = d
assert f.x.x.u.o.txt == " | a" | class A:
def __init__(self, txt: str):
self.u: D = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.w: B = None
self.v: B = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.u: D = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.s: B = None
self.x: C = None
self.txt = txt
d = A("d")
f = B("f")
b = C("b")
g = D("g")
a = A("a")
h = B("h")
i = A("i")
d.u = g
d.x = a
f.q = i
f.w = h
f.v = h
f.x = g
b.y = f
b.p = f
b.u = g
g.o = a
g.s = h
g.x = b
a.u = g
a.x = d
h.q = a
h.w = f
h.v = f
h.x = g
i.u = g
i.x = d
assert f.x.x.u.o.txt == "a" | f | g | b | g | a | x | x | x | 7 | 17 | 4 | 4 | 1 | true | true |
366 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.w: A = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.x: D = None
self.o: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: B = None
self.s: E = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: B = None
self.w: B = None
self.txt = txt
c = A("c")
g = B("g")
f = C("f")
a = D("a")
d = E("d")
j = B("j")
c.v = j
g.u = d
g.w = c
g.r = f
f.y = a
f.x = a
f.o = d
a.w = j
a.s = d
a.x = d
d.q = g
d.w = j
j.u = d
j.w = c
j.r = f
assert j.w.v.w.txt == " | c" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.w: A = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.x: D = None
self.o: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: B = None
self.s: E = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: B = None
self.w: B = None
self.txt = txt
c = A("c")
g = B("g")
f = C("f")
a = D("a")
d = E("d")
j = B("j")
c.v = j
g.u = d
g.w = c
g.r = f
f.y = a
f.x = a
f.o = d
a.w = j
a.s = d
a.x = d
d.q = g
d.w = j
j.u = d
j.w = c
j.r = f
assert j.w.v.w.txt == "c" | j | c | j | c | x | x | x | x | 6 | 13 | 5 | 3 | 2 | true | true |
367 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
a = A("a")
d = B("d")
f = B("f")
a.r = f
d.t = a
f.t = a
assert f.t.r.t.txt == " | a" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
a = A("a")
d = B("d")
f = B("f")
a.r = f
d.t = a
f.t = a
assert f.t.r.t.txt == "a" | f | a | f | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 | true | true |
368 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
c = A("c")
f = B("f")
i = A("i")
a = B("a")
e = A("e")
b = B("b")
g = B("g")
c.r = i
f.x = b
i.r = e
a.x = b
e.r = i
b.x = a
g.x = b
assert a.x.x.x.txt == " | b" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
c = A("c")
f = B("f")
i = A("i")
a = B("a")
e = A("e")
b = B("b")
g = B("g")
c.r = i
f.x = b
i.r = e
a.x = b
e.r = i
b.x = a
g.x = b
assert a.x.x.x.txt == "b" | a | b | a | b | x | x | x | x | 7 | 7 | 2 | 3 | 2 | true | true |
369 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: 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.q: B = None
self.u: B = None
self.t: B = None
self.y: B = None
self.txt = txt
c = A("c")
f = B("f")
d = C("d")
b = D("b")
c.z = f
f.w = c
d.y = f
b.q = f
b.u = f
b.t = f
b.y = f
assert b.t.w.z.w.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: 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.q: B = None
self.u: B = None
self.t: B = None
self.y: B = None
self.txt = txt
c = A("c")
f = B("f")
d = C("d")
b = D("b")
c.z = f
f.w = c
d.y = f
b.q = f
b.u = f
b.t = f
b.y = f
assert b.t.w.z.w.txt == "c" | b | f | c | f | c | x | x | x | 4 | 4 | 4 | 4 | 2 | true | true |
370 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
e = A("e")
d = B("d")
c = B("c")
e.v = c
d.y = e
c.y = e
assert c.y.v.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
e = A("e")
d = B("d")
c = B("c")
e.v = c
d.y = e
c.y = e
assert c.y.v.y.txt == "e" | c | e | c | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 | true | true |
371 | class A:
def __init__(self, txt: str):
self.y: C = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.s: A = None
self.txt = txt
g = A("g")
f = B("f")
h = C("h")
d = B("d")
j = C("j")
g.y = j
g.t = f
f.t = d
f.s = j
h.q = f
h.s = g
d.t = f
d.s = j
j.q = d
j.s = g
assert g.y.q.t.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: C = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.s: A = None
self.txt = txt
g = A("g")
f = B("f")
h = C("h")
d = B("d")
j = C("j")
g.y = j
g.t = f
f.t = d
f.s = j
h.q = f
h.s = g
d.t = f
d.s = j
j.q = d
j.s = g
assert g.y.q.t.txt == "f" | g | j | d | f | x | x | x | x | 5 | 10 | 3 | 3 | 0 | true | true |
372 | class A:
def __init__(self, txt: str):
self.v: C = None
self.x: B = 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.t: A = None
self.txt = txt
h = A("h")
a = B("a")
d = C("d")
h.v = d
h.x = a
h.r = a
a.x = h
d.t = h
assert h.x.x.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.v: C = None
self.x: B = 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.t: A = None
self.txt = txt
h = A("h")
a = B("a")
d = C("d")
h.v = d
h.x = a
h.r = a
a.x = h
d.t = h
assert h.x.x.v.txt == "d" | h | a | h | d | x | x | x | x | 3 | 4 | 3 | 3 | 1 | true | true |
373 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
j = A("j")
e = B("e")
b = A("b")
g = B("g")
h = A("h")
i = A("i")
j.s = e
e.x = g
b.s = e
g.x = e
h.s = g
i.s = g
assert j.s.x.x.x.txt == " | g" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
j = A("j")
e = B("e")
b = A("b")
g = B("g")
h = A("h")
i = A("i")
j.s = e
e.x = g
b.s = e
g.x = e
h.s = g
i.s = g
assert j.s.x.x.x.txt == "g" | j | e | g | e | g | x | x | x | 6 | 6 | 2 | 4 | 2 | true | true |
374 | class A:
def __init__(self, txt: str):
self.w: B = None
self.o: B = None
self.u: C = None
self.r: C = None
self.s: D = None
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.t: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.t: F = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: F = None
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.t: B = None
self.s: A = None
self.p: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: B = None
self.w: E = None
self.y: C = None
self.t: D = None
self.txt = txt
c = A("c")
b = B("b")
a = C("a")
j = D("j")
h = E("h")
d = F("d")
i = C("i")
c.w = b
c.o = b
c.u = i
c.r = a
c.s = j
c.z = d
b.r = j
b.t = d
a.p = h
a.t = d
a.r = c
j.t = d
j.r = h
h.w = c
h.s = c
h.t = b
h.p = a
d.o = b
d.w = h
d.y = i
d.t = j
i.p = h
i.t = d
i.r = c
assert h.t.t.o.txt == " | b" | class A:
def __init__(self, txt: str):
self.w: B = None
self.o: B = None
self.u: C = None
self.r: C = None
self.s: D = None
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.t: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.t: F = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: F = None
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.t: B = None
self.s: A = None
self.p: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: B = None
self.w: E = None
self.y: C = None
self.t: D = None
self.txt = txt
c = A("c")
b = B("b")
a = C("a")
j = D("j")
h = E("h")
d = F("d")
i = C("i")
c.w = b
c.o = b
c.u = i
c.r = a
c.s = j
c.z = d
b.r = j
b.t = d
a.p = h
a.t = d
a.r = c
j.t = d
j.r = h
h.w = c
h.s = c
h.t = b
h.p = a
d.o = b
d.w = h
d.y = i
d.t = j
i.p = h
i.t = d
i.r = c
assert h.t.t.o.txt == "b" | h | b | d | b | x | x | x | x | 7 | 22 | 6 | 3 | 1 | true | true |
375 | class A:
def __init__(self, txt: str):
self.v: E = None
self.u: D = None
self.p: D = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.t: E = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.p: B = None
self.txt = txt
b = A("b")
a = B("a")
d = C("d")
h = D("h")
j = E("j")
b.v = j
b.u = h
b.p = h
b.o = a
a.z = b
a.v = b
d.q = j
h.y = b
h.w = b
h.t = j
j.w = b
j.p = a
assert b.o.v.v.p.txt == " | a" | class A:
def __init__(self, txt: str):
self.v: E = None
self.u: D = None
self.p: D = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.t: E = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.p: B = None
self.txt = txt
b = A("b")
a = B("a")
d = C("d")
h = D("h")
j = E("j")
b.v = j
b.u = h
b.p = h
b.o = a
a.z = b
a.v = b
d.q = j
h.y = b
h.w = b
h.t = j
j.w = b
j.p = a
assert b.o.v.v.p.txt == "a" | b | a | b | j | a | x | x | x | 5 | 9 | 5 | 4 | 2 | true | true |
376 | class A:
def __init__(self, txt: str):
self.z: C = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.x: B = None
self.y: B = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.w: C = None
self.z: B = None
self.txt = txt
c = A("c")
a = B("a")
j = C("j")
d = D("d")
c.z = j
c.u = j
a.u = j
a.x = d
j.t = c
j.p = c
j.x = a
j.y = a
d.p = j
d.w = j
d.z = a
assert d.p.y.u.t.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: C = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.x: B = None
self.y: B = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.w: C = None
self.z: B = None
self.txt = txt
c = A("c")
a = B("a")
j = C("j")
d = D("d")
c.z = j
c.u = j
a.u = j
a.x = d
j.t = c
j.p = c
j.x = a
j.y = a
d.p = j
d.w = j
d.z = a
assert d.p.y.u.t.txt == "c" | d | j | a | j | c | x | x | x | 4 | 7 | 4 | 4 | 1 | true | true |
377 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: F = None
self.s: D = None
self.z: C = None
self.w: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: E = None
self.s: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.w: C = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
d = A("d")
a = B("a")
g = C("g")
c = D("c")
f = E("f")
e = F("e")
d.z = a
a.o = e
a.w = e
a.s = c
a.z = g
g.q = f
g.s = f
c.y = a
c.q = d
c.w = g
c.p = f
f.r = a
e.w = a
assert d.z.s.w.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: F = None
self.s: D = None
self.z: C = None
self.w: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: E = None
self.s: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.w: C = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
d = A("d")
a = B("a")
g = C("g")
c = D("c")
f = E("f")
e = F("e")
d.z = a
a.o = e
a.w = e
a.s = c
a.z = g
g.q = f
g.s = f
c.y = a
c.q = d
c.w = g
c.p = f
f.r = a
e.w = a
assert d.z.s.w.txt == "g" | d | a | c | g | x | x | x | x | 6 | 11 | 6 | 3 | 0 | true | true |
378 | class A:
def __init__(self, txt: str):
self.s: A = None
self.x: B = 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.y: A = None
self.x: D = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
d = A("d")
g = B("g")
i = C("i")
j = D("j")
h = D("h")
c = D("c")
b = A("b")
d.s = b
d.x = g
g.s = b
i.y = d
i.x = c
i.r = b
j.z = c
h.z = j
c.z = h
b.s = d
b.x = g
assert g.s.s.s.s.txt == " | d" | class A:
def __init__(self, txt: str):
self.s: A = None
self.x: B = 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.y: A = None
self.x: D = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
d = A("d")
g = B("g")
i = C("i")
j = D("j")
h = D("h")
c = D("c")
b = A("b")
d.s = b
d.x = g
g.s = b
i.y = d
i.x = c
i.r = b
j.z = c
h.z = j
c.z = h
b.s = d
b.x = g
assert g.s.s.s.s.txt == "d" | g | b | d | b | d | x | x | x | 7 | 11 | 4 | 4 | 2 | true | true |
379 | class A:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.u: E = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.u: E = None
self.q: A = None
self.r: D = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: E = None
self.r: E = None
self.x: F = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
c = A("c")
f = B("f")
i = C("i")
a = D("a")
h = E("h")
g = F("g")
c.y = a
f.t = a
f.u = h
f.r = c
i.w = c
i.q = c
i.u = h
i.y = h
i.r = a
a.v = h
a.r = h
a.x = g
a.o = c
h.p = i
g.w = c
assert a.o.y.o.y.x.w.txt == " | c" | class A:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.u: E = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.u: E = None
self.q: A = None
self.r: D = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: E = None
self.r: E = None
self.x: F = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
c = A("c")
f = B("f")
i = C("i")
a = D("a")
h = E("h")
g = F("g")
c.y = a
f.t = a
f.u = h
f.r = c
i.w = c
i.q = c
i.u = h
i.y = h
i.r = a
a.v = h
a.r = h
a.x = g
a.o = c
h.p = i
g.w = c
assert a.o.y.o.y.x.w.txt == "c" | a | c | a | c | a | g | c | x | 6 | 12 | 6 | 6 | 4 | true | true |
380 | class A:
def __init__(self, txt: str):
self.o: B = 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.p: A = None
self.txt = txt
g = A("g")
c = B("c")
f = C("f")
g.o = c
c.s = g
f.p = g
assert f.p.o.s.txt == " | g" | class A:
def __init__(self, txt: str):
self.o: B = 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.p: A = None
self.txt = txt
g = A("g")
c = B("c")
f = C("f")
g.o = c
c.s = g
f.p = g
assert f.p.o.s.txt == "g" | f | g | c | g | x | x | x | x | 3 | 3 | 3 | 3 | 1 | true | true |
381 | class A:
def __init__(self, txt: str):
self.t: C = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.q: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.p: A = None
self.txt = txt
b = A("b")
e = B("e")
c = C("c")
d = D("d")
b.t = c
b.r = e
e.s = c
e.q = d
c.x = b
c.z = d
d.o = b
d.p = b
assert e.q.p.r.q.txt == " | d" | class A:
def __init__(self, txt: str):
self.t: C = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.q: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.p: A = None
self.txt = txt
b = A("b")
e = B("e")
c = C("c")
d = D("d")
b.t = c
b.r = e
e.s = c
e.q = d
c.x = b
c.z = d
d.o = b
d.p = b
assert e.q.p.r.q.txt == "d" | e | d | b | e | d | x | x | x | 4 | 7 | 4 | 4 | 2 | true | true |
382 | class A:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.r: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
i = A("i")
j = B("j")
c = C("c")
b = D("b")
d = D("d")
h = C("h")
e = D("e")
i.y = c
j.t = i
j.r = d
c.r = j
b.z = i
d.z = i
h.r = j
e.z = i
assert c.r.r.z.txt == " | i" | class A:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.r: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
i = A("i")
j = B("j")
c = C("c")
b = D("b")
d = D("d")
h = C("h")
e = D("e")
i.y = c
j.t = i
j.r = d
c.r = j
b.z = i
d.z = i
h.r = j
e.z = i
assert c.r.r.z.txt == "i" | c | j | d | i | x | x | x | x | 7 | 8 | 4 | 3 | 0 | true | true |
383 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.w: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: C = None
self.p: A = None
self.t: B = None
self.x: D = None
self.txt = txt
g = A("g")
j = B("j")
c = C("c")
a = D("a")
e = A("e")
b = C("b")
d = D("d")
g.w = e
j.v = a
j.q = c
c.u = j
c.w = b
a.w = b
a.p = e
a.t = j
a.x = d
e.w = g
b.u = j
b.w = c
d.w = b
d.p = g
d.t = j
d.x = a
assert d.x.w.w.txt == " | c" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.w: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: C = None
self.p: A = None
self.t: B = None
self.x: D = None
self.txt = txt
g = A("g")
j = B("j")
c = C("c")
a = D("a")
e = A("e")
b = C("b")
d = D("d")
g.w = e
j.v = a
j.q = c
c.u = j
c.w = b
a.w = b
a.p = e
a.t = j
a.x = d
e.w = g
b.u = j
b.w = c
d.w = b
d.p = g
d.t = j
d.x = a
assert d.x.w.w.txt == "c" | d | a | b | c | x | x | x | x | 7 | 16 | 4 | 3 | 0 | true | true |
384 | class A:
def __init__(self, txt: str):
self.w: C = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: C = None
self.z: A = None
self.q: C = None
self.txt = txt
h = A("h")
b = B("b")
c = C("c")
i = C("i")
d = A("d")
h.w = i
h.x = b
b.u = h
c.s = i
c.q = i
c.z = d
i.s = c
i.q = c
i.z = d
d.w = c
d.x = b
assert d.x.u.x.u.txt == " | h" | class A:
def __init__(self, txt: str):
self.w: C = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: C = None
self.z: A = None
self.q: C = None
self.txt = txt
h = A("h")
b = B("b")
c = C("c")
i = C("i")
d = A("d")
h.w = i
h.x = b
b.u = h
c.s = i
c.q = i
c.z = d
i.s = c
i.q = c
i.z = d
d.w = c
d.x = b
assert d.x.u.x.u.txt == "h" | d | b | h | b | h | x | x | x | 5 | 9 | 3 | 4 | 2 | true | true |
385 | class A:
def __init__(self, txt: str):
self.x: C = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: E = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
e = A("e")
d = B("d")
c = C("c")
j = D("j")
a = E("a")
e.x = c
e.o = d
d.q = c
d.y = a
c.y = e
j.x = a
j.r = e
a.u = c
assert e.o.y.u.txt == " | c" | class A:
def __init__(self, txt: str):
self.x: C = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: E = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
e = A("e")
d = B("d")
c = C("c")
j = D("j")
a = E("a")
e.x = c
e.o = d
d.q = c
d.y = a
c.y = e
j.x = a
j.r = e
a.u = c
assert e.o.y.u.txt == "c" | e | d | a | c | x | x | x | x | 5 | 8 | 5 | 3 | 0 | true | true |
386 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
b = A("b")
i = B("i")
a = C("a")
j = B("j")
b.s = j
i.s = a
i.t = b
a.z = i
j.s = a
j.t = b
assert b.s.s.z.t.txt == " | b" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
b = A("b")
i = B("i")
a = C("a")
j = B("j")
b.s = j
i.s = a
i.t = b
a.z = i
j.s = a
j.t = b
assert b.s.s.z.t.txt == "b" | b | j | a | i | b | x | x | x | 4 | 6 | 3 | 4 | 1 | true | true |
387 | class A:
def __init__(self, txt: str):
self.u: F = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: F = None
self.y: E = None
self.o: C = None
self.u: F = None
self.v: C = None
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: E = None
self.v: A = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: C = None
self.o: A = None
self.u: A = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: D = None
self.r: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.v: B = None
self.o: C = None
self.w: B = None
self.txt = txt
a = A("a")
d = B("d")
g = C("g")
c = D("c")
h = E("h")
j = F("j")
f = A("f")
a.u = j
a.w = f
d.w = j
d.u = j
d.y = h
d.o = g
d.v = g
d.s = c
g.r = h
g.v = a
g.s = d
c.y = g
c.o = f
c.u = a
c.s = h
h.w = c
h.r = c
j.z = d
j.v = d
j.w = d
j.o = g
f.u = j
f.w = a
assert f.u.o.v.u.o.s.v.txt == " | g" | class A:
def __init__(self, txt: str):
self.u: F = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: F = None
self.y: E = None
self.o: C = None
self.u: F = None
self.v: C = None
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: E = None
self.v: A = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: C = None
self.o: A = None
self.u: A = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: D = None
self.r: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.v: B = None
self.o: C = None
self.w: B = None
self.txt = txt
a = A("a")
d = B("d")
g = C("g")
c = D("c")
h = E("h")
j = F("j")
f = A("f")
a.u = j
a.w = f
d.w = j
d.u = j
d.y = h
d.o = g
d.v = g
d.s = c
g.r = h
g.v = a
g.s = d
c.y = g
c.o = f
c.u = a
c.s = h
h.w = c
h.r = c
j.z = d
j.v = d
j.w = d
j.o = g
f.u = j
f.w = a
assert f.u.o.v.u.o.s.v.txt == "g" | f | j | g | a | j | g | d | g | 7 | 18 | 6 | 7 | 3 | true | true |
388 | class A:
def __init__(self, txt: str):
self.p: D = None
self.t: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.s: C = None
self.txt = txt
a = A("a")
j = B("j")
g = C("g")
f = D("f")
d = A("d")
a.p = f
a.t = j
a.s = d
j.x = d
j.s = g
g.z = f
g.u = f
f.q = j
f.s = g
d.p = f
d.t = j
d.s = a
assert f.s.z.q.txt == " | j" | class A:
def __init__(self, txt: str):
self.p: D = None
self.t: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.s: C = None
self.txt = txt
a = A("a")
j = B("j")
g = C("g")
f = D("f")
d = A("d")
a.p = f
a.t = j
a.s = d
j.x = d
j.s = g
g.z = f
g.u = f
f.q = j
f.s = g
d.p = f
d.t = j
d.s = a
assert f.s.z.q.txt == "j" | f | g | f | j | x | x | x | x | 5 | 11 | 4 | 3 | 1 | true | true |
389 | class A:
def __init__(self, txt: str):
self.u: B = 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.s: A = None
self.z: A = None
self.txt = txt
h = A("h")
a = B("a")
g = C("g")
h.u = a
a.y = h
g.s = h
g.z = h
assert g.s.u.y.txt == " | h" | class A:
def __init__(self, txt: str):
self.u: B = 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.s: A = None
self.z: A = None
self.txt = txt
h = A("h")
a = B("a")
g = C("g")
h.u = a
a.y = h
g.s = h
g.z = h
assert g.s.u.y.txt == "h" | g | h | a | h | x | x | x | x | 3 | 3 | 3 | 3 | 1 | true | true |
390 | class A:
def __init__(self, txt: str):
self.w: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
e = A("e")
b = B("b")
j = A("j")
e.w = j
e.o = j
b.q = e
j.w = e
j.o = e
assert j.o.o.o.txt == " | e" | class A:
def __init__(self, txt: str):
self.w: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
e = A("e")
b = B("b")
j = A("j")
e.w = j
e.o = j
b.q = e
j.w = e
j.o = e
assert j.o.o.o.txt == "e" | j | e | j | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 | true | true |
391 | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
j = B("j")
i = C("i")
h = C("h")
a = B("a")
d = A("d")
g = A("g")
c.u = a
c.z = j
c.w = j
j.r = h
j.o = d
i.s = c
h.s = g
a.r = i
a.o = g
d.u = j
d.z = j
d.w = j
g.u = j
g.z = j
g.w = a
assert g.z.o.w.o.w.r.txt == " | h" | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
j = B("j")
i = C("i")
h = C("h")
a = B("a")
d = A("d")
g = A("g")
c.u = a
c.z = j
c.w = j
j.r = h
j.o = d
i.s = c
h.s = g
a.r = i
a.o = g
d.u = j
d.z = j
d.w = j
g.u = j
g.z = j
g.w = a
assert g.z.o.w.o.w.r.txt == "h" | g | j | d | j | d | j | h | x | 7 | 11 | 3 | 6 | 3 | true | true |
392 | class A:
def __init__(self, txt: str):
self.x: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
d = A("d")
i = B("i")
h = A("h")
g = A("g")
f = A("f")
d.x = g
d.y = i
i.v = h
h.x = g
h.y = i
g.x = h
g.y = i
f.x = h
f.y = i
assert g.y.v.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.x: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
d = A("d")
i = B("i")
h = A("h")
g = A("g")
f = A("f")
d.x = g
d.y = i
i.v = h
h.x = g
h.y = i
g.x = h
g.y = i
f.x = h
f.y = i
assert g.y.v.y.txt == "i" | g | i | h | i | x | x | x | x | 5 | 9 | 2 | 3 | 1 | true | true |
393 | class A:
def __init__(self, txt: str):
self.v: B = None
self.o: C = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: D = None
self.v: A = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: E = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
b = A("b")
g = B("g")
i = C("i")
a = D("a")
h = E("h")
d = B("d")
b.v = g
b.o = i
b.w = i
g.t = b
g.v = b
g.w = a
g.o = d
i.v = b
i.q = h
a.u = h
a.p = h
h.s = a
d.t = b
d.v = b
d.w = a
d.o = g
assert g.o.o.w.u.txt == " | h" | class A:
def __init__(self, txt: str):
self.v: B = None
self.o: C = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: D = None
self.v: A = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: E = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
b = A("b")
g = B("g")
i = C("i")
a = D("a")
h = E("h")
d = B("d")
b.v = g
b.o = i
b.w = i
g.t = b
g.v = b
g.w = a
g.o = d
i.v = b
i.q = h
a.u = h
a.p = h
h.s = a
d.t = b
d.v = b
d.w = a
d.o = g
assert g.o.o.w.u.txt == "h" | g | d | g | a | h | x | x | x | 6 | 12 | 5 | 4 | 1 | true | true |
394 | class A:
def __init__(self, txt: str):
self.p: C = None
self.w: B = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.t: B = None
self.x: A = None
self.txt = txt
j = A("j")
i = B("i")
f = C("f")
g = C("g")
j.p = f
j.w = i
j.s = g
i.s = g
f.y = i
f.t = i
f.x = j
g.y = i
g.t = i
g.x = j
assert g.y.s.t.txt == " | i" | class A:
def __init__(self, txt: str):
self.p: C = None
self.w: B = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.t: B = None
self.x: A = None
self.txt = txt
j = A("j")
i = B("i")
f = C("f")
g = C("g")
j.p = f
j.w = i
j.s = g
i.s = g
f.y = i
f.t = i
f.x = j
g.y = i
g.t = i
g.x = j
assert g.y.s.t.txt == "i" | g | i | g | i | x | x | x | x | 4 | 8 | 3 | 3 | 2 | true | true |
395 | class A:
def __init__(self, txt: str):
self.y: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
g = A("g")
f = B("f")
c = A("c")
g.y = c
g.p = f
f.t = c
c.y = g
c.p = f
assert g.y.y.p.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
g = A("g")
f = B("f")
c = A("c")
g.y = c
g.p = f
f.t = c
c.y = g
c.p = f
assert g.y.y.p.txt == "f" | g | c | g | f | x | x | x | x | 3 | 5 | 2 | 3 | 1 | true | true |
396 | class A:
def __init__(self, txt: str):
self.o: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
b = A("b")
j = B("j")
d = B("d")
b.o = j
b.v = j
j.s = b
d.s = b
assert d.s.v.s.txt == " | b" | class A:
def __init__(self, txt: str):
self.o: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
b = A("b")
j = B("j")
d = B("d")
b.o = j
b.v = j
j.s = b
d.s = b
assert d.s.v.s.txt == "b" | d | b | j | b | x | x | x | x | 3 | 3 | 2 | 3 | 1 | true | true |
397 | class A:
def __init__(self, txt: str):
self.y: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
g = A("g")
h = B("h")
j = A("j")
f = B("f")
g.y = j
g.o = h
h.p = j
j.y = g
j.o = f
f.p = g
assert h.p.y.y.y.txt == " | g" | class A:
def __init__(self, txt: str):
self.y: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
g = A("g")
h = B("h")
j = A("j")
f = B("f")
g.y = j
g.o = h
h.p = j
j.y = g
j.o = f
f.p = g
assert h.p.y.y.y.txt == "g" | h | j | g | j | g | x | x | x | 4 | 6 | 2 | 4 | 2 | true | true |
398 | class A:
def __init__(self, txt: str):
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.y: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: F = None
self.u: F = None
self.w: F = None
self.s: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.o: C = None
self.y: D = None
self.p: C = None
self.v: E = None
self.txt = txt
b = A("b")
j = B("j")
d = C("d")
a = D("a")
g = E("g")
h = F("h")
b.u = h
j.u = g
d.y = a
a.o = j
a.y = h
g.o = h
g.u = h
g.w = h
g.s = a
h.z = j
h.o = d
h.p = d
h.y = a
h.v = g
assert g.o.z.u.s.txt == " | a" | class A:
def __init__(self, txt: str):
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.y: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: F = None
self.u: F = None
self.w: F = None
self.s: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.o: C = None
self.y: D = None
self.p: C = None
self.v: E = None
self.txt = txt
b = A("b")
j = B("j")
d = C("d")
a = D("a")
g = E("g")
h = F("h")
b.u = h
j.u = g
d.y = a
a.o = j
a.y = h
g.o = h
g.u = h
g.w = h
g.s = a
h.z = j
h.o = d
h.p = d
h.y = a
h.v = g
assert g.o.z.u.s.txt == "a" | g | h | j | g | a | x | x | x | 6 | 11 | 6 | 4 | 1 | true | true |
399 | class A:
def __init__(self, txt: str):
self.r: E = None
self.s: B = None
self.v: E = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.w: A = None
self.v: A = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: F = None
self.t: A = None
self.p: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.w: C = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.o: B = None
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.t: D = None
self.s: C = None
self.y: C = None
self.p: E = None
self.txt = txt
j = A("j")
a = B("a")
b = C("b")
e = D("e")
g = E("g")
i = F("i")
j.r = g
j.v = g
j.y = g
j.s = a
a.x = b
a.w = j
a.v = j
a.s = g
b.w = i
b.p = i
b.t = j
e.o = b
e.w = b
e.x = b
g.p = i
g.o = a
g.z = j
i.o = e
i.t = e
i.s = b
i.y = b
i.p = g
assert b.p.t.w.txt == " | b" | class A:
def __init__(self, txt: str):
self.r: E = None
self.s: B = None
self.v: E = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.w: A = None
self.v: A = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: F = None
self.t: A = None
self.p: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.w: C = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.o: B = None
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.t: D = None
self.s: C = None
self.y: C = None
self.p: E = None
self.txt = txt
j = A("j")
a = B("a")
b = C("b")
e = D("e")
g = E("g")
i = F("i")
j.r = g
j.v = g
j.y = g
j.s = a
a.x = b
a.w = j
a.v = j
a.s = g
b.w = i
b.p = i
b.t = j
e.o = b
e.w = b
e.x = b
g.p = i
g.o = a
g.z = j
i.o = e
i.t = e
i.s = b
i.y = b
i.p = g
assert b.p.t.w.txt == "b" | b | i | e | b | x | x | x | x | 6 | 14 | 6 | 3 | 1 | true | true |
End of preview. Expand
in Dataset Viewer.
README.md exists but content is empty.
Use the Edit dataset card button to edit it.
- Downloads last month
- 6