id int64 0 30k | prompt stringlengths 265 1.96k | answer stringclasses 10
values | pythoncode stringlengths 267 1.96k | 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 | depthn0 stringclasses 10
values | depthn1 stringclasses 10
values | depthn2 stringclasses 10
values | depthn3 stringclasses 10
values | depthn4 stringclasses 11
values | depthn5 stringclasses 11
values | depthn6 stringclasses 11
values | depthn7 stringclasses 11
values | num_nodes int64 3 7 | num_edges int64 3 30 | num_classes int64 2 7 | path_length int64 3 7 | num_cycle int64 0 6 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
900 | class A:
def __init__(self, txt: str):
self.z: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
g = A("g")
h = B("h")
j = A("j")
b = A("b")
e = B("e")
i = A("i")
f = B("f")
g.z = h
g.v = i
h.v = e
j.z = h
j... | h" | class A:
def __init__(self, txt: str):
self.z: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
g = A("g")
h = B("h")
j = A("j")
b = A("b")
e = B("e")
i = A("i")
f = B("f")
g.z = h
g.v = i
h.v = e
j.z = h
j... | e | f | h | e | f | h | x | x | h | f | e | h | f | e | x | x | 7 | 11 | 2 | 5 | 3 |
901 | class A:
def __init__(self, txt: str):
self.p: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
h = A("h")
b = B("b")
f = A("f")
d = B("d")
h.p = f
h.r = b
b.x = d
f.p = h
f.r = b
d.x = b
assert b.x.x.x.txt... | d" | class A:
def __init__(self, txt: str):
self.p: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
h = A("h")
b = B("b")
f = A("f")
d = B("d")
h.p = f
h.r = b
b.x = d
f.p = h
f.r = b
d.x = b
assert b.x.x.x.txt... | b | d | b | d | x | x | x | x | d | b | d | b | x | x | x | x | 4 | 6 | 2 | 3 | 2 |
902 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
i = A("i")
f = B("f")
h = B("h")
g = B("g")
c = A("c")
b = B("b")
e = A("e")
i.o = e
f.s = b
h.s = b
g.s = h
c.o = e
b.s = f
e.o = c
as... | c" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
i = A("i")
f = B("f")
h = B("h")
g = B("g")
c = A("c")
b = B("b")
e = A("e")
i.o = e
f.s = b
h.s = b
g.s = h
c.o = e
b.s = f
e.o = c
as... | e | c | e | c | e | c | x | x | c | e | c | e | c | e | x | x | 7 | 7 | 2 | 5 | 4 |
903 | class A:
def __init__(self, txt: str):
self.u: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
a = A("a")
f = B("f")
j = A("j")
e = A("e")
h = B("h")
a.u = f
a.r = h
f.s = h
j.u = f
j.r = h
e.u = h
e.r = f... | f" | class A:
def __init__(self, txt: str):
self.u: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
a = A("a")
f = B("f")
j = A("j")
e = A("e")
h = B("h")
a.u = f
a.r = h
f.s = h
j.u = f
j.r = h
e.u = h
e.r = f... | j | f | h | f | h | f | x | x | f | h | f | h | f | j | x | x | 5 | 8 | 2 | 5 | 3 |
904 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.y: A = None
self.txt = txt
b = A("b")
e = B("e")
i = A("i")
b.y = e
e.v = b
e.y = i
i.y = e
assert b.y.v.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.y: A = None
self.txt = txt
b = A("b")
e = B("e")
i = A("i")
b.y = e
e.v = b
e.y = i
i.y = e
assert b.y.v.y.txt == "e" | b | e | b | e | x | x | x | x | e | b | e | b | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
905 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
b = A("b")
g = B("g")
e = B("e")
b.t = e
g.p = b
e.p = b
assert g.p.t.p.txt == " | b" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
b = A("b")
g = B("g")
e = B("e")
b.t = e
g.p = b
e.p = b
assert g.p.t.p.txt == "b" | g | b | e | b | x | x | x | x | b | e | b | g | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
906 | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.o: B = None
self.txt = txt
b = A("b")
a = B("a")
e = A("e")
d = B("d")
f = B("f")
b.y = d
b.q = d
a.x = f
a.o = ... | d" | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.o: B = None
self.txt = txt
b = A("b")
a = B("a")
e = A("e")
d = B("d")
f = B("f")
b.y = d
b.q = d
a.x = f
a.o = ... | d | f | d | f | d | x | x | x | d | f | d | f | d | x | x | x | 5 | 8 | 2 | 4 | 3 |
907 | class A:
def __init__(self, txt: str):
self.s: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.q: B = None
self.txt = txt
g = A("g")
f = B("f")
j = B("j")
c = A("c")
g.s = c
g.u = f
f.y = j
f.q = j
j.y = f
j... | j" | class A:
def __init__(self, txt: str):
self.s: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.q: B = None
self.txt = txt
g = A("g")
f = B("f")
j = B("j")
c = A("c")
g.s = c
g.u = f
f.y = j
f.q = j
j.y = f
j... | f | j | f | j | x | x | x | x | j | f | j | f | x | x | x | x | 4 | 6 | 2 | 3 | 2 |
908 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
h = A("h")
f = B("f")
a = A("a")
h.s = a
f.t = a
a.s = h
assert f.t.s.s.txt == " | a" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
h = A("h")
f = B("f")
a = A("a")
h.s = a
f.t = a
a.s = h
assert f.t.s.s.txt == "a" | f | a | h | a | x | x | x | x | a | h | a | f | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
909 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.w: B = None
self.txt = txt
i = A("i")
j = B("j")
c = B("c")
i.o = j
j.z = i
j.w = c
c.z = i
c.w = j
assert j.w.w.w.txt == " | c" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.w: B = None
self.txt = txt
i = A("i")
j = B("j")
c = B("c")
i.o = j
j.z = i
j.w = c
c.z = i
c.w = j
assert j.w.w.w.txt == "c" | j | c | j | c | x | x | x | x | c | j | c | j | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
910 | class A:
def __init__(self, txt: str):
self.y: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
a = A("a")
b = B("b")
f = B("f")
j = B("j")
e = A("e")
h = B("h")
g = B("g")
a.y = e
a.p = e
b.q = e
f.q = a
j... | e" | class A:
def __init__(self, txt: str):
self.y: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
a = A("a")
b = B("b")
f = B("f")
j = B("j")
e = A("e")
h = B("h")
g = B("g")
a.y = e
a.p = e
b.q = e
f.q = a
j... | g | e | a | e | x | x | x | x | e | a | e | g | x | x | x | x | 7 | 7 | 2 | 3 | 1 |
911 | class A:
def __init__(self, txt: str):
self.q: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
a = A("a")
j = B("j")
f = A("f")
e = A("e")
i = B("i")
h = A("h")
g = B("g")
a.q = g
a.u = e
j.x = h
f.q = j
f... | j" | class A:
def __init__(self, txt: str):
self.q: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
a = A("a")
j = B("j")
f = A("f")
e = A("e")
i = B("i")
h = A("h")
g = B("g")
a.q = g
a.u = e
j.x = h
f.q = j
f... | i | h | g | f | h | g | f | j | j | f | g | h | f | g | h | i | 7 | 11 | 2 | 7 | 3 |
912 | class A:
def __init__(self, txt: str):
self.t: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
j = A("j")
b = B("b")
i = A("i")
e = A("e")
h = B("h")
f = A("f")
d = B("d")
j.t = e
j.r = h
b.q = h
i.t = e
i... | h" | class A:
def __init__(self, txt: str):
self.t: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
j = A("j")
b = B("b")
i = A("i")
e = A("e")
h = B("h")
f = A("f")
d = B("d")
j.t = e
j.r = h
b.q = h
i.t = e
i... | h | b | h | b | h | x | x | x | h | b | h | b | h | x | x | x | 7 | 11 | 2 | 4 | 3 |
913 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.q: A = None
self.txt = txt
d = A("d")
i = B("i")
e = A("e")
d.v = e
i.r = e
i.q = d
e.v = d
assert e.v.v.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.q: A = None
self.txt = txt
d = A("d")
i = B("i")
e = A("e")
d.v = e
i.r = e
i.q = d
e.v = d
assert e.v.v.v.txt == "d" | e | d | e | d | x | x | x | x | d | e | d | e | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
914 | 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.z: B = None
self.v: A = None
self.txt = txt
j = A("j")
h = B("h")
e = B("e")
b = B("b")
g = A("g")
j.s = g
j.x = b
h.z = e
h.v = ... | j" | 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.z: B = None
self.v: A = None
self.txt = txt
j = A("j")
h = B("h")
e = B("e")
b = B("b")
g = A("g")
j.s = g
j.x = b
h.z = e
h.v = ... | g | e | b | e | j | x | x | x | j | e | b | e | g | x | x | x | 5 | 10 | 2 | 4 | 1 |
915 | class A:
def __init__(self, txt: str):
self.s: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
e = A("e")
i = B("i")
h = B("h")
f = A("f")
j = A("j")
g = B("g")
e.s = h
e.v = i
i.z = f
h.z = e
f.s = g
f.v ... | f" | class A:
def __init__(self, txt: str):
self.s: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
e = A("e")
i = B("i")
h = B("h")
f = A("f")
j = A("j")
g = B("g")
e.s = h
e.v = i
i.z = f
h.z = e
f.s = g
f.v ... | g | f | g | f | g | f | x | x | f | g | f | g | f | g | x | x | 6 | 8 | 2 | 5 | 4 |
916 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.s: A = None
self.txt = txt
i = A("i")
b = B("b")
e = A("e")
i.p = b
b.y = e
b.s = e
e.p = b
assert e.p.s.p.txt == " | b" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.s: A = None
self.txt = txt
i = A("i")
b = B("b")
e = A("e")
i.p = b
b.y = e
b.s = e
e.p = b
assert e.p.s.p.txt == "b" | e | b | e | b | x | x | x | x | b | e | b | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
917 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
b = A("b")
g = B("g")
j = A("j")
i = B("i")
b.r = i
g.s = b
j.r = g
i.s = j
assert j.r.s.r.txt == " | i" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
b = A("b")
g = B("g")
j = A("j")
i = B("i")
b.r = i
g.s = b
j.r = g
i.s = j
assert j.r.s.r.txt == "i" | j | g | b | i | x | x | x | x | i | b | g | j | x | x | x | x | 4 | 4 | 2 | 3 | 0 |
918 | class A:
def __init__(self, txt: str):
self.x: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.y: A = None
self.txt = txt
i = A("i")
h = B("h")
b = A("b")
c = B("c")
f = A("f")
e = B("e")
i.x = c
i.r = b
h.o... | e" | class A:
def __init__(self, txt: str):
self.x: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.y: A = None
self.txt = txt
i = A("i")
h = B("h")
b = A("b")
c = B("c")
f = A("f")
e = B("e")
i.x = c
i.r = b
h.o... | f | b | f | b | e | x | x | x | e | b | f | b | f | x | x | x | 6 | 11 | 2 | 4 | 2 |
919 | class A:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.t: B = None
self.txt = txt
j = A("j")
e = B("e")
i = A("i")
h = B("h")
a = A("a")
j.u = e
j.q = e
e.z = h
e.t = ... | e" | class A:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.t: B = None
self.txt = txt
j = A("j")
e = B("e")
i = A("i")
h = B("h")
a = A("a")
j.u = e
j.q = e
e.z = h
e.t = ... | j | e | h | e | h | e | x | x | e | h | e | h | e | j | x | x | 5 | 7 | 2 | 5 | 3 |
920 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.r: B = None
self.txt = txt
d = A("d")
b = B("b")
j = B("j")
a = B("a")
g = B("g")
e = A("e")
d.y = e
b.p = d
b.r = g
j.p = e
j.r = b
a.p ... | e" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.r: B = None
self.txt = txt
d = A("d")
b = B("b")
j = B("j")
a = B("a")
g = B("g")
e = A("e")
d.y = e
b.p = d
b.r = g
j.p = e
j.r = b
a.p ... | e | d | e | d | e | x | x | x | e | d | e | d | e | x | x | x | 6 | 10 | 2 | 4 | 3 |
921 | class A:
def __init__(self, txt: str):
self.y: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.y: A = None
self.txt = txt
a = A("a")
d = B("d")
e = B("e")
a.y = e
a.u = e
d.t = e
d.y = a
e.t = d
e.y = a
asse... | e" | class A:
def __init__(self, txt: str):
self.y: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.y: A = None
self.txt = txt
a = A("a")
d = B("d")
e = B("e")
a.y = e
a.u = e
d.t = e
d.y = a
e.t = d
e.y = a
asse... | a | e | a | e | x | x | x | x | e | a | e | a | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
922 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
j = A("j")
d = B("d")
f = A("f")
e = A("e")
h = A("h")
b = B("b")
i = A("i")
j.x = f
d.v = e
f.x = j
e.x = i
h.x = e
b.v = e
i.x = f
as... | j" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
j = A("j")
d = B("d")
f = A("f")
e = A("e")
h = A("h")
b = B("b")
i = A("i")
j.x = f
d.v = e
f.x = j
e.x = i
h.x = e
b.v = e
i.x = f
as... | e | i | f | j | x | x | x | x | j | f | i | e | x | x | x | x | 7 | 7 | 2 | 3 | 0 |
923 | class A:
def __init__(self, txt: str):
self.r: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.x: A = None
self.txt = txt
a = A("a")
c = B("c")
j = B("j")
a.r = c
a.t = c
c.q = j
c.x = a
j.q = c
j.x = a
asse... | c" | class A:
def __init__(self, txt: str):
self.r: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.x: A = None
self.txt = txt
a = A("a")
c = B("c")
j = B("j")
a.r = c
a.t = c
c.q = j
c.x = a
j.q = c
j.x = a
asse... | a | c | a | c | x | x | x | x | c | a | c | a | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
924 | class A:
def __init__(self, txt: str):
self.w: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
d = A("d")
i = B("i")
e = A("e")
b = B("b")
g = A("g")
d.w = e
d.o = i
i.t = b
e.w = d
e.o = b
b.t = i
g.w = d... | i" | class A:
def __init__(self, txt: str):
self.w: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
d = A("d")
i = B("i")
e = A("e")
b = B("b")
g = A("g")
d.w = e
d.o = i
i.t = b
e.w = d
e.o = b
b.t = i
g.w = d... | b | i | b | i | x | x | x | x | i | b | i | b | x | x | x | x | 5 | 8 | 2 | 3 | 2 |
925 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
d = A("d")
g = B("g")
e = A("e")
i = A("i")
j = A("j")
c = A("c")
d.s = c
g.q = d
e.s = i
i.s = c
j.s = e
c.s = e
assert i.s.s.s.s.s.tx... | e" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
d = A("d")
g = B("g")
e = A("e")
i = A("i")
j = A("j")
c = A("c")
d.s = c
g.q = d
e.s = i
i.s = c
j.s = e
c.s = e
assert i.s.s.s.s.s.tx... | i | c | e | i | c | e | x | x | e | c | i | e | c | i | x | x | 6 | 6 | 2 | 5 | 3 |
926 | class A:
def __init__(self, txt: str):
self.r: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
j = A("j")
f = B("f")
g = A("g")
h = B("h")
a = B("a")
j.r = g
j.y = a
f.z = j
g.r = j
g.y = f
h.z = g
a.z = g... | g" | class A:
def __init__(self, txt: str):
self.r: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
j = A("j")
f = B("f")
g = A("g")
h = B("h")
a = B("a")
j.r = g
j.y = a
f.z = j
g.r = j
g.y = f
h.z = g
a.z = g... | h | g | f | j | g | x | x | x | g | j | f | g | h | x | x | x | 5 | 7 | 2 | 4 | 1 |
927 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
h = A("h")
f = B("f")
j = B("j")
c = A("c")
i = B("i")
d = B("d")
a = A("a")
h.x = d
f.z = i
j.z = d
c.x = i
i.z = f
d.z = i
a.x = j
as... | i" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
h = A("h")
f = B("f")
j = B("j")
c = A("c")
i = B("i")
d = B("d")
a = A("a")
h.x = d
f.z = i
j.z = d
c.x = i
i.z = f
d.z = i
a.x = j
as... | c | i | f | i | f | i | f | i | i | f | i | f | i | f | i | c | 7 | 7 | 2 | 7 | 5 |
928 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
j = A("j")
b = B("b")
h = B("h")
d = B("d")
a = B("a")
i = B("i")
c = A("c")
j.z = b
b.z = c
h.z = j
d.z = c
a.z = c
i.z = c
c.z = b
as... | b" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
j = A("j")
b = B("b")
h = B("h")
d = B("d")
a = B("a")
i = B("i")
c = A("c")
j.z = b
b.z = c
h.z = j
d.z = c
a.z = c
i.z = c
c.z = b
as... | j | b | c | b | c | b | x | x | b | c | b | c | b | j | x | x | 7 | 7 | 2 | 5 | 3 |
929 | class A:
def __init__(self, txt: str):
self.q: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.t: A = None
self.txt = txt
g = A("g")
a = B("a")
d = A("d")
c = A("c")
i = B("i")
g.q = a
g.w = a
a.y = g
a.t = ... | i" | class A:
def __init__(self, txt: str):
self.q: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.t: A = None
self.txt = txt
g = A("g")
a = B("a")
d = A("d")
c = A("c")
i = B("i")
g.q = a
g.w = a
a.y = g
a.t = ... | i | d | i | d | i | x | x | x | i | d | i | d | i | x | x | x | 5 | 6 | 2 | 4 | 3 |
930 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
e = A("e")
h = B("h")
c = B("c")
f = B("f")
j = B("j")
i = A("i")
d = B("d")
e.o = i
h.y = f
c.y = d
f.y = h
j.y = d
i.o = e
d.y = c
as... | d" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
e = A("e")
h = B("h")
c = B("c")
f = B("f")
j = B("j")
i = A("i")
d = B("d")
e.o = i
h.y = f
c.y = d
f.y = h
j.y = d
i.o = e
d.y = c
as... | j | d | c | d | x | x | x | x | d | c | d | j | x | x | x | x | 7 | 7 | 2 | 3 | 1 |
931 | 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.x: B = None
self.o: A = None
self.txt = txt
i = A("i")
j = B("j")
c = B("c")
d = B("d")
i.o = c
i.v = c
j.x = c
j.o = i
c.x = j
c... | j" | 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.x: B = None
self.o: A = None
self.txt = txt
i = A("i")
j = B("j")
c = B("c")
d = B("d")
i.o = c
i.v = c
j.x = c
j.o = i
c.x = j
c... | j | i | c | j | x | x | x | x | j | c | i | j | x | x | x | x | 4 | 7 | 2 | 3 | 1 |
932 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
f = A("f")
h = B("h")
d = B("d")
i = A("i")
c = A("c")
a = A("a")
e = A("e")
f.y = d
h.t = c
d.t = a
i.y = d
c.y = d
a.y = h
e.y = h
as... | d" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
f = A("f")
h = B("h")
d = B("d")
i = A("i")
c = A("c")
a = A("a")
e = A("e")
f.y = d
h.t = c
d.t = a
i.y = d
c.y = d
a.y = h
e.y = h
as... | h | c | d | a | h | c | d | x | d | c | h | a | d | c | h | x | 7 | 7 | 2 | 6 | 3 |
933 | class A:
def __init__(self, txt: str):
self.u: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.s: B = None
self.txt = txt
i = A("i")
j = B("j")
e = A("e")
f = A("f")
a = A("a")
c = B("c")
i.u = a
i.x = f
j.v... | c" | class A:
def __init__(self, txt: str):
self.u: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.s: B = None
self.txt = txt
i = A("i")
j = B("j")
e = A("e")
f = A("f")
a = A("a")
c = B("c")
i.u = a
i.x = f
j.v... | j | c | j | c | x | x | x | x | c | j | c | j | x | x | x | x | 6 | 9 | 2 | 3 | 2 |
934 | class A:
def __init__(self, txt: str):
self.o: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.s: A = None
self.txt = txt
a = A("a")
c = B("c")
g = A("g")
f = B("f")
d = A("d")
a.o = d
a.x = f
c.t = g
c.s = ... | f" | class A:
def __init__(self, txt: str):
self.o: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.s: A = None
self.txt = txt
a = A("a")
c = B("c")
g = A("g")
f = B("f")
d = A("d")
a.o = d
a.x = f
c.t = g
c.s = ... | a | f | d | f | d | f | x | x | f | d | f | d | f | a | x | x | 5 | 9 | 2 | 5 | 3 |
935 | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
g = A("g")
b = B("b")
e = A("e")
h = B("h")
d = B("d")
c = B("c")
f = A("f")
g.u = d
g.z = h
b.w = c
e.u = b
e... | d" | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
g = A("g")
b = B("b")
e = A("e")
h = B("h")
d = B("d")
c = B("c")
f = A("f")
g.u = d
g.z = h
b.w = c
e.u = b
e... | e | d | c | d | c | d | x | x | d | c | d | c | d | e | x | x | 7 | 10 | 2 | 5 | 3 |
936 | class A:
def __init__(self, txt: str):
self.y: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
h = A("h")
d = B("d")
f = B("f")
g = B("g")
a = A("a")
i = A("i")
h.y = f
h.v = g
d.w = f
f.w = d
g.w = f
a.y ... | d" | class A:
def __init__(self, txt: str):
self.y: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
h = A("h")
d = B("d")
f = B("f")
g = B("g")
a = A("a")
i = A("i")
h.y = f
h.v = g
d.w = f
f.w = d
g.w = f
a.y ... | i | g | f | d | x | x | x | x | d | f | g | i | x | x | x | x | 6 | 8 | 2 | 3 | 0 |
937 | class A:
def __init__(self, txt: str):
self.x: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.t: B = None
self.txt = txt
j = A("j")
c = B("c")
i = A("i")
g = B("g")
e = A("e")
j.x = g
j.u = g
c.r = j
c.t = ... | g" | class A:
def __init__(self, txt: str):
self.x: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.t: B = None
self.txt = txt
j = A("j")
c = B("c")
i = A("i")
g = B("g")
e = A("e")
j.x = g
j.u = g
c.r = j
c.t = ... | e | c | g | j | g | x | x | x | g | j | g | c | e | x | x | x | 5 | 8 | 2 | 4 | 1 |
938 | class A:
def __init__(self, txt: str):
self.p: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.r: B = None
self.txt = txt
i = A("i")
a = B("a")
f = A("f")
d = B("d")
i.p = a
i.r = f
a.y = d
a.r = d
f.p = a
f... | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.r: B = None
self.txt = txt
i = A("i")
a = B("a")
f = A("f")
d = B("d")
i.p = a
i.r = f
a.y = d
a.r = d
f.p = a
f... | a | d | a | d | a | x | x | x | a | d | a | d | a | x | x | x | 4 | 6 | 2 | 4 | 3 |
939 | class A:
def __init__(self, txt: str):
self.o: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
i = B("i")
j = B("j")
e.o = j
e.s = i
i.w = j
j.w = i
assert i.w.w.w.txt == " | j" | class A:
def __init__(self, txt: str):
self.o: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
i = B("i")
j = B("j")
e.o = j
e.s = i
i.w = j
j.w = i
assert i.w.w.w.txt == "j" | i | j | i | j | x | x | x | x | j | i | j | i | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
940 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
h = A("h")
j = B("j")
c = A("c")
b = B("b")
i = A("i")
d = B("d")
a = B("a")
h.w = d
j.t = b
c.w = b
b.t = j
i.w = a
d.t = a
a.t = b
as... | b" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
h = A("h")
j = B("j")
c = A("c")
b = B("b")
i = A("i")
d = B("d")
a = B("a")
h.w = d
j.t = b
c.w = b
b.t = j
i.w = a
d.t = a
a.t = b
as... | h | d | a | b | x | x | x | x | b | a | d | h | x | x | x | x | 7 | 7 | 2 | 3 | 0 |
941 | class A:
def __init__(self, txt: str):
self.z: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
a = A("a")
e = B("e")
j = B("j")
g = B("g")
d = A("d")
i = A("i")
a.z = i
a.r = g
e.t = g
j.t = g
g.t = e
d.z ... | g" | class A:
def __init__(self, txt: str):
self.z: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
a = A("a")
e = B("e")
j = B("j")
g = B("g")
d = A("d")
i = A("i")
a.z = i
a.r = g
e.t = g
j.t = g
g.t = e
d.z ... | g | e | g | e | g | x | x | x | g | e | g | e | g | x | x | x | 6 | 9 | 2 | 4 | 3 |
942 | class A:
def __init__(self, txt: str):
self.r: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
e = A("e")
i = B("i")
h = A("h")
g = B("g")
c = A("c")
b = B("b")
j = B("j")
e.r = j
e.o = h
i.q = e
h.r = i
h... | j" | class A:
def __init__(self, txt: str):
self.r: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
e = A("e")
i = B("i")
h = A("h")
g = B("g")
c = A("c")
b = B("b")
j = B("j")
e.r = j
e.o = h
i.q = e
h.r = i
h... | g | e | j | e | j | x | x | x | j | e | j | e | g | x | x | x | 7 | 10 | 2 | 4 | 2 |
943 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.v: A = None
self.txt = txt
i = A("i")
e = B("e")
h = A("h")
a = B("a")
j = B("j")
d = B("d")
f = A("f")
i.z = f
e.r = i
e.v = i
h.z = f
a... | h" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.v: A = None
self.txt = txt
i = A("i")
e = B("e")
h = A("h")
a = B("a")
j = B("j")
d = B("d")
f = A("f")
i.z = f
e.r = i
e.v = i
h.z = f
a... | h | f | h | f | h | f | h | x | h | f | h | f | h | f | h | x | 7 | 9 | 2 | 6 | 5 |
944 | class A:
def __init__(self, txt: str):
self.w: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
b = A("b")
c = B("c")
d = A("d")
b.w = d
b.t = d
c.t = d
d.w = b
d.t = b
assert b.t.t.t.txt == " | d" | class A:
def __init__(self, txt: str):
self.w: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
b = A("b")
c = B("c")
d = A("d")
b.w = d
b.t = d
c.t = d
d.w = b
d.t = b
assert b.t.t.t.txt == "d" | b | d | b | d | x | x | x | x | d | b | d | b | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
945 | class A:
def __init__(self, txt: str):
self.y: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
g = A("g")
e = B("e")
d = B("d")
b = B("b")
i = B("i")
h = A("h")
g.y = h
g.p = h
e.q = g
d.q = g
b.q = h
i.q ... | g" | class A:
def __init__(self, txt: str):
self.y: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
g = A("g")
e = B("e")
d = B("d")
b = B("b")
i = B("i")
h = A("h")
g.y = h
g.p = h
e.q = g
d.q = g
b.q = h
i.q ... | d | g | h | g | x | x | x | x | g | h | g | d | x | x | x | x | 6 | 6 | 2 | 3 | 1 |
946 | class A:
def __init__(self, txt: str):
self.q: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
a = A("a")
f = B("f")
d = A("d")
b = B("b")
c = B("c")
j = A("j")
i = B("i")
a.q = b
... | j" | class A:
def __init__(self, txt: str):
self.q: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
a = A("a")
f = B("f")
d = A("d")
b = B("b")
c = B("c")
j = A("j")
i = B("i")
a.q = b
... | j | f | j | c | j | x | x | x | j | c | j | f | j | x | x | x | 7 | 11 | 2 | 4 | 2 |
947 | class A:
def __init__(self, txt: str):
self.w: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
f = A("f")
i = B("i")
a = B("a")
e = A("e")
b = B("b")
f.w = b
f.t = e
i.t = e
a.t = f
e.w = b
e.t = f
b.t = e... | e" | class A:
def __init__(self, txt: str):
self.w: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
f = A("f")
i = B("i")
a = B("a")
e = A("e")
b = B("b")
f.w = b
f.t = e
i.t = e
a.t = f
e.w = b
e.t = f
b.t = e... | b | e | f | b | e | x | x | x | e | b | f | e | b | x | x | x | 5 | 7 | 2 | 4 | 2 |
948 | class A:
def __init__(self, txt: str):
self.u: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.o: A = None
self.txt = txt
j = A("j")
c = B("c")
a = B("a")
g = B("g")
b = B("b")
j.u = a
j.p = c
c.p = a
c.o = ... | c" | class A:
def __init__(self, txt: str):
self.u: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.o: A = None
self.txt = txt
j = A("j")
c = B("c")
a = B("a")
g = B("g")
b = B("b")
j.u = a
j.p = c
c.p = a
c.o = ... | g | c | a | j | c | x | x | x | c | j | a | c | g | x | x | x | 5 | 10 | 2 | 4 | 1 |
949 | class A:
def __init__(self, txt: str):
self.p: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.v: B = None
self.txt = txt
d = A("d")
h = B("h")
b = A("b")
c = B("c")
i = B("i")
d.p = b
d.u = b
h.w = i
h.v = ... | b" | class A:
def __init__(self, txt: str):
self.p: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.v: B = None
self.txt = txt
d = A("d")
h = B("h")
b = A("b")
c = B("c")
i = B("i")
d.p = b
d.u = b
h.w = i
h.v = ... | d | b | d | b | x | x | x | x | b | d | b | d | x | x | x | x | 5 | 7 | 2 | 3 | 2 |
950 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: B = None
self.txt = txt
f = A("f")
g = B("g")
e = A("e")
d = B("d")
h = B("h")
j = A("j")
b = A("b")
f.y = e
g.p = j
g.v = h
e.y = b
d... | j" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: B = None
self.txt = txt
f = A("f")
g = B("g")
e = A("e")
d = B("d")
h = B("h")
j = A("j")
b = A("b")
f.y = e
g.p = j
g.v = h
e.y = b
d... | d | b | j | b | j | x | x | x | j | b | j | b | d | x | x | x | 7 | 10 | 2 | 4 | 2 |
951 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
e = B("e")
b = B("b")
a = A("a")
h = A("h")
f.u = h
e.q = h
b.q = h
a.u = h
h.u = a
assert a.u.u.u.u.txt == " | a" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
e = B("e")
b = B("b")
a = A("a")
h = A("h")
f.u = h
e.q = h
b.q = h
a.u = h
h.u = a
assert a.u.u.u.u.txt == "a" | a | h | a | h | a | x | x | x | a | h | a | h | a | x | x | x | 5 | 5 | 2 | 4 | 3 |
952 | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
i = A("i")
b = B("b")
j = B("j")
c = A("c")
i.z = j
i.s = j
b.q = j
j.q = b
c.z = b
c.s = j
assert j.q.q.q.txt... | b" | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
i = A("i")
b = B("b")
j = B("j")
c = A("c")
i.z = j
i.s = j
b.q = j
j.q = b
c.z = b
c.s = j
assert j.q.q.q.txt... | j | b | j | b | x | x | x | x | b | j | b | j | x | x | x | x | 4 | 5 | 2 | 3 | 2 |
953 | class A:
def __init__(self, txt: str):
self.q: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
f = A("f")
d = B("d")
i = B("i")
h = A("h")
c = B("c")
f.q = h
f.t = c
d.u = i
i.u = d
h.q = f
h.t = c
c.u = i... | i" | class A:
def __init__(self, txt: str):
self.q: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
f = A("f")
d = B("d")
i = B("i")
h = A("h")
c = B("c")
f.q = h
f.t = c
d.u = i
i.u = d
h.q = f
h.t = c
c.u = i... | c | i | d | i | d | i | x | x | i | d | i | d | i | c | x | x | 5 | 7 | 2 | 5 | 3 |
954 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
b = A("b")
f = B("f")
a = A("a")
b.y = f
f.r = a
a.y = f
assert f.r.y.r.txt == " | a" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
b = A("b")
f = B("f")
a = A("a")
b.y = f
f.r = a
a.y = f
assert f.r.y.r.txt == "a" | f | a | f | a | x | x | x | x | a | f | a | f | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
955 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
d = A("d")
i = B("i")
j = B("j")
a = A("a")
g = A("g")
d.r = a
i.u = g
j.u = a
a.r = g
g.r = d
assert a.r.r.r.r.txt == " | g" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
d = A("d")
i = B("i")
j = B("j")
a = A("a")
g = A("g")
d.r = a
i.u = g
j.u = a
a.r = g
g.r = d
assert a.r.r.r.r.txt == "g" | a | g | d | a | g | x | x | x | g | a | d | g | a | x | x | x | 5 | 5 | 2 | 4 | 2 |
956 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.s: B = None
self.txt = txt
i = A("i")
e = B("e")
g = A("g")
b = A("b")
c = A("c")
h = B("h")
a = A("a")
i.s = b
e.w = h
e.s = h
g.s = c
b... | i" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.s: B = None
self.txt = txt
i = A("i")
e = B("e")
g = A("g")
b = A("b")
c = A("c")
h = B("h")
a = A("a")
i.s = b
e.w = h
e.s = h
g.s = c
b... | i | b | g | c | a | i | x | x | i | a | c | g | b | i | x | x | 7 | 7 | 2 | 5 | 1 |
957 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
g = A("g")
j = B("j")
e = B("e")
g.y = e
j.x = e
e.x = j
assert e.x.x.x.txt == " | j" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
g = A("g")
j = B("j")
e = B("e")
g.y = e
j.x = e
e.x = j
assert e.x.x.x.txt == "j" | e | j | e | j | x | x | x | x | j | e | j | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
958 | class A:
def __init__(self, txt: str):
self.z: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
g = A("g")
h = B("h")
d = A("d")
g.z = h
g.x = d
h.u = g
d.z = h
d.x = g
assert g.z.u.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
g = A("g")
h = B("h")
d = A("d")
g.z = h
g.x = d
h.u = g
d.z = h
d.x = g
assert g.z.u.z.txt == "h" | g | h | g | h | x | x | x | x | h | g | h | g | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
959 | class A:
def __init__(self, txt: str):
self.o: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.v: A = None
self.txt = txt
f = A("f")
g = B("g")
b = A("b")
a = B("a")
f.o = b
f.v = g
g.r = a
g.v = b
b.o = f
b... | f" | class A:
def __init__(self, txt: str):
self.o: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.v: A = None
self.txt = txt
f = A("f")
g = B("g")
b = A("b")
a = B("a")
f.o = b
f.v = g
g.r = a
g.v = b
b.o = f
b... | g | b | g | b | f | x | x | x | f | b | g | b | g | x | x | x | 4 | 8 | 2 | 4 | 2 |
960 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
g = A("g")
c = B("c")
b = B("b")
g.p = b
c.r = b
b.r = c
assert g.p.r.r.txt == " | b" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
g = A("g")
c = B("c")
b = B("b")
g.p = b
c.r = b
b.r = c
assert g.p.r.r.txt == "b" | g | b | c | b | x | x | x | x | b | c | b | g | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
961 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.u: A = None
self.txt = txt
c = A("c")
a = B("a")
e = A("e")
c.u = a
a.o = e
a.u = e
e.u = a
assert e.u.u.u.txt == " | a" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.u: A = None
self.txt = txt
c = A("c")
a = B("a")
e = A("e")
c.u = a
a.o = e
a.u = e
e.u = a
assert e.u.u.u.txt == "a" | e | a | e | a | x | x | x | x | a | e | a | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
962 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
b = A("b")
i = B("i")
d = B("d")
a = B("a")
g = A("g")
c = A("c")
b.p = i
i.y = d
d.y = a
a.y = i
g.p = i
c.p = a
assert i.y.y.y.txt ==... | i" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
b = A("b")
i = B("i")
d = B("d")
a = B("a")
g = A("g")
c = A("c")
b.p = i
i.y = d
d.y = a
a.y = i
g.p = i
c.p = a
assert i.y.y.y.txt ==... | i | d | a | i | x | x | x | x | i | a | d | i | x | x | x | x | 6 | 6 | 2 | 3 | 1 |
963 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.z: B = None
self.txt = txt
g = A("g")
a = B("a")
f = B("f")
b = A("b")
g.p = a
a.w = g
a.z = f
f.w = g
f.z = a
b.p = a
assert f.z.z.w.p.t... | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.z: B = None
self.txt = txt
g = A("g")
a = B("a")
f = B("f")
b = A("b")
g.p = a
a.w = g
a.z = f
f.w = g
f.z = a
b.p = a
assert f.z.z.w.p.t... | f | a | f | g | a | x | x | x | a | g | f | a | f | x | x | x | 4 | 6 | 2 | 4 | 2 |
964 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
e = B("e")
d = A("d")
h = B("h")
j.s = e
e.y = j
d.s = h
h.y = j
assert d.s.y.s.y.txt == " | j" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
e = B("e")
d = A("d")
h = B("h")
j.s = e
e.y = j
d.s = h
h.y = j
assert d.s.y.s.y.txt == "j" | d | h | j | e | j | x | x | x | j | e | j | h | d | x | x | x | 4 | 4 | 2 | 4 | 1 |
965 | class A:
def __init__(self, txt: str):
self.o: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
f = A("f")
d = B("d")
g = B("g")
i = B("i")
j = B("j")
b = A("b")
f.o = g
f.r = b
d.r = b
g.r = b
i.r = f
j.r ... | g" | class A:
def __init__(self, txt: str):
self.o: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
f = A("f")
d = B("d")
g = B("g")
i = B("i")
j = B("j")
b = A("b")
f.o = g
f.r = b
d.r = b
g.r = b
i.r = f
j.r ... | b | g | b | f | g | x | x | x | g | f | b | g | b | x | x | x | 6 | 8 | 2 | 4 | 2 |
966 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
i = A("i")
j = B("j")
d = B("d")
a = A("a")
b = A("b")
i.y = a
j.y = d
d.y = j
a.y = i
b.y = a
assert d.y.y.y.y.y.txt == " | j" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
i = A("i")
j = B("j")
d = B("d")
a = A("a")
b = A("b")
i.y = a
j.y = d
d.y = j
a.y = i
b.y = a
assert d.y.y.y.y.y.txt == "j" | d | j | d | j | d | j | x | x | j | d | j | d | j | d | x | x | 5 | 5 | 2 | 5 | 4 |
967 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
g = A("g")
j = B("j")
b = A("b")
d = B("d")
a = B("a")
g.y = a
j.o = b
b.y = a
d.o = b
a.o = b
assert g.y.o.y.o.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
g = A("g")
j = B("j")
b = A("b")
d = B("d")
a = B("a")
g.y = a
j.o = b
b.y = a
d.o = b
a.o = b
assert g.y.o.y.o.y.txt == "a" | g | a | b | a | b | a | x | x | a | b | a | b | a | g | x | x | 5 | 5 | 2 | 5 | 3 |
968 | class A:
def __init__(self, txt: str):
self.q: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.t: B = None
self.txt = txt
c = A("c")
j = B("j")
f = B("f")
d = A("d")
h = A("h")
e = A("e")
c.q = j
c.t = j
j.v... | j" | class A:
def __init__(self, txt: str):
self.q: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.t: B = None
self.txt = txt
c = A("c")
j = B("j")
f = B("f")
d = A("d")
h = A("h")
e = A("e")
c.q = j
c.t = j
j.v... | f | j | f | j | f | c | j | x | j | c | f | j | f | j | f | x | 6 | 9 | 2 | 6 | 4 |
969 | class A:
def __init__(self, txt: str):
self.y: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
a = A("a")
i = B("i")
b = B("b")
a.y = i
a.p = i
i.x = a
b.x = a
assert b.x.y.x.txt == " | a" | class A:
def __init__(self, txt: str):
self.y: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
a = A("a")
i = B("i")
b = B("b")
a.y = i
a.p = i
i.x = a
b.x = a
assert b.x.y.x.txt == "a" | b | a | i | a | x | x | x | x | a | i | a | b | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
970 | class A:
def __init__(self, txt: str):
self.z: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
i = A("i")
e = B("e")
d = A("d")
i.z = d
i.p = d
e.q = i
d.z = i
d.p = i
assert e.q.p.z.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
i = A("i")
e = B("e")
d = A("d")
i.z = d
i.p = d
e.q = i
d.z = i
d.p = i
assert e.q.p.z.txt == "i" | e | i | d | i | x | x | x | x | i | d | i | e | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
971 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
e = A("e")
c = B("c")
i = A("i")
g = B("g")
f = B("f")
e.r = i
c.u = f
i.r = e
g.u = c
f.u = g
assert i.r.r.r.txt == " | e" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
e = A("e")
c = B("c")
i = A("i")
g = B("g")
f = B("f")
e.r = i
c.u = f
i.r = e
g.u = c
f.u = g
assert i.r.r.r.txt == "e" | i | e | i | e | x | x | x | x | e | i | e | i | x | x | x | x | 5 | 5 | 2 | 3 | 2 |
972 | class A:
def __init__(self, txt: str):
self.u: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
e = A("e")
h = B("h")
d = B("d")
i = B("i")
a = A("a")
b = B("b")
e.u = a
e.s = a
h.y = e
d.y = e
i.y = e
a.u ... | e" | class A:
def __init__(self, txt: str):
self.u: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
e = A("e")
h = B("h")
d = B("d")
i = B("i")
a = A("a")
b = B("b")
e.u = a
e.s = a
h.y = e
d.y = e
i.y = e
a.u ... | b | e | a | e | a | e | x | x | e | a | e | a | e | b | x | x | 6 | 6 | 2 | 5 | 3 |
973 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
g = A("g")
j = B("j")
h = B("h")
f = A("f")
g.z = f
j.r = f
h.r = g
f.z = g
assert g.z.z.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
g = A("g")
j = B("j")
h = B("h")
f = A("f")
g.z = f
j.r = f
h.r = g
f.z = g
assert g.z.z.z.txt == "f" | g | f | g | f | x | x | x | x | f | g | f | g | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
974 | class A:
def __init__(self, txt: str):
self.x: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.txt = txt
h = A("h")
j = B("j")
g = A("g")
c = B("c")
f = A("f")
b = B("b")
i = A("i")
h.x = j
... | c" | class A:
def __init__(self, txt: str):
self.x: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.txt = txt
h = A("h")
j = B("j")
g = A("g")
c = B("c")
f = A("f")
b = B("b")
i = A("i")
h.x = j
... | b | g | b | c | j | c | x | x | c | j | c | b | g | b | x | x | 7 | 14 | 2 | 5 | 2 |
975 | class A:
def __init__(self, txt: str):
self.u: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.y: B = None
self.txt = txt
j = A("j")
e = B("e")
d = B("d")
c = A("c")
b = A("b")
j.u = b
j.p = e
e.w = j
e.y = ... | d" | class A:
def __init__(self, txt: str):
self.u: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.y: B = None
self.txt = txt
j = A("j")
e = B("e")
d = B("d")
c = A("c")
b = A("b")
j.u = b
j.p = e
e.w = j
e.y = ... | e | j | b | d | x | x | x | x | d | b | j | e | x | x | x | x | 5 | 10 | 2 | 3 | 0 |
976 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.z: A = None
self.txt = txt
j = A("j")
f = B("f")
a = B("a")
c = B("c")
e = A("e")
i = A("i")
j.w = e
f.q = e
f.z = e
a.q = j
a.z = j
c.q ... | j" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.z: A = None
self.txt = txt
j = A("j")
f = B("f")
a = B("a")
c = B("c")
e = A("e")
i = A("i")
j.w = e
f.q = e
f.z = e
a.q = j
a.z = j
c.q ... | j | e | i | j | e | i | j | x | j | i | e | j | i | e | j | x | 6 | 6 | 2 | 6 | 4 |
977 | class A:
def __init__(self, txt: str):
self.y: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
e = A("e")
a = B("a")
b = B("b")
d = A("d")
e.y = d
e.w = a
a.x = b
b.x = a
d.y = e
d.w = a
assert b.x.x.x.x.t... | b" | class A:
def __init__(self, txt: str):
self.y: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
e = A("e")
a = B("a")
b = B("b")
d = A("d")
e.y = d
e.w = a
a.x = b
b.x = a
d.y = e
d.w = a
assert b.x.x.x.x.t... | b | a | b | a | b | x | x | x | b | a | b | a | b | x | x | x | 4 | 6 | 2 | 4 | 3 |
978 | class A:
def __init__(self, txt: str):
self.s: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.q: A = None
self.txt = txt
b = A("b")
f = B("f")
d = A("d")
e = B("e")
b.s = d
b.w = e
f.r = d
f.q = d
d.s = b
d... | b" | class A:
def __init__(self, txt: str):
self.s: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.q: A = None
self.txt = txt
b = A("b")
f = B("f")
d = A("d")
e = B("e")
b.s = d
b.w = e
f.r = d
f.q = d
d.s = b
d... | e | d | b | e | b | x | x | x | b | e | b | d | e | x | x | x | 4 | 7 | 2 | 4 | 2 |
979 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.txt = txt
e = A("e")
f = B("f")
i = B("i")
h = B("h")
e.u = f
f.y = h
f.q = e
i.y = f
i.q = e
h.y = f
h.q = e
assert h.q... | f" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.txt = txt
e = A("e")
f = B("f")
i = B("i")
h = B("h")
e.u = f
f.y = h
f.q = e
i.y = f
i.q = e
h.y = f
h.q = e
assert h.q... | h | e | f | e | f | x | x | x | f | e | f | e | h | x | x | x | 4 | 7 | 2 | 4 | 2 |
980 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
b = A("b")
f = B("f")
d = B("d")
e = A("e")
i = B("i")
c = B("c")
j = A("j")
b.o = f
f.x = i
d.x = i
e.o = d
i.x = d
c.x = f
j.o = f
as... | i" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
b = A("b")
f = B("f")
d = B("d")
e = A("e")
i = B("i")
c = B("c")
j = A("j")
b.o = f
f.x = i
d.x = i
e.o = d
i.x = d
c.x = f
j.o = f
as... | d | i | d | i | x | x | x | x | i | d | i | d | x | x | x | x | 7 | 7 | 2 | 3 | 2 |
981 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.r: A = None
self.txt = txt
e = A("e")
j = B("j")
a = A("a")
b = B("b")
d = B("d")
e.u = a
j.p = d
j.r = a
a.u = e
b.p = j
b.r = a
d.p = j... | e" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.r: A = None
self.txt = txt
e = A("e")
j = B("j")
a = A("a")
b = B("b")
d = B("d")
e.u = a
j.p = d
j.r = a
a.u = e
b.p = j
b.r = a
d.p = j... | d | j | d | a | e | x | x | x | e | a | d | j | d | x | x | x | 5 | 8 | 2 | 4 | 1 |
982 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
f = A("f")
e = B("e")
h = B("h")
j = B("j")
g = A("g")
f.q = h
e.p = g
h.p = f
j.p = g
g.q = e
assert h.p.q.p.q.txt == " | h" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
f = A("f")
e = B("e")
h = B("h")
j = B("j")
g = A("g")
f.q = h
e.p = g
h.p = f
j.p = g
g.q = e
assert h.p.q.p.q.txt == "h" | h | f | h | f | h | x | x | x | h | f | h | f | h | x | x | x | 5 | 5 | 2 | 4 | 3 |
983 | class A:
def __init__(self, txt: str):
self.y: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
a = A("a")
e = B("e")
b = B("b")
c = A("c")
h = A("h")
a.y = e
a.o = e
e.y = b
b.y = e
c.y = b
c.o = b
h.y = e... | e" | class A:
def __init__(self, txt: str):
self.y: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
a = A("a")
e = B("e")
b = B("b")
c = A("c")
h = A("h")
a.y = e
a.o = e
e.y = b
b.y = e
c.y = b
c.o = b
h.y = e... | e | b | e | b | e | x | x | x | e | b | e | b | e | x | x | x | 5 | 6 | 2 | 4 | 3 |
984 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.w: B = None
self.txt = txt
e = A("e")
j = B("j")
h = B("h")
e.y = h
j.o = h
j.w = h
h.o = j
h.w = j
assert h.w.w.w.txt == " | j" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.w: B = None
self.txt = txt
e = A("e")
j = B("j")
h = B("h")
e.y = h
j.o = h
j.w = h
h.o = j
h.w = j
assert h.w.w.w.txt == "j" | h | j | h | j | x | x | x | x | j | h | j | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
985 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
j = A("j")
a = B("a")
c = A("c")
d = B("d")
g = A("g")
e = B("e")
i = B("i")
j.v = d
a.t = j
c.v = a
d.t = c
g.v = d
e.t = g
i.t = j
as... | d" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
j = A("j")
a = B("a")
c = A("c")
d = B("d")
g = A("g")
e = B("e")
i = B("i")
j.v = d
a.t = j
c.v = a
d.t = c
g.v = d
e.t = g
i.t = j
as... | j | d | c | a | j | d | x | x | d | j | a | c | d | j | x | x | 7 | 7 | 2 | 5 | 2 |
986 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.y: A = None
self.txt = txt
c = A("c")
h = B("h")
e = A("e")
i = B("i")
c.s = e
h.r = i
h.y = c
e.s = c
i.r = h
i.y = e
assert c.s.s.s.s.t... | c" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.y: A = None
self.txt = txt
c = A("c")
h = B("h")
e = A("e")
i = B("i")
c.s = e
h.r = i
h.y = c
e.s = c
i.r = h
i.y = e
assert c.s.s.s.s.t... | c | e | c | e | c | x | x | x | c | e | c | e | c | x | x | x | 4 | 6 | 2 | 4 | 3 |
987 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.y: A = None
self.txt = txt
i = A("i")
e = B("e")
j = B("j")
i.s = e
e.s = i
e.y = i
j.s = i
j.y = i
assert j.y.s.s.txt == " | i" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.y: A = None
self.txt = txt
i = A("i")
e = B("e")
j = B("j")
i.s = e
e.s = i
e.y = i
j.s = i
j.y = i
assert j.y.s.s.txt == "i" | j | i | e | i | x | x | x | x | i | e | i | j | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
988 | class A:
def __init__(self, txt: str):
self.y: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
e = B("e")
g = A("g")
c.y = g
c.o = g
e.s = g
g.y = c
g.o = c
assert c.y.y.y.txt == " | g" | class A:
def __init__(self, txt: str):
self.y: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
e = B("e")
g = A("g")
c.y = g
c.o = g
e.s = g
g.y = c
g.o = c
assert c.y.y.y.txt == "g" | c | g | c | g | x | x | x | x | g | c | g | c | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
989 | class A:
def __init__(self, txt: str):
self.x: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.t: A = None
self.txt = txt
h = A("h")
j = B("j")
e = B("e")
a = B("a")
d = A("d")
g = B("g")
b = A("b")
h.x = b
... | b" | class A:
def __init__(self, txt: str):
self.x: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.t: A = None
self.txt = txt
h = A("h")
j = B("j")
e = B("e")
a = B("a")
d = A("d")
g = B("g")
b = A("b")
h.x = b
... | j | g | e | a | b | x | x | x | b | a | e | g | j | x | x | x | 7 | 13 | 2 | 4 | 0 |
990 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
a = A("a")
b = B("b")
h = B("h")
e = B("e")
d = B("d")
a.z = b
b.t = d
h.t = d
e.t = h
d.t = h
assert d.t.t.t.t.t.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
a = A("a")
b = B("b")
h = B("h")
e = B("e")
d = B("d")
a.z = b
b.t = d
h.t = d
e.t = h
d.t = h
assert d.t.t.t.t.t.txt == "h" | d | h | d | h | d | h | x | x | h | d | h | d | h | d | x | x | 5 | 5 | 2 | 5 | 4 |
991 | class A:
def __init__(self, txt: str):
self.w: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: B = None
self.txt = txt
f = A("f")
b = B("b")
c = B("c")
h = A("h")
j = B("j")
a = A("a")
f.w = j
f.z = h
b.o... | b" | class A:
def __init__(self, txt: str):
self.w: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: B = None
self.txt = txt
f = A("f")
b = B("b")
c = B("c")
h = A("h")
j = B("j")
a = A("a")
f.w = j
f.z = h
b.o... | c | h | f | h | j | b | x | x | b | j | h | f | h | c | x | x | 6 | 12 | 2 | 5 | 1 |
992 | class A:
def __init__(self, txt: str):
self.u: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
f = A("f")
j = B("j")
e = A("e")
c = B("c")
f.u = e
f.v = e
j.y = f
e.u = f
e.v = f
c.y = f
assert j.y.u.v.v.t... | e" | class A:
def __init__(self, txt: str):
self.u: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
f = A("f")
j = B("j")
e = A("e")
c = B("c")
f.u = e
f.v = e
j.y = f
e.u = f
e.v = f
c.y = f
assert j.y.u.v.v.t... | j | f | e | f | e | x | x | x | e | f | e | f | j | x | x | x | 4 | 4 | 2 | 4 | 2 |
993 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.txt = txt
b = A("b")
f = B("f")
a = B("a")
g = A("g")
h = A("h")
i = B("i")
c = B("c")
b.p = f
f.q = a
f.z = b
a.q = i
a... | f" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.txt = txt
b = A("b")
f = B("f")
a = B("a")
g = A("g")
h = A("h")
i = B("i")
c = B("c")
b.p = f
f.q = a
f.z = b
a.q = i
a... | c | a | g | i | b | f | x | x | f | b | i | g | a | c | x | x | 7 | 11 | 2 | 5 | 0 |
994 | class A:
def __init__(self, txt: str):
self.w: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: B = None
self.txt = txt
h = A("h")
j = B("j")
f = B("f")
h.w = j
h.v = f
j.t = h
j.w = f
f.t = h
f.w = j
asse... | j" | class A:
def __init__(self, txt: str):
self.w: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: B = None
self.txt = txt
h = A("h")
j = B("j")
f = B("f")
h.w = j
h.v = f
j.t = h
j.w = f
f.t = h
f.w = j
asse... | f | j | h | j | x | x | x | x | j | h | j | f | x | x | x | x | 3 | 6 | 2 | 3 | 1 |
995 | class A:
def __init__(self, txt: str):
self.q: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
g = A("g")
e = B("e")
c = B("c")
g.q = c
g.w = e
e.w = c
c.w = e
assert e.w.w.w.txt == " | c" | class A:
def __init__(self, txt: str):
self.q: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
g = A("g")
e = B("e")
c = B("c")
g.q = c
g.w = e
e.w = c
c.w = e
assert e.w.w.w.txt == "c" | e | c | e | c | x | x | x | x | c | e | c | e | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
996 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: B = None
self.txt = txt
j = A("j")
b = B("b")
a = A("a")
g = B("g")
d = B("d")
e = A("e")
f = B("f")
j.s = a
b.x = j
b.s = d
a.s = e
g... | a" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: B = None
self.txt = txt
j = A("j")
b = B("b")
a = A("a")
g = B("g")
d = B("d")
e = A("e")
f = B("f")
j.s = a
b.x = j
b.s = d
a.s = e
g... | f | j | a | e | a | x | x | x | a | e | a | j | f | x | x | x | 7 | 11 | 2 | 4 | 1 |
997 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
b = A("b")
j = B("j")
i = A("i")
h = A("h")
a = B("a")
c = A("c")
d = A("d")
b.u = a
j.w = c
i.u = a
h.u = a
a.w = c
c.u = a
d.u = a
as... | a" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
b = A("b")
j = B("j")
i = A("i")
h = A("h")
a = B("a")
c = A("c")
d = A("d")
b.u = a
j.w = c
i.u = a
h.u = a
a.w = c
c.u = a
d.u = a
as... | i | a | c | a | x | x | x | x | a | c | a | i | x | x | x | x | 7 | 7 | 2 | 3 | 1 |
998 | class A:
def __init__(self, txt: str):
self.z: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.t: B = None
self.txt = txt
b = A("b")
f = B("f")
h = A("h")
d = A("d")
g = B("g")
i = A("i")
e = A("e")
b.z = h
... | g" | class A:
def __init__(self, txt: str):
self.z: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.t: B = None
self.txt = txt
b = A("b")
f = B("f")
h = A("h")
d = A("d")
g = B("g")
i = A("i")
e = A("e")
b.z = h
... | d | f | g | d | f | g | x | x | g | f | d | g | f | d | x | x | 7 | 14 | 2 | 5 | 3 |
999 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.z: A = None
self.txt = txt
c = A("c")
d = B("d")
f = A("f")
a = B("a")
b = A("b")
c.p = f
d.y = f
d.z = c
f.p = c
a.y = c
a.z = c
b.p = c... | c" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.z: A = None
self.txt = txt
c = A("c")
d = B("d")
f = A("f")
a = B("a")
b = A("b")
c.p = f
d.y = f
d.z = c
f.p = c
a.y = c
a.z = c
b.p = c... | b | c | f | c | x | x | x | x | c | f | c | b | x | x | x | x | 5 | 6 | 2 | 3 | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.