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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
800 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
g = A("g")
f = B("f")
i = B("i")
d = A("d")
j = B("j")
g.v = j
f.w = j
i.w = f
d.v = j
j.w = f
assert d.v.w.w.txt == " | j" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
g = A("g")
f = B("f")
i = B("i")
d = A("d")
j = B("j")
g.v = j
f.w = j
i.w = f
d.v = j
j.w = f
assert d.v.w.w.txt == "j" | d | j | f | j | x | x | x | x | j | f | j | d | x | x | x | x | 5 | 5 | 2 | 3 | 1 |
801 | class A:
def __init__(self, txt: str):
self.r: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
g = A("g")
d = B("d")
i = A("i")
a = A("a")
c = B("c")
g.r = a
g.z = d
d.t = g
i.r = a
i.z = c
a.r = g
a.z = c... | d" | class A:
def __init__(self, txt: str):
self.r: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
g = A("g")
d = B("d")
i = A("i")
a = A("a")
c = B("c")
g.r = a
g.z = d
d.t = g
i.r = a
i.z = c
a.r = g
a.z = c... | a | g | d | g | d | x | x | x | d | g | d | g | a | x | x | x | 5 | 8 | 2 | 4 | 2 |
802 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.z: A = None
self.txt = txt
g = A("g")
c = B("c")
d = B("d")
a = A("a")
g.p = d
c.u = a
c.z = g
d.u = a
d.z = a
a.p = c
assert d.z.p.u.txt... | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.z: A = None
self.txt = txt
g = A("g")
c = B("c")
d = B("d")
a = A("a")
g.p = d
c.u = a
c.z = g
d.u = a
d.z = a
a.p = c
assert d.z.p.u.txt... | d | a | c | a | x | x | x | x | a | c | a | d | x | x | x | x | 4 | 5 | 2 | 3 | 1 |
803 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.r: A = None
self.txt = txt
g = A("g")
f = B("f")
j = B("j")
g.p = f
f.t = g
f.r = g
j.t = g
j.r = g
assert g.p.r.p.txt == " | f" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.r: A = None
self.txt = txt
g = A("g")
f = B("f")
j = B("j")
g.p = f
f.t = g
f.r = g
j.t = g
j.r = g
assert g.p.r.p.txt == "f" | g | f | g | f | x | x | x | x | f | g | f | g | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
804 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.y: A = None
self.txt = txt
h = A("h")
i = B("i")
a = A("a")
d = B("d")
h.o = a
i.u = d
i.y = a
a.o = h
d.u = i
d.y = a
assert a.o.o.o.o.t... | a" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.y: A = None
self.txt = txt
h = A("h")
i = B("i")
a = A("a")
d = B("d")
h.o = a
i.u = d
i.y = a
a.o = h
d.u = i
d.y = a
assert a.o.o.o.o.t... | a | h | a | h | a | x | x | x | a | h | a | h | a | x | x | x | 4 | 6 | 2 | 4 | 3 |
805 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.txt = txt
a = A("a")
f = B("f")
d = A("d")
e = B("e")
h = A("h")
i = B("i")
j = A("j")
a.y = e
f.s = a
f.q = j
d.y = e
e... | j" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.txt = txt
a = A("a")
f = B("f")
d = A("d")
e = B("e")
h = A("h")
i = B("i")
j = A("j")
a.y = e
f.s = a
f.q = j
d.y = e
e... | i | h | f | j | x | x | x | x | j | f | h | i | x | x | x | x | 7 | 9 | 2 | 3 | 0 |
806 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
h = A("h")
b = B("b")
c = B("c")
i = A("i")
h.p = i
b.s = i
c.s = i
i.p = h
assert h.p.p.p.txt == " | i" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
h = A("h")
b = B("b")
c = B("c")
i = A("i")
h.p = i
b.s = i
c.s = i
i.p = h
assert h.p.p.p.txt == "i" | h | i | h | i | x | x | x | x | i | h | i | h | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
807 | class A:
def __init__(self, txt: str):
self.t: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.q: A = None
self.txt = txt
f = A("f")
e = B("e")
h = B("h")
j = B("j")
g = A("g")
b = B("b")
f.t = b
f.x = g
e.u... | j" | class A:
def __init__(self, txt: str):
self.t: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.q: A = None
self.txt = txt
f = A("f")
e = B("e")
h = B("h")
j = B("j")
g = A("g")
b = B("b")
f.t = b
f.x = g
e.u... | j | h | e | j | x | x | x | x | j | e | h | j | x | x | x | x | 6 | 12 | 2 | 3 | 1 |
808 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.p: A = None
self.txt = txt
d = A("d")
a = B("a")
j = A("j")
e = B("e")
d.z = j
d.y = j
a.t = e
a.p = j
j.z = d
j... | j" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.p: A = None
self.txt = txt
d = A("d")
a = B("a")
j = A("j")
e = B("e")
d.z = j
d.y = j
a.t = e
a.p = j
j.z = d
j... | a | e | a | j | x | x | x | x | j | a | e | a | x | x | x | x | 4 | 6 | 2 | 3 | 1 |
809 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.u: A = None
self.txt = txt
a = A("a")
f = B("f")
j = B("j")
b = A("b")
c = A("c")
h = B("h")
d = B("d")
a.u = j
f.t = c
f.u = c
j.t = c
j... | j" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.u: A = None
self.txt = txt
a = A("a")
f = B("f")
j = B("j")
b = A("b")
c = A("c")
h = B("h")
d = B("d")
a.u = j
f.t = c
f.u = c
j.t = c
j... | a | j | b | j | x | x | x | x | j | b | j | a | x | x | x | x | 7 | 10 | 2 | 3 | 1 |
810 | 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.txt = txt
e = A("e")
g = B("g")
d = B("d")
e.y = g
g.o = d
d.o = g
assert d.o.o.o.txt == " | g" | 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.txt = txt
e = A("e")
g = B("g")
d = B("d")
e.y = g
g.o = d
d.o = g
assert d.o.o.o.txt == "g" | d | g | d | g | x | x | x | x | g | d | g | d | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
811 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.p: A = None
self.txt = txt
g = A("g")
b = B("b")
a = B("a")
j = A("j")
h = B("h")
c = A("c")
g.x = j
b.t = j
b.p = c
a.t = g
a.p = c
j.x ... | j" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.p: A = None
self.txt = txt
g = A("g")
b = B("b")
a = B("a")
j = A("j")
h = B("h")
c = A("c")
g.x = j
b.t = j
b.p = c
a.t = g
a.p = c
j.x ... | c | j | c | j | x | x | x | x | j | c | j | c | x | x | x | x | 6 | 9 | 2 | 3 | 2 |
812 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.r: A = None
self.txt = txt
a = A("a")
e = B("e")
g = B("g")
f = A("f")
b = B("b")
j = A("j")
a.s = e
e.u = b
e.r = f
g.u = b
g.r = j
f.s ... | b" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.r: A = None
self.txt = txt
a = A("a")
e = B("e")
g = B("g")
f = A("f")
b = B("b")
j = A("j")
a.s = e
e.u = b
e.r = f
g.u = b
g.r = j
f.s ... | a | e | f | b | g | b | x | x | b | g | b | f | e | a | x | x | 6 | 9 | 2 | 5 | 1 |
813 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.o: B = None
self.txt = txt
b = A("b")
c = B("c")
d = B("d")
i = A("i")
f = A("f")
b.q = d
c.q = b
c.o = d
d.q = b
d.o = c
i.q = d
f.q = c... | c" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.o: B = None
self.txt = txt
b = A("b")
c = B("c")
d = B("d")
i = A("i")
f = A("f")
b.q = d
c.q = b
c.o = d
d.q = b
d.o = c
i.q = d
f.q = c... | d | c | d | c | x | x | x | x | c | d | c | d | x | x | x | x | 5 | 7 | 2 | 3 | 2 |
814 | 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.u: A = None
self.txt = txt
j = A("j")
b = B("b")
i = A("i")
c = A("c")
j.y = c
j.o = b
b.u = j
i.y = j
i.o = b
c.y = i
c.o = b
assert c.o... | b" | 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.u: A = None
self.txt = txt
j = A("j")
b = B("b")
i = A("i")
c = A("c")
j.y = c
j.o = b
b.u = j
i.y = j
i.o = b
c.y = i
c.o = b
assert c.o... | c | b | j | c | b | x | x | x | b | c | j | b | c | x | x | x | 4 | 7 | 2 | 4 | 2 |
815 | class A:
def __init__(self, txt: str):
self.p: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: A = None
self.txt = txt
a = A("a")
g = B("g")
e = A("e")
a.p = e
a.r = e
g.x = a
g.s = a
e.p = a
e.r = a
asse... | a" | class A:
def __init__(self, txt: str):
self.p: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: A = None
self.txt = txt
a = A("a")
g = B("g")
e = A("e")
a.p = e
a.r = e
g.x = a
g.s = a
e.p = a
e.r = a
asse... | g | a | e | a | x | x | x | x | a | e | a | g | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
816 | class A:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
g = A("g")
e = B("e")
h = A("h")
g.z = h
g.v = h
e.o = g
h.z = g
h.v = g
assert e.o.v.v.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
g = A("g")
e = B("e")
h = A("h")
g.z = h
g.v = h
e.o = g
h.z = g
h.v = g
assert e.o.v.v.txt == "g" | e | g | h | g | x | x | x | x | g | h | g | e | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
817 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.t: A = None
self.txt = txt
h = A("h")
d = B("d")
j = B("j")
c = A("c")
i = A("i")
h.o = d
d.v = c
d.t = h
j.v = c
j.t = h
c.o = d
i.o = d... | h" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.t: A = None
self.txt = txt
h = A("h")
d = B("d")
j = B("j")
c = A("c")
i = A("i")
h.o = d
d.v = c
d.t = h
j.v = c
j.t = h
c.o = d
i.o = d... | j | h | d | c | d | h | x | x | h | d | c | d | h | j | x | x | 5 | 7 | 2 | 5 | 2 |
818 | class A:
def __init__(self, txt: str):
self.q: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.y: A = None
self.txt = txt
e = A("e")
g = B("g")
c = A("c")
e.q = g
e.p = c
g.v = e
g.y = c
c.q = g
c.p = e
asse... | g" | class A:
def __init__(self, txt: str):
self.q: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.y: A = None
self.txt = txt
e = A("e")
g = B("g")
c = A("c")
e.q = g
e.p = c
g.v = e
g.y = c
c.q = g
c.p = e
asse... | g | e | c | g | x | x | x | x | g | c | e | g | x | x | x | x | 3 | 6 | 2 | 3 | 1 |
819 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.x: A = None
self.txt = txt
b = A("b")
a = B("a")
e = A("e")
b.t = e
a.s = e
a.x = e
e.t = b
assert e.t.t.t.txt == " | b" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.x: A = None
self.txt = txt
b = A("b")
a = B("a")
e = A("e")
b.t = e
a.s = e
a.x = e
e.t = b
assert e.t.t.t.txt == "b" | e | b | e | b | x | x | x | x | b | e | b | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
820 | class A:
def __init__(self, txt: str):
self.t: B = None
self.v: 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")
g = B("g")
b = A("b")
c = A("c")
a = A("a")
f.t = g
f.v = b
i.t = b
g.t = b
b.t = i
b.v ... | g" | class A:
def __init__(self, txt: str):
self.t: B = None
self.v: 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")
g = B("g")
b = A("b")
c = A("c")
a = A("a")
f.t = g
f.v = b
i.t = b
g.t = b
b.t = i
b.v ... | a | b | f | g | x | x | x | x | g | f | b | a | x | x | x | x | 6 | 10 | 2 | 3 | 0 |
821 | class A:
def __init__(self, txt: str):
self.s: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.w: A = None
self.txt = txt
j = A("j")
c = B("c")
b = B("b")
d = A("d")
f = B("f")
j.s = d
j.x = d
c.u = b
c.w = ... | d" | class A:
def __init__(self, txt: str):
self.s: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.w: A = None
self.txt = txt
j = A("j")
c = B("c")
b = B("b")
d = A("d")
f = B("f")
j.s = d
j.x = d
c.u = b
c.w = ... | j | d | j | d | x | x | x | x | d | j | d | j | x | x | x | x | 5 | 8 | 2 | 3 | 2 |
822 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
d = A("d")
j = B("j")
i = B("i")
c = A("c")
d.y = i
j.y = i
i.y = j
c.y = j
assert i.y.y.y.txt == " | j" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
d = A("d")
j = B("j")
i = B("i")
c = A("c")
d.y = i
j.y = i
i.y = j
c.y = j
assert i.y.y.y.txt == "j" | i | j | i | j | x | x | x | x | j | i | j | i | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
823 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
f = A("f")
a = B("a")
b = A("b")
h = B("h")
f.p = b
a.z = h
b.p = f
h.z = a
assert b.p.p.p.p.txt == " | b" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
f = A("f")
a = B("a")
b = A("b")
h = B("h")
f.p = b
a.z = h
b.p = f
h.z = a
assert b.p.p.p.p.txt == "b" | b | f | b | f | b | x | x | x | b | f | b | f | b | x | x | x | 4 | 4 | 2 | 4 | 3 |
824 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
f = A("f")
d = B("d")
c = B("c")
i = B("i")
j = B("j")
h = B("h")
f.q = c
d.y = f
c.y = f
i.y = f
j.y = f
h.y = f
assert f.q.y.q.y.q.tx... | c" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
f = A("f")
d = B("d")
c = B("c")
i = B("i")
j = B("j")
h = B("h")
f.q = c
d.y = f
c.y = f
i.y = f
j.y = f
h.y = f
assert f.q.y.q.y.q.tx... | f | c | f | c | f | c | x | x | c | f | c | f | c | f | x | x | 6 | 6 | 2 | 5 | 4 |
825 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.r: A = None
self.txt = txt
f = A("f")
e = B("e")
a = A("a")
j = B("j")
d = B("d")
g = B("g")
f.r = d
e.w = f
e.r = f
a.r = j
j.w = f
j.r ... | f" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.r: A = None
self.txt = txt
f = A("f")
e = B("e")
a = A("a")
j = B("j")
d = B("d")
g = B("g")
f.r = d
e.w = f
e.r = f
a.r = j
j.w = f
j.r ... | e | f | d | a | j | f | x | x | f | j | a | d | f | e | x | x | 6 | 7 | 2 | 5 | 1 |
826 | class A:
def __init__(self, txt: str):
self.z: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
f = A("f")
a = B("a")
b = B("b")
f.z = a
f.o = b
a.o = b
b.o = a
assert f.z.o.o.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
f = A("f")
a = B("a")
b = B("b")
f.z = a
f.o = b
a.o = b
b.o = a
assert f.z.o.o.txt == "a" | f | a | b | a | x | x | x | x | a | b | a | f | x | x | x | x | 3 | 4 | 2 | 3 | 1 |
827 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.t: A = None
self.txt = txt
d = A("d")
c = B("c")
a = B("a")
d.v = c
c.z = d
c.t = d
a.z = d
a.t = d
assert d.v.z.v.txt == " | c" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.t: A = None
self.txt = txt
d = A("d")
c = B("c")
a = B("a")
d.v = c
c.z = d
c.t = d
a.z = d
a.t = d
assert d.v.z.v.txt == "c" | d | c | d | c | x | x | x | x | c | d | c | d | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
828 | class A:
def __init__(self, txt: str):
self.t: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.w: B = None
self.txt = txt
i = A("i")
d = B("d")
c = A("c")
f = A("f")
e = B("e")
i.t = d
i.q = f
d.v = f
d.w = ... | f" | class A:
def __init__(self, txt: str):
self.t: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.w: B = None
self.txt = txt
i = A("i")
d = B("d")
c = A("c")
f = A("f")
e = B("e")
i.t = d
i.q = f
d.v = f
d.w = ... | e | d | f | i | d | f | x | x | f | d | i | f | d | e | x | x | 5 | 10 | 2 | 5 | 2 |
829 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
j = B("j")
f = B("f")
i = B("i")
a.r = j
j.x = f
f.x = j
i.x = j
assert i.x.x.x.txt == " | j" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
j = B("j")
f = B("f")
i = B("i")
a.r = j
j.x = f
f.x = j
i.x = j
assert i.x.x.x.txt == "j" | i | j | f | j | x | x | x | x | j | f | j | i | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
830 | class A:
def __init__(self, txt: str):
self.s: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
j = A("j")
a = B("a")
e = A("e")
h = A("h")
d = A("d")
c = B("c")
i = B("i")
j.s = e
j.p = c
a.y = c
e.s = j
e... | c" | class A:
def __init__(self, txt: str):
self.s: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
j = A("j")
a = B("a")
e = A("e")
h = A("h")
d = A("d")
c = B("c")
i = B("i")
j.s = e
j.p = c
a.y = c
e.s = j
e... | h | c | a | c | a | c | x | x | c | a | c | a | c | h | x | x | 7 | 11 | 2 | 5 | 3 |
831 | class A:
def __init__(self, txt: str):
self.v: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
h = A("h")
a = B("a")
c = A("c")
d = A("d")
e = A("e")
f = A("f")
j = B("j")
h.v = j
h.u = f
a.t = e
c.v = j
c... | j" | class A:
def __init__(self, txt: str):
self.v: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
h = A("h")
a = B("a")
c = A("c")
d = A("d")
e = A("e")
f = A("f")
j = B("j")
h.v = j
h.u = f
a.t = e
c.v = j
c... | d | c | j | c | j | x | x | x | j | c | j | c | d | x | x | x | 7 | 12 | 2 | 4 | 2 |
832 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.x: B = None
self.txt = txt
g = A("g")
h = B("h")
i = A("i")
c = B("c")
b = B("b")
j = B("j")
g.p = i
h.v = b
h.x = b
i.p = g
c.v = j
c.x ... | h" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.x: B = None
self.txt = txt
g = A("g")
h = B("h")
i = A("i")
c = B("c")
b = B("b")
j = B("j")
g.p = i
h.v = b
h.x = b
i.p = g
c.v = j
c.x ... | j | h | b | h | x | x | x | x | h | b | h | j | x | x | x | x | 6 | 7 | 2 | 3 | 1 |
833 | class A:
def __init__(self, txt: str):
self.y: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.v: B = None
self.txt = txt
b = A("b")
j = B("j")
i = A("i")
d = B("d")
e = A("e")
h = B("h")
b.y = d
b.x = d
j.p... | d" | class A:
def __init__(self, txt: str):
self.y: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.v: B = None
self.txt = txt
b = A("b")
j = B("j")
i = A("i")
d = B("d")
e = A("e")
h = B("h")
b.y = d
b.x = d
j.p... | d | h | j | d | x | x | x | x | d | j | h | d | x | x | x | x | 6 | 9 | 2 | 3 | 1 |
834 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
i = A("i")
g = B("g")
d = B("d")
c = A("c")
i.u = d
g.x = d
d.x = g
c.u = d
assert g.x.x.x.x.txt == " | g" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
i = A("i")
g = B("g")
d = B("d")
c = A("c")
i.u = d
g.x = d
d.x = g
c.u = d
assert g.x.x.x.x.txt == "g" | g | d | g | d | g | x | x | x | g | d | g | d | g | x | x | x | 4 | 4 | 2 | 4 | 3 |
835 | class A:
def __init__(self, txt: str):
self.p: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
d = A("d")
j = B("j")
e = B("e")
b = A("b")
c = A("c")
f = A("f")
g = A("g")
d.p = f
d.z = j
j.r = d
e.r = b
b... | d" | class A:
def __init__(self, txt: str):
self.p: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
d = A("d")
j = B("j")
e = B("e")
b = A("b")
c = A("c")
f = A("f")
g = A("g")
d.p = f
d.z = j
j.r = d
e.r = b
b... | j | d | f | g | e | b | j | d | d | j | b | e | g | f | d | j | 7 | 12 | 2 | 7 | 2 |
836 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
d = A("d")
c = B("c")
b = B("b")
i = A("i")
e = A("e")
h = B("h")
d.t = e
c.x = h
b.x = c
i.t = e
e.t = d
h.x = c
assert d.t.t.t.t.t.tx... | e" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
d = A("d")
c = B("c")
b = B("b")
i = A("i")
e = A("e")
h = B("h")
d.t = e
c.x = h
b.x = c
i.t = e
e.t = d
h.x = c
assert d.t.t.t.t.t.tx... | d | e | d | e | d | e | x | x | e | d | e | d | e | d | x | x | 6 | 6 | 2 | 5 | 4 |
837 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.o: A = None
self.txt = txt
d = A("d")
j = B("j")
i = A("i")
b = A("b")
g = B("g")
e = B("e")
h = A("h")
d.y = b
j.s = e
j.o = b
i.y = d
b... | d" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.o: A = None
self.txt = txt
d = A("d")
j = B("j")
i = A("i")
b = A("b")
g = B("g")
e = B("e")
h = A("h")
d.y = b
j.s = e
j.o = b
i.y = d
b... | h | i | d | b | i | d | x | x | d | i | b | d | i | h | x | x | 7 | 10 | 2 | 5 | 2 |
838 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
c = A("c")
e = B("e")
j = A("j")
a = A("a")
h = A("h")
b = B("b")
c.y = b
e.q = a
j.y = b
a.y = b
h.y = e
b.q = a
assert e.q.y.q.y.q.y.... | b" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
c = A("c")
e = B("e")
j = A("j")
a = A("a")
h = A("h")
b = B("b")
c.y = b
e.q = a
j.y = b
a.y = b
h.y = e
b.q = a
assert e.q.y.q.y.q.y.... | e | a | b | a | b | a | b | x | b | a | b | a | b | a | e | x | 6 | 6 | 2 | 6 | 4 |
839 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.w: B = None
self.txt = txt
g = A("g")
e = B("e")
c = A("c")
h = A("h")
b = B("b")
g.t = c
e.q = h
e.w = b
c.t = h
h.t = g
b.q = h
b.w = e... | h" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.w: B = None
self.txt = txt
g = A("g")
e = B("e")
c = A("c")
h = A("h")
b = B("b")
g.t = c
e.q = h
e.w = b
c.t = h
h.t = g
b.q = h
b.w = e... | b | h | g | c | h | x | x | x | h | c | g | h | b | x | x | x | 5 | 7 | 2 | 4 | 1 |
840 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.x: A = None
self.txt = txt
i = A("i")
b = B("b")
e = B("e")
a = B("a")
c = B("c")
f = A("f")
i.p = f
b.v = f
b.x = f
e.v = i
e.x = i
a.v ... | f" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.x: A = None
self.txt = txt
i = A("i")
b = B("b")
e = B("e")
a = B("a")
c = B("c")
f = A("f")
i.p = f
b.v = f
b.x = f
e.v = i
e.x = i
a.v ... | e | i | f | i | f | i | f | x | f | i | f | i | f | i | e | x | 6 | 7 | 2 | 6 | 4 |
841 | 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.y: A = None
self.u: A = None
self.txt = txt
g = A("g")
b = B("b")
i = A("i")
d = A("d")
f = A("f")
c = B("c")
j = A("j")
g.w = c
... | d" | 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.y: A = None
self.u: A = None
self.txt = txt
g = A("g")
b = B("b")
i = A("i")
d = A("d")
f = A("f")
c = B("c")
j = A("j")
g.w = c
... | f | c | d | g | c | d | x | x | d | c | g | d | c | f | x | x | 7 | 13 | 2 | 5 | 2 |
842 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.x: B = None
self.txt = txt
h = A("h")
d = B("d")
c = B("c")
f = B("f")
b = B("b")
g = A("g")
i = A("i")
h.v = g
d.z = b
d.x = c
c.z = f
c... | c" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.x: B = None
self.txt = txt
h = A("h")
d = B("d")
c = B("c")
f = B("f")
b = B("b")
g = A("g")
i = A("i")
h.v = g
d.z = b
d.x = c
c.z = f
c... | b | f | c | f | d | c | f | c | c | f | c | d | f | c | f | b | 7 | 10 | 2 | 7 | 4 |
843 | class A:
def __init__(self, txt: str):
self.x: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
b = A("b")
f = B("f")
a = A("a")
g = A("g")
b.x = f
b.t = f
f.z = a
a.x = f
a.t = f
g.x = f
g.t = f
assert b.x... | a" | class A:
def __init__(self, txt: str):
self.x: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
b = A("b")
f = B("f")
a = A("a")
g = A("g")
b.x = f
b.t = f
f.z = a
a.x = f
a.t = f
g.x = f
g.t = f
assert b.x... | b | f | a | f | a | x | x | x | a | f | a | f | b | x | x | x | 4 | 4 | 2 | 4 | 2 |
844 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.p: A = None
self.txt = txt
c = A("c")
e = B("e")
d = B("d")
h = A("h")
j = A("j")
f = B("f")
g = B("g")
c.w = g
e.r = g
e.p = h
d.r = g
d... | j" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.p: A = None
self.txt = txt
c = A("c")
e = B("e")
d = B("d")
h = A("h")
j = A("j")
f = B("f")
g = B("g")
c.w = g
e.r = g
e.p = h
d.r = g
d... | f | j | d | h | f | j | x | x | j | f | h | d | j | f | x | x | 7 | 11 | 2 | 5 | 2 |
845 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.q: A = None
self.txt = txt
a = A("a")
e = B("e")
g = B("g")
j = B("j")
f = A("f")
c = A("c")
a.y = f
e.v = c
e.q = a
g.v = a
g.q = a
j.v ... | f" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.q: A = None
self.txt = txt
a = A("a")
e = B("e")
g = B("g")
j = B("j")
f = A("f")
c = A("c")
a.y = f
e.v = c
e.q = a
g.v = a
g.q = a
j.v ... | f | a | f | a | f | a | f | x | f | a | f | a | f | a | f | x | 6 | 8 | 2 | 6 | 5 |
846 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.t: A = None
self.txt = txt
b = A("b")
e = B("e")
d = B("d")
b.t = e
e.y = b
e.t = b
d.y = b
d.t = b
assert e.t.t.t.txt == " | b" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.t: A = None
self.txt = txt
b = A("b")
e = B("e")
d = B("d")
b.t = e
e.y = b
e.t = b
d.y = b
d.t = b
assert e.t.t.t.txt == "b" | e | b | e | b | x | x | x | x | b | e | b | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
847 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: B = None
self.txt = txt
f = A("f")
c = B("c")
j = B("j")
i = A("i")
h = B("h")
b = B("b")
g = A("g")
f.p = b
c.w = j
c.q = b
j.w = h
j... | j" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: B = None
self.txt = txt
f = A("f")
c = B("c")
j = B("j")
i = A("i")
h = B("h")
b = B("b")
g = A("g")
f.p = b
c.w = j
c.q = b
j.w = h
j... | c | j | h | j | x | x | x | x | j | h | j | c | x | x | x | x | 7 | 11 | 2 | 3 | 1 |
848 | class A:
def __init__(self, txt: str):
self.y: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
b = A("b")
i = B("i")
h = A("h")
c = B("c")
e = B("e")
f = A("f")
g = A("g")
b.y = c
b.t = c
i.z = f
h.y = c
h... | f" | class A:
def __init__(self, txt: str):
self.y: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
b = A("b")
i = B("i")
h = A("h")
c = B("c")
e = B("e")
f = A("f")
g = A("g")
b.y = c
b.t = c
i.z = f
h.y = c
h... | i | f | i | f | e | b | c | f | f | c | b | e | f | i | f | i | 7 | 10 | 2 | 7 | 3 |
849 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.u: A = None
self.txt = txt
g = A("g")
a = B("a")
j = A("j")
e = A("e")
d = B("d")
c = B("c")
g.v = j
a.v = c
a.u = g
j.v = e
e.v = g
d.v ... | g" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.u: A = None
self.txt = txt
g = A("g")
a = B("a")
j = A("j")
e = A("e")
d = B("d")
c = B("c")
g.v = j
a.v = c
a.u = g
j.v = e
e.v = g
d.v ... | a | g | j | e | g | x | x | x | g | e | j | g | a | x | x | x | 6 | 9 | 2 | 4 | 1 |
850 | 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.y: B = None
self.txt = txt
j = A("j")
h = B("h")
b = B("b")
j.p = h
h.s = j
h.y = b
b.s = j
b.y = h
assert j.p.s.p.txt == " | h" | 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.y: B = None
self.txt = txt
j = A("j")
h = B("h")
b = B("b")
j.p = h
h.s = j
h.y = b
b.s = j
b.y = h
assert j.p.s.p.txt == "h" | j | h | j | h | x | x | x | x | h | j | h | j | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
851 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.s: A = None
self.txt = txt
c = A("c")
e = B("e")
g = B("g")
b = B("b")
c.z = e
e.o = c
e.s = c
g.o = c
g.s = c
b.o = c
b.s = c
assert b.s... | c" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.s: A = None
self.txt = txt
c = A("c")
e = B("e")
g = B("g")
b = B("b")
c.z = e
e.o = c
e.s = c
g.o = c
g.s = c
b.o = c
b.s = c
assert b.s... | b | c | e | c | x | x | x | x | c | e | c | b | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
852 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
g = A("g")
d = B("d")
h = B("h")
j = B("j")
c = A("c")
b = A("b")
a = B("a")
g.r = c
d.s = b
h.s = b
j.s = c
c.r = g
b.r = g
a.s = c
as... | g" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
g = A("g")
d = B("d")
h = B("h")
j = B("j")
c = A("c")
b = A("b")
a = B("a")
g.r = c
d.s = b
h.s = b
j.s = c
c.r = g
b.r = g
a.s = c
as... | j | c | g | c | g | x | x | x | g | c | g | c | j | x | x | x | 7 | 7 | 2 | 4 | 2 |
853 | class A:
def __init__(self, txt: str):
self.v: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.r: A = None
self.txt = txt
f = A("f")
c = B("c")
j = B("j")
e = A("e")
b = B("b")
f.v = e
f.t = e
c.x = j
c.r = ... | e" | class A:
def __init__(self, txt: str):
self.v: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.r: A = None
self.txt = txt
f = A("f")
c = B("c")
j = B("j")
e = A("e")
b = B("b")
f.v = e
f.t = e
c.x = j
c.r = ... | f | e | f | e | f | e | x | x | e | f | e | f | e | f | x | x | 5 | 8 | 2 | 5 | 4 |
854 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
a = A("a")
h = B("h")
g = B("g")
e = B("e")
i = A("i")
d = A("d")
b = B("b")
a.w = i
h.s = b
g.s = b
e.s = h
i.w = d
d.w = i
b.s = e
as... | d" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
a = A("a")
h = B("h")
g = B("g")
e = B("e")
i = A("i")
d = A("d")
b = B("b")
a.w = i
h.s = b
g.s = b
e.s = h
i.w = d
d.w = i
b.s = e
as... | a | i | d | i | d | i | d | x | d | i | d | i | d | i | a | x | 7 | 7 | 2 | 6 | 4 |
855 | 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.t: B = None
self.u: A = None
self.txt = txt
g = A("g")
i = B("i")
b = A("b")
e = A("e")
f = B("f")
d = B("d")
g.y = e
g.o = e
i.t... | b" | 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.t: B = None
self.u: A = None
self.txt = txt
g = A("g")
i = B("i")
b = A("b")
e = A("e")
f = B("f")
d = B("d")
g.y = e
g.o = e
i.t... | d | i | e | b | x | x | x | x | b | e | i | d | x | x | x | x | 6 | 9 | 2 | 3 | 0 |
856 | class A:
def __init__(self, txt: str):
self.t: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
f = A("f")
a = B("a")
h = A("h")
f.t = a
f.o = h
a.z = f
h.t = a
h.o = f
assert h.t.z.t.txt == " | a" | class A:
def __init__(self, txt: str):
self.t: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
f = A("f")
a = B("a")
h = A("h")
f.t = a
f.o = h
a.z = f
h.t = a
h.o = f
assert h.t.z.t.txt == "a" | h | a | f | a | x | x | x | x | a | f | a | h | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
857 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.w: A = None
self.txt = txt
h = A("h")
b = B("b")
a = B("a")
g = B("g")
j = A("j")
i = A("i")
d = B("d")
h.z = i
b.u = g
b.w = i
a.u = g
a... | h" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.w: A = None
self.txt = txt
h = A("h")
b = B("b")
a = B("a")
g = B("g")
j = A("j")
i = A("i")
d = B("d")
h.z = i
b.u = g
b.w = i
a.u = g
a... | h | i | h | i | h | x | x | x | h | i | h | i | h | x | x | x | 7 | 11 | 2 | 4 | 3 |
858 | class A:
def __init__(self, txt: str):
self.o: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.p: B = None
self.txt = txt
h = A("h")
f = B("f")
g = A("g")
c = B("c")
a = B("a")
b = B("b")
e = B("e")
h.o = g
... | g" | class A:
def __init__(self, txt: str):
self.o: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.p: B = None
self.txt = txt
h = A("h")
f = B("f")
g = A("g")
c = B("c")
a = B("a")
b = B("b")
e = B("e")
h.o = g
... | h | g | h | g | h | g | x | x | g | h | g | h | g | h | x | x | 7 | 12 | 2 | 5 | 4 |
859 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
h = A("h")
f = B("f")
j = B("j")
g = A("g")
h.p = g
f.u = h
j.u = h
g.p = h
assert g.p.p.p.txt == " | h" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
h = A("h")
f = B("f")
j = B("j")
g = A("g")
h.p = g
f.u = h
j.u = h
g.p = h
assert g.p.p.p.txt == "h" | g | h | g | h | x | x | x | x | h | g | h | g | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
860 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
j = A("j")
d = B("d")
i = B("i")
b = A("b")
e = B("e")
c = A("c")
j.w = e
d.q = i
i.q = d
b.w = i
e.q = d
c.w = i
assert c.w.q.q.q.q.tx... | i" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
j = A("j")
d = B("d")
i = B("i")
b = A("b")
e = B("e")
c = A("c")
j.w = e
d.q = i
i.q = d
b.w = i
e.q = d
c.w = i
assert c.w.q.q.q.q.tx... | c | i | d | i | d | i | x | x | i | d | i | d | i | c | x | x | 6 | 6 | 2 | 5 | 3 |
861 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
b = A("b")
g = B("g")
a = A("a")
i = B("i")
d = A("d")
e = A("e")
b.r = i
g.y = e
a.r = i
i.y = d
d.r = g
e.r = g
assert e.r.y.r.y.r.y.... | e" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
b = A("b")
g = B("g")
a = A("a")
i = B("i")
d = A("d")
e = A("e")
b.r = i
g.y = e
a.r = i
i.y = d
d.r = g
e.r = g
assert e.r.y.r.y.r.y.... | e | g | e | g | e | g | e | x | e | g | e | g | e | g | e | x | 6 | 6 | 2 | 6 | 5 |
862 | class A:
def __init__(self, txt: str):
self.o: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
f = A("f")
d = B("d")
g = A("g")
e = A("e")
f.o = g
f.t = e
d.o = g
g.o = e
g.t = e
e.o = g
e.t = g
assert e.t... | e" | class A:
def __init__(self, txt: str):
self.o: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
f = A("f")
d = B("d")
g = A("g")
e = A("e")
f.o = g
f.t = e
d.o = g
g.o = e
g.t = e
e.o = g
e.t = g
assert e.t... | e | g | e | g | e | x | x | x | e | g | e | g | e | x | x | x | 4 | 5 | 2 | 4 | 3 |
863 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
a = A("a")
e = B("e")
j = A("j")
a.t = j
e.t = j
j.t = a
assert j.t.t.t.txt == " | a" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
a = A("a")
e = B("e")
j = A("j")
a.t = j
e.t = j
j.t = a
assert j.t.t.t.txt == "a" | j | a | j | a | x | x | x | x | a | j | a | j | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
864 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
f = A("f")
a = B("a")
b = B("b")
f.r = b
a.y = f
b.y = f
assert f.r.y.r.txt == " | b" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
f = A("f")
a = B("a")
b = B("b")
f.r = b
a.y = f
b.y = f
assert f.r.y.r.txt == "b" | f | b | f | b | x | x | x | x | b | f | b | f | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
865 | class A:
def __init__(self, txt: str):
self.x: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.p: B = None
self.txt = txt
g = A("g")
c = B("c")
f = A("f")
h = B("h")
j = B("j")
d = A("d")
a = B("a")
g.x = a
... | d" | class A:
def __init__(self, txt: str):
self.x: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.p: B = None
self.txt = txt
g = A("g")
c = B("c")
f = A("f")
h = B("h")
j = B("j")
d = A("d")
a = B("a")
g.x = a
... | j | h | d | h | d | h | d | x | d | h | d | h | d | h | j | x | 7 | 12 | 2 | 6 | 4 |
866 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.s: A = None
self.txt = txt
i = A("i")
a = B("a")
c = A("c")
i.t = a
a.z = i
a.s = c
c.t = a
assert a.z.t.s.txt == " | c" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.s: A = None
self.txt = txt
i = A("i")
a = B("a")
c = A("c")
i.t = a
a.z = i
a.s = c
c.t = a
assert a.z.t.s.txt == "c" | a | i | a | c | x | x | x | x | c | a | i | a | x | x | x | x | 3 | 4 | 2 | 3 | 1 |
867 | class A:
def __init__(self, txt: str):
self.x: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.p: A = None
self.txt = txt
c = A("c")
d = B("d")
j = A("j")
g = A("g")
c.x = g
c.u = d
d.w = g
d.p = j
j.x = c
j... | j" | class A:
def __init__(self, txt: str):
self.x: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.p: A = None
self.txt = txt
c = A("c")
d = B("d")
j = A("j")
g = A("g")
c.x = g
c.u = d
d.w = g
d.p = j
j.x = c
j... | d | j | c | g | j | x | x | x | j | g | c | j | d | x | x | x | 4 | 8 | 2 | 4 | 1 |
868 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
i = A("i")
g = B("g")
f = B("f")
a = B("a")
j = A("j")
i.y = j
g.v = a
f.v = a
a.v = g
j.y = i
assert j.y.y.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
i = A("i")
g = B("g")
f = B("f")
a = B("a")
j = A("j")
i.y = j
g.v = a
f.v = a
a.v = g
j.y = i
assert j.y.y.y.txt == "i" | j | i | j | i | x | x | x | x | i | j | i | j | x | x | x | x | 5 | 5 | 2 | 3 | 2 |
869 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.y: B = None
self.txt = txt
c = A("c")
e = B("e")
g = B("g")
c.w = e
e.o = g
e.y = g
g.o = e
g.y = e
assert e.o.o.o.txt == " | g" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.y: B = None
self.txt = txt
c = A("c")
e = B("e")
g = B("g")
c.w = e
e.o = g
e.y = g
g.o = e
g.y = e
assert e.o.o.o.txt == "g" | e | g | e | g | x | x | x | x | g | e | g | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
870 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
c = A("c")
j = B("j")
b = A("b")
e = B("e")
a = B("a")
g = A("g")
c.u = j
j.w = a
b.u = e
e.w = a
a.w = e
g.u = a
assert b.u.w.w.w.w.tx... | e" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
c = A("c")
j = B("j")
b = A("b")
e = B("e")
a = B("a")
g = A("g")
c.u = j
j.w = a
b.u = e
e.w = a
a.w = e
g.u = a
assert b.u.w.w.w.w.tx... | b | e | a | e | a | e | x | x | e | a | e | a | e | b | x | x | 6 | 6 | 2 | 5 | 3 |
871 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: B = None
self.txt = txt
j = A("j")
a = B("a")
h = A("h")
d = B("d")
b = A("b")
j.x = a
a.p = j
a.v = d
h.x = a
d.p = b
d.v = a
b.x = a... | a" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: B = None
self.txt = txt
j = A("j")
a = B("a")
h = A("h")
d = B("d")
b = A("b")
j.x = a
a.p = j
a.v = d
h.x = a
d.p = b
d.v = a
b.x = a... | a | j | a | d | b | a | x | x | a | b | d | a | j | a | x | x | 5 | 7 | 2 | 5 | 2 |
872 | class A:
def __init__(self, txt: str):
self.t: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
g = A("g")
f = B("f")
b = B("b")
d = A("d")
c = A("c")
a = A("a")
g.t = b
g.y = c
f.r = b
b.r = f
d.t = b
d.y ... | b" | class A:
def __init__(self, txt: str):
self.t: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
g = A("g")
f = B("f")
b = B("b")
d = A("d")
c = A("c")
a = A("a")
g.t = b
g.y = c
f.r = b
b.r = f
d.t = b
d.y ... | b | f | b | f | b | f | b | x | b | f | b | f | b | f | b | x | 6 | 10 | 2 | 6 | 5 |
873 | class A:
def __init__(self, txt: str):
self.r: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
d = A("d")
f = B("f")
b = A("b")
j = B("j")
g = A("g")
d.r = j
d.v = j
f.u = j
b.r = f
b.v = j
j.u = f
g.r = f... | j" | class A:
def __init__(self, txt: str):
self.r: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
d = A("d")
f = B("f")
b = A("b")
j = B("j")
g = A("g")
d.r = j
d.v = j
f.u = j
b.r = f
b.v = j
j.u = f
g.r = f... | f | j | f | j | f | j | x | x | j | f | j | f | j | f | x | x | 5 | 7 | 2 | 5 | 4 |
874 | class A:
def __init__(self, txt: str):
self.r: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.r: A = None
self.txt = txt
c = A("c")
i = B("i")
g = A("g")
b = B("b")
a = B("a")
c.r = b
c.v = g
i.o = c
i.r = ... | b" | class A:
def __init__(self, txt: str):
self.r: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.r: A = None
self.txt = txt
c = A("c")
i = B("i")
g = A("g")
b = B("b")
a = B("a")
c.r = b
c.v = g
i.o = c
i.r = ... | g | b | c | g | b | x | x | x | b | g | c | b | g | x | x | x | 5 | 9 | 2 | 4 | 2 |
875 | class A:
def __init__(self, txt: str):
self.x: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
g = A("g")
d = B("d")
a = A("a")
g.x = d
g.w = a
d.q = a
a.x = d
a.w = g
assert a.w.w.w.txt == " | g" | class A:
def __init__(self, txt: str):
self.x: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
g = A("g")
d = B("d")
a = A("a")
g.x = d
g.w = a
d.q = a
a.x = d
a.w = g
assert a.w.w.w.txt == "g" | a | g | a | g | x | x | x | x | g | a | g | a | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
876 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.p: B = None
self.txt = txt
c = A("c")
d = B("d")
g = B("g")
b = A("b")
c.w = b
d.w = g
d.p = g
g.w = d
g.p = d
b.w = c
assert d.w.w.p.txt... | g" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.p: B = None
self.txt = txt
c = A("c")
d = B("d")
g = B("g")
b = A("b")
c.w = b
d.w = g
d.p = g
g.w = d
g.p = d
b.w = c
assert d.w.w.p.txt... | d | g | d | g | x | x | x | x | g | d | g | d | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
877 | class A:
def __init__(self, txt: str):
self.v: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.x: B = None
self.txt = txt
i = A("i")
b = B("b")
c = B("c")
g = A("g")
d = B("d")
i.v = g
i.r = b
b.t = g
b.x = ... | g" | class A:
def __init__(self, txt: str):
self.v: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.x: B = None
self.txt = txt
i = A("i")
b = B("b")
c = B("c")
g = A("g")
d = B("d")
i.v = g
i.r = b
b.t = g
b.x = ... | c | b | g | d | g | x | x | x | g | d | g | b | c | x | x | x | 5 | 10 | 2 | 4 | 1 |
878 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
c = B("c")
b = A("b")
e = B("e")
j = B("j")
d.v = j
c.z = d
b.v = e
e.z = d
j.z = b
assert b.v.z.v.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
c = B("c")
b = A("b")
e = B("e")
j = B("j")
d.v = j
c.z = d
b.v = e
e.z = d
j.z = b
assert b.v.z.v.z.txt == "b" | b | e | d | j | b | x | x | x | b | j | d | e | b | x | x | x | 5 | 5 | 2 | 4 | 1 |
879 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
h = A("h")
a = B("a")
i = A("i")
h.r = a
a.q = h
i.r = a
assert h.r.q.r.txt == " | a" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
h = A("h")
a = B("a")
i = A("i")
h.r = a
a.q = h
i.r = a
assert h.r.q.r.txt == "a" | h | a | h | a | x | x | x | x | a | h | a | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
880 | class A:
def __init__(self, txt: str):
self.o: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.r: B = None
self.txt = txt
c = A("c")
i = B("i")
e = B("e")
b = B("b")
g = B("g")
c.o = e
c.x = e
i.q = e
i.r = ... | e" | class A:
def __init__(self, txt: str):
self.o: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.r: B = None
self.txt = txt
c = A("c")
i = B("i")
e = B("e")
b = B("b")
g = B("g")
c.o = e
c.x = e
i.q = e
i.r = ... | i | e | b | g | b | e | x | x | e | b | g | b | e | i | x | x | 5 | 7 | 2 | 5 | 2 |
881 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.txt = txt
b = A("b")
c = B("c")
h = B("h")
a = B("a")
b.t = c
c.x = a
c.p = b
h.x = c
h.p = b
a.x = c
a.p = b
assert a.x... | b" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.txt = txt
b = A("b")
c = B("c")
h = B("h")
a = B("a")
b.t = c
c.x = a
c.p = b
h.x = c
h.p = b
a.x = c
a.p = b
assert a.x... | a | c | a | b | x | x | x | x | b | a | c | a | x | x | x | x | 4 | 7 | 2 | 3 | 1 |
882 | class A:
def __init__(self, txt: str):
self.p: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: B = None
self.txt = txt
d = A("d")
e = B("e")
c = B("c")
d.p = c
d.x = e
e.o = d
e.w = c
c.o = d
c.w = e
asse... | c" | class A:
def __init__(self, txt: str):
self.p: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: B = None
self.txt = txt
d = A("d")
e = B("e")
c = B("c")
d.p = c
d.x = e
e.o = d
e.w = c
c.o = d
c.w = e
asse... | d | e | d | c | x | x | x | x | c | d | e | d | x | x | x | x | 3 | 6 | 2 | 3 | 1 |
883 | 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.p: A = None
self.txt = txt
a = A("a")
g = B("g")
b = A("b")
a.u = g
g.y = b
g.p = b
b.u = g
assert a.u.p.u.txt == " | g" | 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.p: A = None
self.txt = txt
a = A("a")
g = B("g")
b = A("b")
a.u = g
g.y = b
g.p = b
b.u = g
assert a.u.p.u.txt == "g" | a | g | b | g | x | x | x | x | g | b | g | a | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
884 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
a = A("a")
d = B("d")
f = B("f")
c = A("c")
g = B("g")
j = B("j")
i = B("i")
a.y = j
d.s = c
f.s = c
c.y = d
g.s = c
j.s = c
i.s = c
as... | d" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
a = A("a")
d = B("d")
f = B("f")
c = A("c")
g = B("g")
j = B("j")
i = B("i")
a.y = j
d.s = c
f.s = c
c.y = d
g.s = c
j.s = c
i.s = c
as... | i | c | d | c | d | x | x | x | d | c | d | c | i | x | x | x | 7 | 7 | 2 | 4 | 2 |
885 | class A:
def __init__(self, txt: str):
self.u: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
d = A("d")
e = B("e")
j = B("j")
c = A("c")
a = A("a")
f = A("f")
b = A("b")
d.u = c
d.y = e
e.w = b
j.w = d
c... | f" | class A:
def __init__(self, txt: str):
self.u: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
d = A("d")
e = B("e")
j = B("j")
c = A("c")
a = A("a")
f = A("f")
b = A("b")
d.u = c
d.y = e
e.w = b
j.w = d
c... | j | d | c | j | d | c | a | f | f | a | c | d | j | c | d | j | 7 | 12 | 2 | 7 | 3 |
886 | class A:
def __init__(self, txt: str):
self.p: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.o: B = None
self.txt = txt
c = A("c")
d = B("d")
e = A("e")
f = B("f")
c.p = d
c.x = d
d.w = e
d.o = f
e.p = d
e... | f" | class A:
def __init__(self, txt: str):
self.p: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.o: B = None
self.txt = txt
c = A("c")
d = B("d")
e = A("e")
f = B("f")
c.p = d
c.x = d
d.w = e
d.o = f
e.p = d
e... | f | d | e | d | f | x | x | x | f | d | e | d | f | x | x | x | 4 | 6 | 2 | 4 | 2 |
887 | 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.txt = txt
e = A("e")
d = B("d")
h = B("h")
e.u = d
d.y = h
h.y = d
assert e.u.y.y.txt == " | d" | 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.txt = txt
e = A("e")
d = B("d")
h = B("h")
e.u = d
d.y = h
h.y = d
assert e.u.y.y.txt == "d" | e | d | h | d | x | x | x | x | d | h | d | e | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
888 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.x: B = None
self.txt = txt
i = A("i")
b = B("b")
c = B("c")
e = B("e")
a = A("a")
i.p = b
b.u = e
b.x = c
c.u = e
c.x = e
e.u = b
e.x = b... | b" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.x: B = None
self.txt = txt
i = A("i")
b = B("b")
c = B("c")
e = B("e")
a = A("a")
i.p = b
b.u = e
b.x = c
c.u = e
c.x = e
e.u = b
e.x = b... | c | e | b | c | e | b | x | x | b | e | c | b | e | c | x | x | 5 | 6 | 2 | 5 | 3 |
889 | class A:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.r: A = None
self.txt = txt
b = A("b")
a = B("a")
h = B("h")
i = A("i")
c = B("c")
d = A("d")
e = A("e")
b.x = a
... | i" | class A:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.r: A = None
self.txt = txt
b = A("b")
a = B("a")
h = B("h")
i = A("i")
c = B("c")
d = A("d")
e = A("e")
b.x = a
... | h | e | b | e | b | a | i | x | i | a | b | e | b | e | h | x | 7 | 14 | 2 | 6 | 2 |
890 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.r: B = None
self.txt = txt
e = A("e")
c = B("c")
d = A("d")
f = B("f")
e.u = d
c.t = e
c.r = f
d.u = e
f.t = d
f.r = c
assert e.u.u.u.txt... | d" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.r: B = None
self.txt = txt
e = A("e")
c = B("c")
d = A("d")
f = B("f")
e.u = d
c.t = e
c.r = f
d.u = e
f.t = d
f.r = c
assert e.u.u.u.txt... | e | d | e | d | x | x | x | x | d | e | d | e | x | x | x | x | 4 | 6 | 2 | 3 | 2 |
891 | class A:
def __init__(self, txt: str):
self.o: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.txt = txt
g = A("g")
j = B("j")
e = B("e")
f = A("f")
d = A("d")
c = A("c")
g.o = c
g.p = f
j.x... | g" | class A:
def __init__(self, txt: str):
self.o: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.txt = txt
g = A("g")
j = B("j")
e = B("e")
f = A("f")
d = A("d")
c = A("c")
g.o = c
g.p = f
j.x... | f | d | g | f | g | x | x | x | g | f | g | d | f | x | x | x | 6 | 12 | 2 | 4 | 2 |
892 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
h = A("h")
i = B("i")
e = B("e")
d = A("d")
h.q = e
i.r = h
i.u = d
e.r = d
e.u = h
d.q = i
assert i.u.q.u.q.t... | i" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
h = A("h")
i = B("i")
e = B("e")
d = A("d")
h.q = e
i.r = h
i.u = d
e.r = d
e.u = h
d.q = i
assert i.u.q.u.q.t... | i | d | i | d | i | x | x | x | i | d | i | d | i | x | x | x | 4 | 6 | 2 | 4 | 3 |
893 | 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: A = None
self.txt = txt
d = A("d")
i = B("i")
g = B("g")
b = B("b")
c = B("c")
j = A("j")
e = B("e")
d.p = j
d.r = c
i.x = d
g.x = d
b... | j" | 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: A = None
self.txt = txt
d = A("d")
i = B("i")
g = B("g")
b = B("b")
c = B("c")
j = A("j")
e = B("e")
d.p = j
d.r = c
i.x = d
g.x = d
b... | c | d | j | g | d | j | d | j | j | d | j | d | g | j | d | c | 7 | 9 | 2 | 7 | 4 |
894 | 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.r: A = None
self.txt = txt
h = A("h")
b = B("b")
d = B("d")
e = B("e")
i = A("i")
j = A("j")
f = A("f")
h.w = b
h.t = b
b.r = j
d.r = f
e... | b" | 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.r: A = None
self.txt = txt
h = A("h")
b = B("b")
d = B("d")
e = B("e")
i = A("i")
j = A("j")
f = A("f")
h.w = b
h.t = b
b.r = j
d.r = f
e... | h | b | j | b | x | x | x | x | b | j | b | h | x | x | x | x | 7 | 8 | 2 | 3 | 1 |
895 | 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.o: A = None
self.txt = txt
f = A("f")
a = B("a")
h = A("h")
f.v = a
a.t = f
a.o = h
h.v = a
assert a.o.v.t.txt == " | f" | 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.o: A = None
self.txt = txt
f = A("f")
a = B("a")
h = A("h")
f.v = a
a.t = f
a.o = h
h.v = a
assert a.o.v.t.txt == "f" | a | h | a | f | x | x | x | x | f | a | h | a | x | x | x | x | 3 | 4 | 2 | 3 | 1 |
896 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.p: B = None
self.txt = txt
c = A("c")
g = B("g")
e = A("e")
a = B("a")
f = A("f")
j = A("j")
c.r = f
g.v = a
g.p = a
e.r = j
a.v = g
a.p ... | g" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.p: B = None
self.txt = txt
c = A("c")
g = B("g")
e = A("e")
a = B("a")
f = A("f")
j = A("j")
c.r = f
g.v = a
g.p = a
e.r = j
a.v = g
a.p ... | a | g | a | g | x | x | x | x | g | a | g | a | x | x | x | x | 6 | 6 | 2 | 3 | 2 |
897 | class A:
def __init__(self, txt: str):
self.p: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
f = A("f")
d = B("d")
j = A("j")
f.p = j
f.q = d
d.t = j
j.p = f
j.q = d
assert f.p.q.t.txt == " | j" | class A:
def __init__(self, txt: str):
self.p: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
f = A("f")
d = B("d")
j = A("j")
f.p = j
f.q = d
d.t = j
j.p = f
j.q = d
assert f.p.q.t.txt == "j" | f | j | d | j | x | x | x | x | j | d | j | f | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
898 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
a = B("a")
j = B("j")
c = A("c")
i = A("i")
e.z = j
a.w = j
j.w = a
c.z = a
i.z = j
assert c.z.w.w.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
a = B("a")
j = B("j")
c = A("c")
i = A("i")
e.z = j
a.w = j
j.w = a
c.z = a
i.z = j
assert c.z.w.w.txt == "a" | c | a | j | a | x | x | x | x | a | j | a | c | x | x | x | x | 5 | 5 | 2 | 3 | 1 |
899 | class A:
def __init__(self, txt: str):
self.u: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
i = A("i")
e = B("e")
a = B("a")
i.u = a
i.v = a
e.w = a
a.w = e
assert i.u.w.w.txt == " | a" | class A:
def __init__(self, txt: str):
self.u: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
i = A("i")
e = B("e")
a = B("a")
i.u = a
i.v = a
e.w = a
a.w = e
assert i.u.w.w.txt == "a" | i | a | e | a | x | x | x | x | a | e | a | i | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.