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