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