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,400 | 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.u: B = None
self.txt = txt
c = A("c")
a = B("a")
d = B("d")
g = A("g")
h = A("h")
f = B("f")
c.t = f
c.o = g
a.u = f
d.u = f
g.t = f
g.o ... | f" | 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.u: B = None
self.txt = txt
c = A("c")
a = B("a")
d = B("d")
g = A("g")
h = A("h")
f = B("f")
c.t = f
c.o = g
a.u = f
d.u = f
g.t = f
g.o ... | f | a | f | a | f | a | f | x | f | a | f | a | f | a | f | x | 6 | 9 | 2 | 6 | 5 |
4,401 | class A:
def __init__(self, txt: str):
self.s: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.r: B = None
self.txt = txt
e = A("e")
f = B("f")
d = B("d")
g = A("g")
a = B("a")
h = A("h")
j = A("j")
e.s = g
... | a" | class A:
def __init__(self, txt: str):
self.s: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.r: B = None
self.txt = txt
e = A("e")
f = B("f")
d = B("d")
g = A("g")
a = B("a")
h = A("h")
j = A("j")
e.s = g
... | e | g | e | a | x | x | x | x | a | e | g | e | x | x | x | x | 7 | 14 | 2 | 3 | 1 |
4,402 | class A:
def __init__(self, txt: str):
self.q: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
c = A("c")
j = B("j")
h = A("h")
f = B("f")
c.q = h
c.r = h
j.u = f
h.q = c
h.r = c
f.u = j
assert f.u.u.u.u.t... | f" | class A:
def __init__(self, txt: str):
self.q: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
c = A("c")
j = B("j")
h = A("h")
f = B("f")
c.q = h
c.r = h
j.u = f
h.q = c
h.r = c
f.u = j
assert f.u.u.u.u.t... | f | j | f | j | f | x | x | x | f | j | f | j | f | x | x | x | 4 | 4 | 2 | 4 | 3 |
4,403 | class A:
def __init__(self, txt: str):
self.z: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
a = A("a")
j = B("j")
d = A("d")
a.z = j
a.q = j
j.t = d
d.z = j
d.q = j
assert j.t.q.t.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
a = A("a")
j = B("j")
d = A("d")
a.z = j
a.q = j
j.t = d
d.z = j
d.q = j
assert j.t.q.t.txt == "d" | j | d | j | d | x | x | x | x | d | j | d | j | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,404 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
h = B("h")
d = A("d")
e = A("e")
g = B("g")
j = B("j")
a.r = e
b.x = j
h.x = j
d.r = e
e.r = d
g.x = h
j.x = g
as... | j" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
b = B("b")
h = B("h")
d = A("d")
e = A("e")
g = B("g")
j = B("j")
a.r = e
b.x = j
h.x = j
d.r = e
e.r = d
g.x = h
j.x = g
as... | j | g | h | j | x | x | x | x | j | h | g | j | x | x | x | x | 7 | 7 | 2 | 3 | 1 |
4,405 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
h = A("h")
a = B("a")
g = A("g")
d = B("d")
b = B("b")
h.s = b
a.p = g
g.s = a
d.p = h
b.p = g
assert a.p.s.p.s.txt == " | a" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
h = A("h")
a = B("a")
g = A("g")
d = B("d")
b = B("b")
h.s = b
a.p = g
g.s = a
d.p = h
b.p = g
assert a.p.s.p.s.txt == "a" | a | g | a | g | a | x | x | x | a | g | a | g | a | x | x | x | 5 | 5 | 2 | 4 | 3 |
4,406 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.p: B = None
self.txt = txt
f = A("f")
g = B("g")
e = B("e")
b = B("b")
i = A("i")
j = A("j")
a = B("a")
f.w = a
g.z = j
g.p = b
e.z = j
e... | a" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.p: B = None
self.txt = txt
f = A("f")
g = B("g")
e = B("e")
b = B("b")
i = A("i")
j = A("j")
a = B("a")
f.w = a
g.z = j
g.p = b
e.z = j
e... | a | j | b | a | x | x | x | x | a | b | j | a | x | x | x | x | 7 | 11 | 2 | 3 | 1 |
4,407 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.r: B = None
self.txt = txt
c = A("c")
f = B("f")
h = B("h")
c.x = f
f.u = h
f.r = h
h.u = f
h.r = f
assert c.x.u.r.txt == " | f" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.r: B = None
self.txt = txt
c = A("c")
f = B("f")
h = B("h")
c.x = f
f.u = h
f.r = h
h.u = f
h.r = f
assert c.x.u.r.txt == "f" | c | f | h | f | x | x | x | x | f | h | f | c | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,408 | class A:
def __init__(self, txt: str):
self.y: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.s: A = None
self.txt = txt
d = A("d")
i = B("i")
j = A("j")
d.y = i
d.p = j
i.r = d
i.s = d
j.y = i
j.p = d
asse... | i" | class A:
def __init__(self, txt: str):
self.y: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.s: A = None
self.txt = txt
d = A("d")
i = B("i")
j = A("j")
d.y = i
d.p = j
i.r = d
i.s = d
j.y = i
j.p = d
asse... | i | d | j | i | x | x | x | x | i | j | d | i | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
4,409 | class A:
def __init__(self, txt: str):
self.x: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.r: A = None
self.txt = txt
c = A("c")
b = B("b")
i = A("i")
c.x = i
c.v = b
b.v = c
b.r = c
i.x = c
i.v = b
asse... | b" | class A:
def __init__(self, txt: str):
self.x: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.r: A = None
self.txt = txt
c = A("c")
b = B("b")
i = A("i")
c.x = i
c.v = b
b.v = c
b.r = c
i.x = c
i.v = b
asse... | i | c | i | b | x | x | x | x | b | i | c | i | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
4,410 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.t: A = None
self.txt = txt
h = A("h")
a = B("a")
g = B("g")
c = A("c")
d = B("d")
e = A("e")
h.y = d
a.p = d
a.t = c
g.p = d
g.t = e
c.y ... | d" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.t: A = None
self.txt = txt
h = A("h")
a = B("a")
g = B("g")
c = A("c")
d = B("d")
e = A("e")
h.y = d
a.p = d
a.t = c
g.p = d
g.t = e
c.y ... | a | c | d | e | g | d | x | x | d | g | e | d | c | a | x | x | 6 | 9 | 2 | 5 | 1 |
4,411 | 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.p: B = None
self.s: A = None
self.txt = txt
a = A("a")
g = B("g")
b = B("b")
a.s = g
a.o = b
g.p = b
g.s = a
b.p = g
b.s = a
asse... | a" | 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.p: B = None
self.s: A = None
self.txt = txt
a = A("a")
g = B("g")
b = B("b")
a.s = g
a.o = b
g.p = b
g.s = a
b.p = g
b.s = a
asse... | g | a | g | a | x | x | x | x | a | g | a | g | x | x | x | x | 3 | 6 | 2 | 3 | 2 |
4,412 | class A:
def __init__(self, txt: str):
self.q: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
e = A("e")
d = B("d")
i = B("i")
b = A("b")
h = A("h")
e.q = h
e.p = b
d.x = e
i.x = h
b.q = h
b.p = h
h.q = b... | b" | class A:
def __init__(self, txt: str):
self.q: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
e = A("e")
d = B("d")
i = B("i")
b = A("b")
h = A("h")
e.q = h
e.p = b
d.x = e
i.x = h
b.q = h
b.p = h
h.q = b... | i | h | b | h | b | x | x | x | b | h | b | h | i | x | x | x | 5 | 7 | 2 | 4 | 2 |
4,413 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
h = A("h")
a = B("a")
f = B("f")
e = B("e")
h.s = e
a.p = h
f.p = h
e.p = h
assert e.p.s.p.txt == " | h" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
h = A("h")
a = B("a")
f = B("f")
e = B("e")
h.s = e
a.p = h
f.p = h
e.p = h
assert e.p.s.p.txt == "h" | e | h | e | h | x | x | x | x | h | e | h | e | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
4,414 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
h = A("h")
c = B("c")
g = A("g")
h.z = c
c.v = g
g.z = c
assert g.z.v.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
h = A("h")
c = B("c")
g = A("g")
h.z = c
c.v = g
g.z = c
assert g.z.v.z.txt == "c" | g | c | g | c | x | x | x | x | c | g | c | g | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,415 | 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.q: B = None
self.txt = txt
e = A("e")
g = B("g")
h = A("h")
i = B("i")
c = B("c")
d = A("d")
b = A("b")
e.x = i
g.o = c
g.q = i
h.x = g
i... | c" | 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.q: B = None
self.txt = txt
e = A("e")
g = B("g")
h = A("h")
i = B("i")
c = B("c")
d = A("d")
b = A("b")
e.x = i
g.o = c
g.q = i
h.x = g
i... | g | c | g | c | x | x | x | x | c | g | c | g | x | x | x | x | 7 | 10 | 2 | 3 | 2 |
4,416 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
b = A("b")
d = B("d")
g = B("g")
h = A("h")
j = B("j")
b.r = h
d.x = j
g.x = d
h.r = b
j.x = d
assert h.r.r.r.r.txt == " | h" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
b = A("b")
d = B("d")
g = B("g")
h = A("h")
j = B("j")
b.r = h
d.x = j
g.x = d
h.r = b
j.x = d
assert h.r.r.r.r.txt == "h" | h | b | h | b | h | x | x | x | h | b | h | b | h | x | x | x | 5 | 5 | 2 | 4 | 3 |
4,417 | class A:
def __init__(self, txt: str):
self.p: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.v: A = None
self.txt = txt
i = A("i")
f = B("f")
e = B("e")
b = B("b")
h = B("h")
c = A("c")
g = B("g")
i.p = c
... | c" | class A:
def __init__(self, txt: str):
self.p: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.v: A = None
self.txt = txt
i = A("i")
f = B("f")
e = B("e")
b = B("b")
h = B("h")
c = A("c")
g = B("g")
i.p = c
... | g | c | g | i | f | c | x | x | c | f | i | g | c | g | x | x | 7 | 13 | 2 | 5 | 2 |
4,418 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.y: A = None
self.txt = txt
c = A("c")
g = B("g")
b = A("b")
f = B("f")
j = B("j")
c.o = b
g.s = c
g.y = b
b.o = c
f.s = c
f.y = b
j.s = c... | c" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.y: A = None
self.txt = txt
c = A("c")
g = B("g")
b = A("b")
f = B("f")
j = B("j")
c.o = b
g.s = c
g.y = b
b.o = c
f.s = c
f.y = b
j.s = c... | b | c | b | c | x | x | x | x | c | b | c | b | x | x | x | x | 5 | 8 | 2 | 3 | 2 |
4,419 | 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.z: A = None
self.txt = txt
e = A("e")
g = B("g")
c = B("c")
i = B("i")
b = A("b")
e.x = b
g.t = e
g.z = b
c.t = e
c.z = b
i.t = e
i.z = b... | e" | 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.z: A = None
self.txt = txt
e = A("e")
g = B("g")
c = B("c")
i = B("i")
b = A("b")
e.x = b
g.t = e
g.z = b
c.t = e
c.z = b
i.t = e
i.z = b... | g | e | b | e | b | e | x | x | e | b | e | b | e | g | x | x | 5 | 8 | 2 | 5 | 3 |
4,420 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
c = A("c")
d = B("d")
g = A("g")
b = B("b")
j = B("j")
e = B("e")
c.v = b
d.x = e
g.v = j
b.x = d
j.x = b
e.x = d
assert c.v.x.x.x.x.tx... | e" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
c = A("c")
d = B("d")
g = A("g")
b = B("b")
j = B("j")
e = B("e")
c.v = b
d.x = e
g.v = j
b.x = d
j.x = b
e.x = d
assert c.v.x.x.x.x.tx... | c | b | d | e | d | e | x | x | e | d | e | d | b | c | x | x | 6 | 6 | 2 | 5 | 2 |
4,421 | class A:
def __init__(self, txt: str):
self.v: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.x: A = None
self.txt = txt
j = A("j")
e = B("e")
g = B("g")
b = B("b")
f = A("f")
d = A("d")
j.v = f
j.z = f
e.v... | f" | class A:
def __init__(self, txt: str):
self.v: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.x: A = None
self.txt = txt
j = A("j")
e = B("e")
g = B("g")
b = B("b")
f = A("f")
d = A("d")
j.v = f
j.z = f
e.v... | j | f | d | f | d | f | x | x | f | d | f | d | f | j | x | x | 6 | 9 | 2 | 5 | 3 |
4,422 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
f = A("f")
c = B("c")
b = A("b")
d = B("d")
i = A("i")
f.z = b
c.r = f
b.z = f
d.r = f
i.z = b
assert f.z.z.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
f = A("f")
c = B("c")
b = A("b")
d = B("d")
i = A("i")
f.z = b
c.r = f
b.z = f
d.r = f
i.z = b
assert f.z.z.z.txt == "b" | f | b | f | b | x | x | x | x | b | f | b | f | x | x | x | x | 5 | 5 | 2 | 3 | 2 |
4,423 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
j = A("j")
b = B("b")
h = A("h")
a = A("a")
g = B("g")
i = A("i")
d = B("d")
j.q = h
b.s = i
h.q = j
a.q = h
g.s = a
i.q = j
d.s = h
as... | j" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
j = A("j")
b = B("b")
h = A("h")
a = A("a")
g = B("g")
i = A("i")
d = B("d")
j.q = h
b.s = i
h.q = j
a.q = h
g.s = a
i.q = j
d.s = h
as... | d | h | j | h | j | h | j | x | j | h | j | h | j | h | d | x | 7 | 7 | 2 | 6 | 4 |
4,424 | 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.txt = txt
h = A("h")
f = B("f")
b = B("b")
i = B("i")
g = B("g")
j = A("j")
d = B("d")
h.s = j
f.y = i
b.y = f
i.y = b
g.y = i
j.s = h
d.y = f
as... | i" | 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.txt = txt
h = A("h")
f = B("f")
b = B("b")
i = B("i")
g = B("g")
j = A("j")
d = B("d")
h.s = j
f.y = i
b.y = f
i.y = b
g.y = i
j.s = h
d.y = f
as... | g | i | b | f | i | x | x | x | i | f | b | i | g | x | x | x | 7 | 7 | 2 | 4 | 1 |
4,425 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
i = A("i")
f = B("f")
e = B("e")
b = B("b")
d = B("d")
i.y = e
f.w = i
e.w = i
b.w = i
d.w = i
assert f.w.y.w.txt == " | i" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
i = A("i")
f = B("f")
e = B("e")
b = B("b")
d = B("d")
i.y = e
f.w = i
e.w = i
b.w = i
d.w = i
assert f.w.y.w.txt == "i" | f | i | e | i | x | x | x | x | i | e | i | f | x | x | x | x | 5 | 5 | 2 | 3 | 1 |
4,426 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
g = A("g")
d = B("d")
b = B("b")
g.s = d
d.o = g
b.o = g
assert g.s.o.s.txt == " | d" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
g = A("g")
d = B("d")
b = B("b")
g.s = d
d.o = g
b.o = g
assert g.s.o.s.txt == "d" | g | d | g | d | x | x | x | x | d | g | d | g | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,427 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: B = None
self.txt = txt
d = A("d")
f = B("f")
a = B("a")
i = A("i")
c = B("c")
h = A("h")
e = A("e")
d.z = h
f.o = i
f.w = c
a.o = e
a... | e" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: B = None
self.txt = txt
d = A("d")
f = B("f")
a = B("a")
i = A("i")
c = B("c")
h = A("h")
e = A("e")
d.z = h
f.o = i
f.w = c
a.o = e
a... | c | a | f | i | e | x | x | x | e | i | f | a | c | x | x | x | 7 | 10 | 2 | 4 | 0 |
4,428 | class A:
def __init__(self, txt: str):
self.s: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
j = A("j")
c = B("c")
e = B("e")
f = B("f")
d = A("d")
j.s = c
j.u = c
c.z = e
e.z = f
f.z = c
d.s = f
d.u = c... | e" | class A:
def __init__(self, txt: str):
self.s: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
j = A("j")
c = B("c")
e = B("e")
f = B("f")
d = A("d")
j.s = c
j.u = c
c.z = e
e.z = f
f.z = c
d.s = f
d.u = c... | d | c | e | f | c | e | x | x | e | c | f | e | c | d | x | x | 5 | 6 | 2 | 5 | 2 |
4,429 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.z: A = None
self.txt = txt
e = A("e")
j = B("j")
g = B("g")
c = A("c")
e.w = c
j.t = e
j.z = e
g.t = c
g.z = c
c.w = e
assert j.t.w.w.w.t... | c" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.z: A = None
self.txt = txt
e = A("e")
j = B("j")
g = B("g")
c = A("c")
e.w = c
j.t = e
j.z = e
g.t = c
g.z = c
c.w = e
assert j.t.w.w.w.t... | j | e | c | e | c | x | x | x | c | e | c | e | j | x | x | x | 4 | 4 | 2 | 4 | 2 |
4,430 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
i = A("i")
b = B("b")
d = B("d")
i.s = d
b.x = d
d.x = b
assert b.x.x.x.txt == " | d" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
i = A("i")
b = B("b")
d = B("d")
i.s = d
b.x = d
d.x = b
assert b.x.x.x.txt == "d" | b | d | b | d | x | x | x | x | d | b | d | b | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,431 | class A:
def __init__(self, txt: str):
self.p: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
d = A("d")
a = B("a")
e = A("e")
d.p = e
d.s = a
a.x = e
e.p = d
e.s = a
assert e.s.x.s.txt == " | a" | class A:
def __init__(self, txt: str):
self.p: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
d = A("d")
a = B("a")
e = A("e")
d.p = e
d.s = a
a.x = e
e.p = d
e.s = a
assert e.s.x.s.txt == "a" | e | a | e | a | x | x | x | x | a | e | a | e | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
4,432 | 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.r: A = None
self.z: A = None
self.txt = txt
f = A("f")
c = B("c")
i = A("i")
j = B("j")
f.y = i
f.o = j
c.r = i
c.z = i
i.y = f
i... | i" | 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.r: A = None
self.z: A = None
self.txt = txt
f = A("f")
c = B("c")
i = A("i")
j = B("j")
f.y = i
f.o = j
c.r = i
c.z = i
i.y = f
i... | c | i | c | i | x | x | x | x | i | c | i | c | x | x | x | x | 4 | 7 | 2 | 3 | 2 |
4,433 | class A:
def __init__(self, txt: str):
self.r: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
j = A("j")
f = B("f")
g = B("g")
h = A("h")
j.r = f
j.q = f
f.p = g
g.p = f
h.r = f
h.q = g
assert f.p.p.p.p.t... | f" | class A:
def __init__(self, txt: str):
self.r: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
j = A("j")
f = B("f")
g = B("g")
h = A("h")
j.r = f
j.q = f
f.p = g
g.p = f
h.r = f
h.q = g
assert f.p.p.p.p.t... | f | g | f | g | f | x | x | x | f | g | f | g | f | x | x | x | 4 | 5 | 2 | 4 | 3 |
4,434 | 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.o: A = None
self.txt = txt
h = A("h")
g = B("g")
b = B("b")
h.u = b
h.v = b
g.o = h
b.o = h
assert h.u.o.v.txt == " | b" | 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.o: A = None
self.txt = txt
h = A("h")
g = B("g")
b = B("b")
h.u = b
h.v = b
g.o = h
b.o = h
assert h.u.o.v.txt == "b" | h | b | h | b | x | x | x | x | b | h | b | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,435 | 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.x: A = None
self.txt = txt
h = A("h")
b = B("b")
i = B("i")
f = A("f")
d = B("d")
h.p = f
h.z = d
b.x = f
i.x = f
f.p = h
f.z = b
d.x = f... | h" | 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.x: A = None
self.txt = txt
h = A("h")
b = B("b")
i = B("i")
f = A("f")
d = B("d")
h.p = f
h.z = d
b.x = f
i.x = f
f.p = h
f.z = b
d.x = f... | h | d | f | h | x | x | x | x | h | f | d | h | x | x | x | x | 5 | 7 | 2 | 3 | 1 |
4,436 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
g = A("g")
f = B("f")
a = A("a")
d = B("d")
g.w = d
f.s = g
a.w = f
d.s = a
assert g.w.s.w.s.txt == " | g" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
g = A("g")
f = B("f")
a = A("a")
d = B("d")
g.w = d
f.s = g
a.w = f
d.s = a
assert g.w.s.w.s.txt == "g" | g | d | a | f | g | x | x | x | g | f | a | d | g | x | x | x | 4 | 4 | 2 | 4 | 1 |
4,437 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.q: A = None
self.txt = txt
d = A("d")
e = B("e")
a = B("a")
d.x = a
e.u = a
e.q = d
a.u = e
a.q = d
assert e.u.u.u.txt == " | a" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.q: A = None
self.txt = txt
d = A("d")
e = B("e")
a = B("a")
d.x = a
e.u = a
e.q = d
a.u = e
a.q = d
assert e.u.u.u.txt == "a" | e | a | e | a | x | x | x | x | a | e | a | e | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
4,438 | class A:
def __init__(self, txt: str):
self.x: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
f = A("f")
j = B("j")
d = A("d")
f.x = j
f.z = d
j.o = f
d.x = j
d.z = f
assert f.z.x.o.txt == " | f" | class A:
def __init__(self, txt: str):
self.x: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
f = A("f")
j = B("j")
d = A("d")
f.x = j
f.z = d
j.o = f
d.x = j
d.z = f
assert f.z.x.o.txt == "f" | f | d | j | f | x | x | x | x | f | j | d | f | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
4,439 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
i = B("i")
d = A("d")
a = B("a")
g = B("g")
c = A("c")
j.r = d
i.y = j
d.r = j
a.y = d
g.y = j
c.r = d
assert a.y.r.r.txt ==... | d" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
i = B("i")
d = A("d")
a = B("a")
g = B("g")
c = A("c")
j.r = d
i.y = j
d.r = j
a.y = d
g.y = j
c.r = d
assert a.y.r.r.txt ==... | a | d | j | d | x | x | x | x | d | j | d | a | x | x | x | x | 6 | 6 | 2 | 3 | 1 |
4,440 | class A:
def __init__(self, txt: str):
self.q: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
g = A("g")
f = B("f")
d = B("d")
c = B("c")
g.q = d
g.w = d
f.x = d
d.x = f
c.x = f
assert g.q.x.x.txt == " | d" | class A:
def __init__(self, txt: str):
self.q: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
g = A("g")
f = B("f")
d = B("d")
c = B("c")
g.q = d
g.w = d
f.x = d
d.x = f
c.x = f
assert g.q.x.x.txt == "d" | g | d | f | d | x | x | x | x | d | f | d | g | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
4,441 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
e = A("e")
d = B("d")
b = A("b")
i = B("i")
g = B("g")
e.p = i
d.v = i
b.p = i
i.v = d
g.v = i
assert b.p.v.v.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
e = A("e")
d = B("d")
b = A("b")
i = B("i")
g = B("g")
e.p = i
d.v = i
b.p = i
i.v = d
g.v = i
assert b.p.v.v.v.txt == "d" | b | i | d | i | d | x | x | x | d | i | d | i | b | x | x | x | 5 | 5 | 2 | 4 | 2 |
4,442 | class A:
def __init__(self, txt: str):
self.r: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
a = A("a")
b = B("b")
h = B("h")
e = B("e")
a.r = h
a.x = h
b.r = h
h.r = b
e.r = b
assert a.r.r.r.r.txt == " | b" | class A:
def __init__(self, txt: str):
self.r: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
a = A("a")
b = B("b")
h = B("h")
e = B("e")
a.r = h
a.x = h
b.r = h
h.r = b
e.r = b
assert a.r.r.r.r.txt == "b... | a | h | b | h | b | x | x | x | b | h | b | h | a | x | x | x | 4 | 4 | 2 | 4 | 2 |
4,443 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.r: B = None
self.txt = txt
d = A("d")
i = B("i")
a = A("a")
g = A("g")
f = B("f")
j = A("j")
b = B("b")
d.u = i
i.z = f
i.r = f
a.u = f
g... | f" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.r: B = None
self.txt = txt
d = A("d")
i = B("i")
a = A("a")
g = A("g")
f = B("f")
j = A("j")
b = B("b")
d.u = i
i.z = f
i.r = f
a.u = f
g... | j | i | f | i | f | x | x | x | f | i | f | i | j | x | x | x | 7 | 8 | 2 | 4 | 2 |
4,444 | class A:
def __init__(self, txt: str):
self.y: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.t: A = None
self.txt = txt
c = A("c")
f = B("f")
a = B("a")
i = A("i")
b = A("b")
c.y = f
c.p = f
f.v = a
f.t = ... | b" | class A:
def __init__(self, txt: str):
self.y: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.t: A = None
self.txt = txt
c = A("c")
f = B("f")
a = B("a")
i = A("i")
b = A("b")
c.y = f
c.p = f
f.v = a
f.t = ... | f | a | b | f | a | b | x | x | b | a | f | b | a | f | x | x | 5 | 7 | 2 | 5 | 3 |
4,445 | class A:
def __init__(self, txt: str):
self.s: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
j = A("j")
a = B("a")
h = B("h")
g = B("g")
d = B("d")
e = A("e")
f = B("f")
j.s = f
j.u = e
a.t = j
h.t = j
g... | d" | class A:
def __init__(self, txt: str):
self.s: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
j = A("j")
a = B("a")
h = B("h")
g = B("g")
d = B("d")
e = A("e")
f = B("f")
j.s = f
j.u = e
a.t = j
h.t = j
g... | f | j | e | d | j | e | d | x | d | e | j | d | e | j | f | x | 7 | 9 | 2 | 6 | 3 |
4,446 | 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.t: B = None
self.txt = txt
f = A("f")
e = B("e")
d = B("d")
b = A("b")
f.u = b
f.y = d
e.t = d
d.t = e
b.u = f
b.y = e
assert e.t.t.t.t.t... | e" | 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.t: B = None
self.txt = txt
f = A("f")
e = B("e")
d = B("d")
b = A("b")
f.u = b
f.y = d
e.t = d
d.t = e
b.u = f
b.y = e
assert e.t.t.t.t.t... | e | d | e | d | e | x | x | x | e | d | e | d | e | x | x | x | 4 | 6 | 2 | 4 | 3 |
4,447 | class A:
def __init__(self, txt: str):
self.q: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.s: A = None
self.txt = txt
c = A("c")
g = B("g")
d = B("d")
b = A("b")
j = A("j")
h = B("h")
c.q = j
c.u = d
g.p... | j" | class A:
def __init__(self, txt: str):
self.q: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.s: A = None
self.txt = txt
c = A("c")
g = B("g")
d = B("d")
b = A("b")
j = A("j")
h = B("h")
c.q = j
c.u = d
g.p... | j | h | b | j | x | x | x | x | j | b | h | j | x | x | x | x | 6 | 11 | 2 | 3 | 1 |
4,448 | class A:
def __init__(self, txt: str):
self.t: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
f = A("f")
d = B("d")
a = A("a")
b = A("b")
e = B("e")
c = A("c")
f.t = b
f.v = e
d.p = a
a.t = c
a.v = d
b.t ... | e" | class A:
def __init__(self, txt: str):
self.t: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
f = A("f")
d = B("d")
a = A("a")
b = A("b")
e = B("e")
c = A("c")
f.t = b
f.v = e
d.p = a
a.t = c
a.v = d
b.t ... | b | e | c | f | e | x | x | x | e | f | c | e | b | x | x | x | 6 | 10 | 2 | 4 | 1 |
4,449 | class A:
def __init__(self, txt: str):
self.w: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.o: A = None
self.txt = txt
c = A("c")
e = B("e")
f = A("f")
c.w = e
c.r = e
e.v = f
e.o = f
f.w = e
f.r = e
asse... | f" | class A:
def __init__(self, txt: str):
self.w: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.o: A = None
self.txt = txt
c = A("c")
e = B("e")
f = A("f")
c.w = e
c.r = e
e.v = f
e.o = f
f.w = e
f.r = e
asse... | e | f | e | f | x | x | x | x | f | e | f | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,450 | class A:
def __init__(self, txt: str):
self.o: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
d = A("d")
i = B("i")
g = A("g")
a = A("a")
e = A("e")
f = B("f")
d.o = i
d.p = a
i.p = f
g.o = f
g.p = a
a.o ... | i" | class A:
def __init__(self, txt: str):
self.o: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
d = A("d")
i = B("i")
g = A("g")
a = A("a")
e = A("e")
f = B("f")
d.o = i
d.p = a
i.p = f
g.o = f
g.p = a
a.o ... | i | f | i | f | i | f | i | x | i | f | i | f | i | f | i | x | 6 | 10 | 2 | 6 | 5 |
4,451 | class A:
def __init__(self, txt: str):
self.s: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
c = A("c")
b = B("b")
e = A("e")
d = B("d")
c.s = e
c.q = d
b.w = d
e.s = c
e.q = b
d.w = b
assert e.s.q.w.txt... | b" | class A:
def __init__(self, txt: str):
self.s: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
c = A("c")
b = B("b")
e = A("e")
d = B("d")
c.s = e
c.q = d
b.w = d
e.s = c
e.q = b
d.w = b
assert e.s.q.w.txt... | e | c | d | b | x | x | x | x | b | d | c | e | x | x | x | x | 4 | 6 | 2 | 3 | 0 |
4,452 | class A:
def __init__(self, txt: str):
self.z: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
a = A("a")
e = B("e")
j = B("j")
g = A("g")
b = A("b")
a.z = e
a.w = b
e.y = g
j.y = g
g.z = j
g.w = b
b.z = e... | g" | class A:
def __init__(self, txt: str):
self.z: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
a = A("a")
e = B("e")
j = B("j")
g = A("g")
b = A("b")
a.z = e
a.w = b
e.y = g
j.y = g
g.z = j
g.w = b
b.z = e... | e | g | b | g | x | x | x | x | g | b | g | e | x | x | x | x | 5 | 8 | 2 | 3 | 1 |
4,453 | class A:
def __init__(self, txt: str):
self.v: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
f = A("f")
h = B("h")
a = A("a")
g = A("g")
j = A("j")
c = A("c")
i = B("i")
f.v = h
f.y = g
h.t = i
a.v = i
a... | i" | class A:
def __init__(self, txt: str):
self.v: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
f = A("f")
h = B("h")
a = A("a")
g = A("g")
j = A("j")
c = A("c")
i = B("i")
f.v = h
f.y = g
h.t = i
a.v = i
a... | a | i | h | i | x | x | x | x | i | h | i | a | x | x | x | x | 7 | 12 | 2 | 3 | 1 |
4,454 | class A:
def __init__(self, txt: str):
self.p: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.p: B = None
self.txt = txt
h = A("h")
b = B("b")
i = B("i")
c = B("c")
j = A("j")
h.p = i
h.r = c
b.x = j
b.p = ... | c" | class A:
def __init__(self, txt: str):
self.p: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.p: B = None
self.txt = txt
h = A("h")
b = B("b")
i = B("i")
c = B("c")
j = A("j")
h.p = i
h.r = c
b.x = j
b.p = ... | j | i | c | h | c | x | x | x | c | h | c | i | j | x | x | x | 5 | 10 | 2 | 4 | 1 |
4,455 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
j = A("j")
e = B("e")
c = B("c")
a = B("a")
f = A("f")
h = A("h")
j.z = h
e.t = a
c.t = a
a.t = c
f.z = h
h.z = j
assert e.t.t.t.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: B = None
self.txt = txt
j = A("j")
e = B("e")
c = B("c")
a = B("a")
f = A("f")
h = A("h")
j.z = h
e.t = a
c.t = a
a.t = c
f.z = h
h.z = j
assert e.t.t.t.txt ==... | e | a | c | a | x | x | x | x | a | c | a | e | x | x | x | x | 6 | 6 | 2 | 3 | 1 |
4,456 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
e = A("e")
i = B("i")
a = B("a")
h = A("h")
j = A("j")
c = B("c")
e.s = a
i.x = c
a.x = i
h.s = c
j.s = c
c.x = a
assert j.s.x.x.x.x.x.... | i" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
e = A("e")
i = B("i")
a = B("a")
h = A("h")
j = A("j")
c = B("c")
e.s = a
i.x = c
a.x = i
h.s = c
j.s = c
c.x = a
assert j.s.x.x.x.x.x.... | j | c | a | i | c | a | i | x | i | a | c | i | a | c | j | x | 6 | 6 | 2 | 6 | 3 |
4,457 | class A:
def __init__(self, txt: str):
self.x: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.y: B = None
self.txt = txt
b = A("b")
d = B("d")
g = A("g")
j = B("j")
a = B("a")
c = B("c")
h = B("h")
b.x = c
... | d" | class A:
def __init__(self, txt: str):
self.x: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.y: B = None
self.txt = txt
b = A("b")
d = B("d")
g = A("g")
j = B("j")
a = B("a")
c = B("c")
h = B("h")
b.x = c
... | b | g | j | g | j | d | x | x | d | j | g | j | g | b | x | x | 7 | 14 | 2 | 5 | 2 |
4,458 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.z: B = None
self.txt = txt
h = A("h")
j = B("j")
i = A("i")
a = B("a")
d = A("d")
f = B("f")
h.y = j
j.v = f
j.z = a
i.y = a
a.v = f
a.z ... | f" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.z: B = None
self.txt = txt
h = A("h")
j = B("j")
i = A("i")
a = B("a")
d = A("d")
f = B("f")
h.y = j
j.v = f
j.z = a
i.y = a
a.v = f
a.z ... | d | f | j | a | f | x | x | x | f | a | j | f | d | x | x | x | 6 | 8 | 2 | 4 | 1 |
4,459 | 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.z: B = None
self.x: A = None
self.txt = txt
c = A("c")
j = B("j")
f = A("f")
b = B("b")
a = B("a")
h = A("h")
d = A("d")
c.x = a
... | f" | 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.z: B = None
self.x: A = None
self.txt = txt
c = A("c")
j = B("j")
f = A("f")
b = B("b")
a = B("a")
h = A("h")
d = A("d")
c.x = a
... | d | j | a | j | f | x | x | x | f | j | a | j | d | x | x | x | 7 | 14 | 2 | 4 | 1 |
4,460 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.v: B = None
self.txt = txt
j = A("j")
c = B("c")
f = B("f")
d = A("d")
j.v = c
c.y = f
c.v = f
f.y = c
f.v = c
d.v = f
assert f.v.y.y.v.t... | f" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.v: B = None
self.txt = txt
j = A("j")
c = B("c")
f = B("f")
d = A("d")
j.v = c
c.y = f
c.v = f
f.y = c
f.v = c
d.v = f
assert f.v.y.y.v.t... | f | c | f | c | f | x | x | x | f | c | f | c | f | x | x | x | 4 | 4 | 2 | 4 | 3 |
4,461 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
f = A("f")
a = B("a")
e = A("e")
d = A("d")
f.w = e
a.w = d
e.w = f
d.w = e
assert f.w.w.w.txt == " | e" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
f = A("f")
a = B("a")
e = A("e")
d = A("d")
f.w = e
a.w = d
e.w = f
d.w = e
assert f.w.w.w.txt == "e" | f | e | f | e | x | x | x | x | e | f | e | f | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
4,462 | class A:
def __init__(self, txt: str):
self.o: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: A = None
self.txt = txt
j = A("j")
a = B("a")
b = B("b")
d = A("d")
e = B("e")
j.o = d
j.r = e
a.p = j
a.v = ... | e" | class A:
def __init__(self, txt: str):
self.o: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: A = None
self.txt = txt
j = A("j")
a = B("a")
b = B("b")
d = A("d")
e = B("e")
j.o = d
j.r = e
a.p = j
a.v = ... | j | e | d | j | d | e | x | x | e | d | j | d | e | j | x | x | 5 | 10 | 2 | 5 | 3 |
4,463 | 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.x: A = None
self.txt = txt
b = A("b")
i = B("i")
g = B("g")
e = A("e")
j = A("j")
b.x = g
b.z = i
i.x = j
g.x = e
e.x = g
e.z = g
j.x = i... | e" | 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.x: A = None
self.txt = txt
b = A("b")
i = B("i")
g = B("g")
e = A("e")
j = A("j")
b.x = g
b.z = i
i.x = j
g.x = e
e.x = g
e.z = g
j.x = i... | g | e | g | e | x | x | x | x | e | g | e | g | x | x | x | x | 5 | 6 | 2 | 3 | 2 |
4,464 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
d = A("d")
g = B("g")
c = A("c")
a = B("a")
d.p = a
g.y = c
c.p = a
a.y = c
assert d.p.y.p.txt == " | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
d = A("d")
g = B("g")
c = A("c")
a = B("a")
d.p = a
g.y = c
c.p = a
a.y = c
assert d.p.y.p.txt == "a" | d | a | c | a | x | x | x | x | a | c | a | d | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
4,465 | class A:
def __init__(self, txt: str):
self.t: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.z: A = None
self.txt = txt
c = A("c")
g = B("g")
b = A("b")
e = A("e")
j = B("j")
i = B("i")
c.t = j
c.q = j
g.w... | e" | class A:
def __init__(self, txt: str):
self.t: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.z: A = None
self.txt = txt
c = A("c")
g = B("g")
b = A("b")
e = A("e")
j = B("j")
i = B("i")
c.t = j
c.q = j
g.w... | i | j | i | e | x | x | x | x | e | i | j | i | x | x | x | x | 6 | 11 | 2 | 3 | 1 |
4,466 | class A:
def __init__(self, txt: str):
self.u: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
j = A("j")
h = B("h")
d = A("d")
a = B("a")
j.u = h
j.q = d
h.w = d
d.u = h
d.q = j
a.w = d
assert a.w.q.u.txt... | h" | class A:
def __init__(self, txt: str):
self.u: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
j = A("j")
h = B("h")
d = A("d")
a = B("a")
j.u = h
j.q = d
h.w = d
d.u = h
d.q = j
a.w = d
assert a.w.q.u.txt... | a | d | j | h | x | x | x | x | h | j | d | a | x | x | x | x | 4 | 6 | 2 | 3 | 0 |
4,467 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.s: B = None
self.txt = txt
f = A("f")
h = B("h")
b = B("b")
f.o = b
h.p = b
h.s = b
b.p = h
b.s = h
assert b.s.p.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.p: B = None
self.s: B = None
self.txt = txt
f = A("f")
h = B("h")
b = B("b")
f.o = b
h.p = b
h.s = b
b.p = h
b.s = h
assert b.s.p.p.txt == "h" | b | h | b | h | x | x | x | x | h | b | h | b | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,468 | 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.q: A = None
self.txt = txt
b = A("b")
a = B("a")
f = A("f")
b.x = a
b.t = a
a.q = b
f.x = a
f.t = a
assert a.q.t.q.txt == " | b" | 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.q: A = None
self.txt = txt
b = A("b")
a = B("a")
f = A("f")
b.x = a
b.t = a
a.q = b
f.x = a
f.t = a
assert a.q.t.q.txt == "b" | a | b | a | b | x | x | x | x | b | a | b | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,469 | 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
f = A("f")
h = B("h")
d = A("d")
f.v = h
f.s = d
h.r = f
d.v = h
d.s = f
assert h.r.v.r.txt == " | f" | 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
f = A("f")
h = B("h")
d = A("d")
f.v = h
f.s = d
h.r = f
d.v = h
d.s = f
assert h.r.v.r.txt == "f" | h | f | h | f | x | x | x | x | f | h | f | h | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
4,470 | class A:
def __init__(self, txt: str):
self.x: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.x: A = None
self.txt = txt
e = A("e")
d = B("d")
f = B("f")
e.x = d
e.o = d
d.y = e
d.x = e
f.y = e
f.x = e
asse... | e" | class A:
def __init__(self, txt: str):
self.x: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.x: A = None
self.txt = txt
e = A("e")
d = B("d")
f = B("f")
e.x = d
e.o = d
d.y = e
d.x = e
f.y = e
f.x = e
asse... | f | e | d | e | x | x | x | x | e | d | e | f | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,471 | class A:
def __init__(self, txt: str):
self.o: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: A = None
self.txt = txt
b = A("b")
j = B("j")
a = B("a")
d = B("d")
f = B("f")
i = A("i")
c = B("c")
b.o = i
... | i" | class A:
def __init__(self, txt: str):
self.o: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: A = None
self.txt = txt
b = A("b")
j = B("j")
a = B("a")
d = B("d")
f = B("f")
i = A("i")
c = B("c")
b.o = i
... | f | i | b | c | i | x | x | x | i | c | b | i | f | x | x | x | 7 | 11 | 2 | 4 | 1 |
4,472 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.r: A = None
self.txt = txt
h = A("h")
d = B("d")
g = B("g")
j = A("j")
f = A("f")
b = A("b")
i = A("i")
h.o = i
d.u = f
d.r = f
g.u = b
g... | i" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.r: A = None
self.txt = txt
h = A("h")
d = B("d")
g = B("g")
j = A("j")
f = A("f")
b = A("b")
i = A("i")
h.o = i
d.u = f
d.r = f
g.u = b
g... | b | j | i | b | j | i | x | x | i | j | b | i | j | b | x | x | 7 | 8 | 2 | 5 | 3 |
4,473 | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.r: A = None
self.txt = txt
a = A("a")
d = B("d")
b = B("b")
h = B("h")
a.z = b
a.s = d
d.w = b
d.r = a
b.w = d
b... | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.r: A = None
self.txt = txt
a = A("a")
d = B("d")
b = B("b")
h = B("h")
a.z = b
a.s = d
d.w = b
d.r = a
b.w = d
b... | h | b | a | b | a | x | x | x | a | b | a | b | h | x | x | x | 4 | 8 | 2 | 4 | 2 |
4,474 | 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.o: B = None
self.r: B = None
self.txt = txt
b = A("b")
f = B("f")
e = A("e")
a = B("a")
g = B("g")
b.v = f
b.u = e
f.o = g
f.r = ... | g" | 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.o: B = None
self.r: B = None
self.txt = txt
b = A("b")
f = B("f")
e = A("e")
a = B("a")
g = B("g")
b.v = f
b.u = e
f.o = g
f.r = ... | g | a | f | g | x | x | x | x | g | f | a | g | x | x | x | x | 5 | 7 | 2 | 3 | 1 |
4,475 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
d = A("d")
g = B("g")
f = A("f")
d.y = g
g.t = f
f.y = g
assert d.y.t.y.txt == " | g" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
d = A("d")
g = B("g")
f = A("f")
d.y = g
g.t = f
f.y = g
assert d.y.t.y.txt == "g" | d | g | f | g | x | x | x | x | g | f | g | d | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,476 | 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.z: B = None
self.txt = txt
j = A("j")
g = B("g")
c = A("c")
h = B("h")
i = B("i")
b = B("b")
e = B("e")
j.u = c
j.p = e
g.z = e
c.u = j
c... | e" | 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.z: B = None
self.txt = txt
j = A("j")
g = B("g")
c = A("c")
h = B("h")
i = B("i")
b = B("b")
e = B("e")
j.u = c
j.p = e
g.z = e
c.u = j
c... | g | e | h | e | h | e | h | e | e | h | e | h | e | h | e | g | 7 | 9 | 2 | 7 | 5 |
4,477 | 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.t: A = None
self.w: A = None
self.txt = txt
c = A("c")
d = B("d")
b = A("b")
a = B("a")
i = B("i")
j = A("j")
g = B("g")
c.p = b
... | b" | 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.t: A = None
self.w: A = None
self.txt = txt
c = A("c")
d = B("d")
b = A("b")
a = B("a")
i = B("i")
j = A("j")
g = B("g")
c.p = b
... | j | b | a | c | d | b | c | b | b | c | b | d | c | a | b | j | 7 | 14 | 2 | 7 | 3 |
4,478 | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.u: B = None
self.txt = txt
j = A("j")
c = B("c")
a = B("a")
j.q = c
j.x = c
c.x = a
c.u = a
a.x = c
a.u = c
asse... | a" | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.u: B = None
self.txt = txt
j = A("j")
c = B("c")
a = B("a")
j.q = c
j.x = c
c.x = a
c.u = a
a.x = c
a.u = c
asse... | c | a | c | a | x | x | x | x | a | c | a | c | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,479 | 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.v: B = None
self.txt = txt
d = A("d")
c = B("c")
f = B("f")
h = B("h")
e = B("e")
b = A("b")
d.o = b
d.v = b
c.v = h
f.v = h
h.v = e
e.v ... | e" | 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.v: B = None
self.txt = txt
d = A("d")
c = B("c")
f = B("f")
h = B("h")
e = B("e")
b = A("b")
d.o = b
d.v = b
c.v = h
f.v = h
h.v = e
e.v ... | e | h | e | h | e | h | e | x | e | h | e | h | e | h | e | x | 6 | 6 | 2 | 6 | 5 |
4,480 | class A:
def __init__(self, txt: str):
self.u: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
j = A("j")
e = B("e")
i = A("i")
h = B("h")
g = B("g")
j.u = g
j.y = i
e.s = g
i.u = e
i.y = j
h.s = e
g.s = e... | g" | class A:
def __init__(self, txt: str):
self.u: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
j = A("j")
e = B("e")
i = A("i")
h = B("h")
g = B("g")
j.u = g
j.y = i
e.s = g
i.u = e
i.y = j
h.s = e
g.s = e... | j | g | e | g | x | x | x | x | g | e | g | j | x | x | x | x | 5 | 7 | 2 | 3 | 1 |
4,481 | 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.txt = txt
c = A("c")
f = B("f")
b = A("b")
j = B("j")
e = A("e")
d = A("d")
c.w = f
f.r = j
b.w = j
j.r = f
e.w = j
d.w = j
assert e.w.r.r.r.txt ... | f" | 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.txt = txt
c = A("c")
f = B("f")
b = A("b")
j = B("j")
e = A("e")
d = A("d")
c.w = f
f.r = j
b.w = j
j.r = f
e.w = j
d.w = j
assert e.w.r.r.r.txt ... | e | j | f | j | f | x | x | x | f | j | f | j | e | x | x | x | 6 | 6 | 2 | 4 | 2 |
4,482 | class A:
def __init__(self, txt: str):
self.y: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
d = A("d")
g = B("g")
c = A("c")
h = B("h")
j = B("j")
f = A("f")
a = A("a")
d.y = j
d.t = f
g.t = f
c.y = g
c... | f" | class A:
def __init__(self, txt: str):
self.y: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
d = A("d")
g = B("g")
c = A("c")
h = B("h")
j = B("j")
f = A("f")
a = A("a")
d.y = j
d.t = f
g.t = f
c.y = g
c... | g | f | a | j | f | a | d | f | f | d | a | f | j | a | f | g | 7 | 11 | 2 | 7 | 3 |
4,483 | 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.x: A = None
self.txt = txt
g = A("g")
b = B("b")
a = A("a")
g.z = a
g.o = a
b.x = g
a.z = g
a.o = g
assert a.o.z.o.txt == " | g" | 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.x: A = None
self.txt = txt
g = A("g")
b = B("b")
a = A("a")
g.z = a
g.o = a
b.x = g
a.z = g
a.o = g
assert a.o.z.o.txt == "g" | a | g | a | g | x | x | x | x | g | a | g | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,484 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.y: A = None
self.txt = txt
a = A("a")
g = B("g")
i = B("i")
h = B("h")
d = B("d")
f = A("f")
b = A("b")
a.u = f
g.v = d
g.y = a
i.v = h
i... | f" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.y: A = None
self.txt = txt
a = A("a")
g = B("g")
i = B("i")
h = B("h")
d = B("d")
f = A("f")
b = A("b")
a.u = f
g.v = d
g.y = a
i.v = h
i... | d | g | a | f | x | x | x | x | f | a | g | d | x | x | x | x | 7 | 11 | 2 | 3 | 0 |
4,485 | class A:
def __init__(self, txt: str):
self.s: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.u: B = None
self.txt = txt
a = A("a")
d = B("d")
f = A("f")
i = A("i")
h = B("h")
g = B("g")
c = B("c")
a.s = d
... | h" | class A:
def __init__(self, txt: str):
self.s: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.u: B = None
self.txt = txt
a = A("a")
d = B("d")
f = A("f")
i = A("i")
h = B("h")
g = B("g")
c = B("c")
a.s = d
... | c | g | c | h | g | c | h | x | h | c | g | h | c | g | c | x | 7 | 11 | 2 | 6 | 4 |
4,486 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: A = None
self.txt = txt
g = A("g")
c = B("c")
b = A("b")
g.s = c
c.p = b
c.v = g
b.s = c
assert c.v.s.p.txt == " | b" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: A = None
self.txt = txt
g = A("g")
c = B("c")
b = A("b")
g.s = c
c.p = b
c.v = g
b.s = c
assert c.v.s.p.txt == "b" | c | g | c | b | x | x | x | x | b | c | g | c | x | x | x | x | 3 | 4 | 2 | 3 | 1 |
4,487 | 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.w: A = None
self.txt = txt
h = A("h")
d = B("d")
f = A("f")
i = A("i")
b = A("b")
g = B("g")
h.r = g
d.x = g
d.w = f
f.r = g
i.r = g
b.r ... | f" | 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.w: A = None
self.txt = txt
h = A("h")
d = B("d")
f = A("f")
i = A("i")
b = A("b")
g = B("g")
h.r = g
d.x = g
d.w = f
f.r = g
i.r = g
b.r ... | i | g | d | f | x | x | x | x | f | d | g | i | x | x | x | x | 6 | 8 | 2 | 3 | 0 |
4,488 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.x: A = None
self.txt = txt
d = A("d")
b = B("b")
c = A("c")
d.p = c
b.o = d
b.x = c
c.p = d
assert d.p.p.p.txt == " | c" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.x: A = None
self.txt = txt
d = A("d")
b = B("b")
c = A("c")
d.p = c
b.o = d
b.x = c
c.p = d
assert d.p.p.p.txt == "c" | d | c | d | c | x | x | x | x | c | d | c | d | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
4,489 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
b = A("b")
h = B("h")
g = A("g")
d = B("d")
c = B("c")
a = A("a")
b.p = d
h.o = a
g.p = c
d.o = a
c.o = g
a.p = c
assert c.o.p.o.p.txt ... | c" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
b = A("b")
h = B("h")
g = A("g")
d = B("d")
c = B("c")
a = A("a")
b.p = d
h.o = a
g.p = c
d.o = a
c.o = g
a.p = c
assert c.o.p.o.p.txt ... | c | g | c | g | c | x | x | x | c | g | c | g | c | x | x | x | 6 | 6 | 2 | 4 | 3 |
4,490 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
h = A("h")
i = B("i")
c = A("c")
h.s = c
i.s = c
c.s = h
assert h.s.s.s.txt == " | c" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
h = A("h")
i = B("i")
c = A("c")
h.s = c
i.s = c
c.s = h
assert h.s.s.s.txt == "c" | h | c | h | c | x | x | x | x | c | h | c | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,491 | class A:
def __init__(self, txt: str):
self.z: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
d = A("d")
f = B("f")
c = A("c")
j = B("j")
i = B("i")
d.z = c
d.u = c
f.s = i
c.z = d
c.u = d
j.s = f
i.s = j... | f" | class A:
def __init__(self, txt: str):
self.z: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
d = A("d")
f = B("f")
c = A("c")
j = B("j")
i = B("i")
d.z = c
d.u = c
f.s = i
c.z = d
c.u = d
j.s = f
i.s = j... | j | f | i | j | f | x | x | x | f | j | i | f | j | x | x | x | 5 | 5 | 2 | 4 | 2 |
4,492 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.w: B = None
self.txt = txt
e = A("e")
d = B("d")
b = B("b")
j = A("j")
a = B("a")
e.r = d
d.r = b
d.w = b
b.r = a
b.w = d
j.r = b
a.r = d... | a" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.w: B = None
self.txt = txt
e = A("e")
d = B("d")
b = B("b")
j = A("j")
a = B("a")
e.r = d
d.r = b
d.w = b
b.r = a
b.w = d
j.r = b
a.r = d... | e | d | b | a | x | x | x | x | a | b | d | e | x | x | x | x | 5 | 7 | 2 | 3 | 0 |
4,493 | 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.txt = txt
d = A("d")
c = B("c")
i = B("i")
g = A("g")
j = B("j")
f = A("f")
e = B("e")
d.s = g
c.z = f
i.z = d
g.s = f
j.z = g
f.s = d
e.z = f
as... | d" | 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.txt = txt
d = A("d")
c = B("c")
i = B("i")
g = A("g")
j = B("j")
f = A("f")
e = B("e")
d.s = g
c.z = f
i.z = d
g.s = f
j.z = g
f.s = d
e.z = f
as... | d | g | f | d | g | f | d | x | d | f | g | d | f | g | d | x | 7 | 7 | 2 | 6 | 4 |
4,494 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.t: B = None
self.txt = txt
d = A("d")
b = B("b")
i = A("i")
h = B("h")
a = A("a")
j = A("j")
d.r = b
b.u = j
b.t = h
i.r = h
h.u = d
h.t ... | h" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.t: B = None
self.txt = txt
d = A("d")
b = B("b")
i = A("i")
h = B("h")
a = A("a")
j = A("j")
d.r = b
b.u = j
b.t = h
i.r = h
h.u = d
h.t ... | h | b | j | b | j | b | h | x | h | b | j | b | j | b | h | x | 6 | 8 | 2 | 6 | 4 |
4,495 | 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.t: B = None
self.txt = txt
c = A("c")
b = B("b")
h = B("h")
e = A("e")
c.q = h
b.p = e
b.t = h
h.p = e
h.t = b
e.q = b
assert c.q.p.q.txt... | b" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.t: B = None
self.txt = txt
c = A("c")
b = B("b")
h = B("h")
e = A("e")
c.q = h
b.p = e
b.t = h
h.p = e
h.t = b
e.q = b
assert c.q.p.q.txt... | c | h | e | b | x | x | x | x | b | e | h | c | x | x | x | x | 4 | 6 | 2 | 3 | 0 |
4,496 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
i = A("i")
c = B("c")
d = A("d")
b = B("b")
f = B("f")
e = A("e")
a = B("a")
i.s = c
c.z = e
c.v = i
d.s = f
b... | c" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
i = A("i")
c = B("c")
d = A("d")
b = B("b")
f = B("f")
e = A("e")
a = B("a")
i.s = c
c.z = e
c.v = i
d.s = f
b... | c | i | c | i | c | i | c | x | c | i | c | i | c | i | c | x | 7 | 9 | 2 | 6 | 5 |
4,497 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.t: A = None
self.txt = txt
f = A("f")
g = B("g")
e = B("e")
a = B("a")
i = B("i")
h = B("h")
j = A("j")
f.z = g
g.z = e
g.t = j
e.z = a
e... | j" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.t: A = None
self.txt = txt
f = A("f")
g = B("g")
e = B("e")
a = B("a")
i = B("i")
h = B("h")
j = A("j")
f.z = g
g.z = e
g.t = j
e.z = a
e... | j | g | e | j | x | x | x | x | j | e | g | j | x | x | x | x | 7 | 12 | 2 | 3 | 1 |
4,498 | class A:
def __init__(self, txt: str):
self.w: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
c = A("c")
h = B("h")
a = A("a")
c.w = h
c.s = a
h.t = c
a.w = h
a.s = c
assert h.t.w.t.txt == " | c" | class A:
def __init__(self, txt: str):
self.w: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
c = A("c")
h = B("h")
a = A("a")
c.w = h
c.s = a
h.t = c
a.w = h
a.s = c
assert h.t.w.t.txt == "c" | h | c | h | c | x | x | x | x | c | h | c | h | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
4,499 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.s: A = None
self.txt = txt
a = A("a")
c = B("c")
d = B("d")
g = B("g")
i = A("i")
f = A("f")
h = A("h")
a.t = d
c.w = g
c.s = i
d.w = c
d... | d" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.s: A = None
self.txt = txt
a = A("a")
c = B("c")
d = B("d")
g = B("g")
i = A("i")
f = A("f")
h = A("h")
a.t = d
c.w = g
c.s = i
d.w = c
d... | d | c | g | i | g | d | x | x | d | g | i | g | c | d | x | x | 7 | 10 | 2 | 5 | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.