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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
600 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
e = A("e")
d = B("d")
i = B("i")
e.z = d
d.r = i
i.r = d
assert e.z.r.r.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
e = A("e")
d = B("d")
i = B("i")
e.z = d
d.r = i
i.r = d
assert e.z.r.r.txt == "d" | e | d | i | d | x | x | x | x | d | i | d | e | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
601 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
d = A("d")
i = B("i")
f = A("f")
b = B("b")
d.w = b
i.o = b
f.w = b
b.o = i
assert i.o.o.o.txt == " | b" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
d = A("d")
i = B("i")
f = A("f")
b = B("b")
d.w = b
i.o = b
f.w = b
b.o = i
assert i.o.o.o.txt == "b" | i | b | i | b | x | x | x | x | b | i | b | i | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
602 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
e = A("e")
f = B("f")
h = B("h")
a = A("a")
c = B("c")
e.s = a
f.p = a
h.p = a
a.s = e
c.p = a
assert e.s.s.s.txt == " | a" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
e = A("e")
f = B("f")
h = B("h")
a = A("a")
c = B("c")
e.s = a
f.p = a
h.p = a
a.s = e
c.p = a
assert e.s.s.s.txt == "a" | e | a | e | a | x | x | x | x | a | e | a | e | x | x | x | x | 5 | 5 | 2 | 3 | 2 |
603 | class A:
def __init__(self, txt: str):
self.r: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
g = A("g")
f = B("f")
i = A("i")
j = A("j")
g.r = f
g.w = f
f.u = i
i.r = f
i.w = f
j.r = f
j.w = f
assert f.u... | f" | class A:
def __init__(self, txt: str):
self.r: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
g = A("g")
f = B("f")
i = A("i")
j = A("j")
g.r = f
g.w = f
f.u = i
i.r = f
i.w = f
j.r = f
j.w = f
assert f.u... | f | i | f | i | f | x | x | x | f | i | f | i | f | x | x | x | 4 | 4 | 2 | 4 | 3 |
604 | class A:
def __init__(self, txt: str):
self.q: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
i = A("i")
g = B("g")
d = B("d")
a = B("a")
i.q = d
i.v = d
g.w = i
d.w = i
a.w = i
assert i.v.w.v.w.txt == " | i" | class A:
def __init__(self, txt: str):
self.q: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
i = A("i")
g = B("g")
d = B("d")
a = B("a")
i.q = d
i.v = d
g.w = i
d.w = i
a.w = i
assert i.v.w.v.w.txt == "i... | i | d | i | d | i | x | x | x | i | d | i | d | i | x | x | x | 4 | 4 | 2 | 4 | 3 |
605 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.r: B = None
self.txt = txt
g = A("g")
a = B("a")
d = B("d")
c = A("c")
i = B("i")
b = B("b")
f = B("f")
g.r = c
a.z = f
a.r = d
d.z = f
d... | g" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.r: B = None
self.txt = txt
g = A("g")
a = B("a")
d = B("d")
c = A("c")
i = B("i")
b = B("b")
f = B("f")
g.r = c
a.z = f
a.r = d
d.z = f
d... | g | c | g | c | g | x | x | x | g | c | g | c | g | x | x | x | 7 | 11 | 2 | 4 | 3 |
606 | class A:
def __init__(self, txt: str):
self.o: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
a = A("a")
j = B("j")
d = B("d")
e = A("e")
g = A("g")
a.o = j
a.z = j
j.u = a
d.u = a
e.o = j
e.z = j
g.o = d... | j" | class A:
def __init__(self, txt: str):
self.o: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
a = A("a")
j = B("j")
d = B("d")
e = A("e")
g = A("g")
a.o = j
a.z = j
j.u = a
d.u = a
e.o = j
e.z = j
g.o = d... | e | j | a | j | x | x | x | x | j | a | j | e | x | x | x | x | 5 | 5 | 2 | 3 | 1 |
607 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.z: B = None
self.txt = txt
i = A("i")
h = B("h")
j = B("j")
d = A("d")
b = A("b")
i.t = d
h.q = d
h.z = j
j.q = d
j.z = h
d.t = i
b.t = d... | d" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.z: B = None
self.txt = txt
i = A("i")
h = B("h")
j = B("j")
d = A("d")
b = A("b")
i.t = d
h.q = d
h.z = j
j.q = d
j.z = h
d.t = i
b.t = d... | d | i | d | i | d | x | x | x | d | i | d | i | d | x | x | x | 5 | 7 | 2 | 4 | 3 |
608 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.t: A = None
self.txt = txt
g = A("g")
a = B("a")
d = B("d")
i = B("i")
c = B("c")
g.o = d
a.v = d
a.t = g
d.v = i
d.t = g
i.v = a
i.t = g... | i" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.t: A = None
self.txt = txt
g = A("g")
a = B("a")
d = B("d")
i = B("i")
c = B("c")
g.o = d
a.v = d
a.t = g
d.v = i
d.t = g
i.v = a
i.t = g... | c | g | d | g | d | i | x | x | i | d | g | d | g | c | x | x | 5 | 9 | 2 | 5 | 2 |
609 | class A:
def __init__(self, txt: str):
self.x: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.z: B = None
self.txt = txt
b = A("b")
e = B("e")
j = B("j")
i = A("i")
g = B("g")
b.x = e
b.r = e
e.w = g
e.z = ... | j" | class A:
def __init__(self, txt: str):
self.x: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.z: B = None
self.txt = txt
b = A("b")
e = B("e")
j = B("j")
i = A("i")
g = B("g")
b.x = e
b.r = e
e.w = g
e.z = ... | e | j | g | j | x | x | x | x | j | g | j | e | x | x | x | x | 5 | 7 | 2 | 3 | 1 |
610 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
j = A("j")
h = B("h")
b = B("b")
f = B("f")
i = B("i")
d = B("d")
a = B("a")
j.x = f
h.r = b
b.r = i
f.r = i
i.r = f
d.r = b
a.r = i
as... | f" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
j = A("j")
h = B("h")
b = B("b")
f = B("f")
i = B("i")
d = B("d")
a = B("a")
j.x = f
h.r = b
b.r = i
f.r = i
i.r = f
d.r = b
a.r = i
as... | f | i | f | i | f | i | f | x | f | i | f | i | f | i | f | x | 7 | 7 | 2 | 6 | 5 |
611 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
g = A("g")
c = B("c")
j = B("j")
a = B("a")
e = A("e")
g.w = c
c.u = e
j.u = g
a.u = g
e.w = c
assert a.u.w.u.w.txt == " | c" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
g = A("g")
c = B("c")
j = B("j")
a = B("a")
e = A("e")
g.w = c
c.u = e
j.u = g
a.u = g
e.w = c
assert a.u.w.u.w.txt == "c" | a | g | c | e | c | x | x | x | c | e | c | g | a | x | x | x | 5 | 5 | 2 | 4 | 1 |
612 | class A:
def __init__(self, txt: str):
self.w: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: A = None
self.txt = txt
g = A("g")
d = B("d")
i = A("i")
g.w = d
g.x = i
d.o = i
d.w = g
i.w = d
i.x = g
asse... | g" | class A:
def __init__(self, txt: str):
self.w: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: A = None
self.txt = txt
g = A("g")
d = B("d")
i = A("i")
g.w = d
g.x = i
d.o = i
d.w = g
i.w = d
i.x = g
asse... | g | i | d | g | x | x | x | x | g | d | i | g | x | x | x | x | 3 | 6 | 2 | 3 | 1 |
613 | class A:
def __init__(self, txt: str):
self.q: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
e = A("e")
a = B("a")
f = A("f")
e.q = f
e.o = f
a.s = f
f.q = e
f.o = e
assert a.s.o.o.txt == " | f" | class A:
def __init__(self, txt: str):
self.q: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
e = A("e")
a = B("a")
f = A("f")
e.q = f
e.o = f
a.s = f
f.q = e
f.o = e
assert a.s.o.o.txt == "f" | a | f | e | f | x | x | x | x | f | e | f | a | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
614 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
b = A("b")
a = B("a")
j = A("j")
b.s = a
a.t = b
j.s = a
assert j.s.t.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.t: A = None
self.txt = txt
b = A("b")
a = B("a")
j = A("j")
b.s = a
a.t = b
j.s = a
assert j.s.t.s.txt == "a" | j | a | b | a | x | x | x | x | a | b | a | j | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
615 | class A:
def __init__(self, txt: str):
self.s: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
d = A("d")
f = B("f")
g = A("g")
d.s = f
d.w = f
f.x = d
g.s = f
g.w = f
assert d.w.x.w.txt == " | f" | class A:
def __init__(self, txt: str):
self.s: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
d = A("d")
f = B("f")
g = A("g")
d.s = f
d.w = f
f.x = d
g.s = f
g.w = f
assert d.w.x.w.txt == "f" | d | f | d | f | x | x | x | x | f | d | f | d | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
616 | 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.txt = txt
c = A("c")
e = B("e")
g = A("g")
f = B("f")
c.w = f
e.q = c
g.w = f
f.q = c
assert c.w.q.w.txt == " | f" | 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.txt = txt
c = A("c")
e = B("e")
g = A("g")
f = B("f")
c.w = f
e.q = c
g.w = f
f.q = c
assert c.w.q.w.txt == "f" | c | f | c | f | x | x | x | x | f | c | f | c | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
617 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
h = A("h")
e = B("e")
g = B("g")
d = B("d")
h.y = g
e.u = h
g.u = h
d.u = h
assert e.u.y.u.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.u: A = None
self.txt = txt
h = A("h")
e = B("e")
g = B("g")
d = B("d")
h.y = g
e.u = h
g.u = h
d.u = h
assert e.u.y.u.y.txt == "g" | e | h | g | h | g | x | x | x | g | h | g | h | e | x | x | x | 4 | 4 | 2 | 4 | 2 |
618 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.w: A = None
self.txt = txt
c = A("c")
h = B("h")
e = B("e")
g = A("g")
b = B("b")
i = A("i")
c.t = e
h.y = g
h.w = g
e.y = g
e.w = c
g.t ... | b" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.w: A = None
self.txt = txt
c = A("c")
h = B("h")
e = B("e")
g = A("g")
b = B("b")
i = A("i")
c.t = e
h.y = g
h.w = g
e.y = g
e.w = c
g.t ... | c | e | c | e | g | b | x | x | b | g | e | c | e | c | x | x | 6 | 8 | 2 | 5 | 2 |
619 | 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.y: B = None
self.txt = txt
c = A("c")
e = B("e")
h = B("h")
f = B("f")
c.q = h
e.x = c
e.y = f
h.x = c
h.y = e
f.x = c
f.y = e
assert f.x... | c" | 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.y: B = None
self.txt = txt
c = A("c")
e = B("e")
h = B("h")
f = B("f")
c.q = h
e.x = c
e.y = f
h.x = c
h.y = e
f.x = c
f.y = e
assert f.x... | f | c | h | e | c | x | x | x | c | e | h | c | f | x | x | x | 4 | 7 | 2 | 4 | 1 |
620 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.v: A = None
self.txt = txt
d = A("d")
c = B("c")
e = B("e")
b = B("b")
j = A("j")
f = B("f")
i = A("i")
d.u = j
c.o = e
c.v = j
e.o = b
e... | d" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.v: A = None
self.txt = txt
d = A("d")
c = B("c")
e = B("e")
b = B("b")
j = A("j")
f = B("f")
i = A("i")
d.u = j
c.o = e
c.v = j
e.o = b
e... | b | f | e | b | d | x | x | x | d | b | e | f | b | x | x | x | 7 | 11 | 2 | 4 | 1 |
621 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
c = A("c")
b = B("b")
f = A("f")
d = A("d")
i = B("i")
g = A("g")
h = A("h")
c.z = g
b.o = i
f.z = c
d.z = h
i.o = b
g.z = d
h.z = c
as... | d" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
c = A("c")
b = B("b")
f = A("f")
d = A("d")
i = B("i")
g = A("g")
h = A("h")
c.z = g
b.o = i
f.z = c
d.z = h
i.o = b
g.z = d
h.z = c
as... | h | c | g | d | x | x | x | x | d | g | c | h | x | x | x | x | 7 | 7 | 2 | 3 | 0 |
622 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
h = A("h")
g = B("g")
b = A("b")
f = A("f")
a = B("a")
h.x = g
g.y = a
b.x = g
f.x = g
a.y = g
assert h.x.y.y.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
h = A("h")
g = B("g")
b = A("b")
f = A("f")
a = B("a")
h.x = g
g.y = a
b.x = g
f.x = g
a.y = g
assert h.x.y.y.y.txt == "a" | h | g | a | g | a | x | x | x | a | g | a | g | h | x | x | x | 5 | 5 | 2 | 4 | 2 |
623 | class A:
def __init__(self, txt: str):
self.x: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.x: B = None
self.txt = txt
h = A("h")
j = B("j")
g = A("g")
i = B("i")
d = A("d")
e = A("e")
h.x = j
h.u = i
j.s... | i" | class A:
def __init__(self, txt: str):
self.x: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.x: B = None
self.txt = txt
h = A("h")
j = B("j")
g = A("g")
i = B("i")
d = A("d")
e = A("e")
h.x = j
h.u = i
j.s... | g | i | j | i | x | x | x | x | i | j | i | g | x | x | x | x | 6 | 9 | 2 | 3 | 1 |
624 | 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
b = A("b")
a = B("a")
c = B("c")
e = A("e")
h = A("h")
j = B("j")
d = B("d")
b.y = d
a.q = c
c.q = d
e.y = j
h.y = a
j.q = c
d.q = a
as... | 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
b = A("b")
a = B("a")
c = B("c")
e = A("e")
h = A("h")
j = B("j")
d = B("d")
b.y = d
a.q = c
c.q = d
e.y = j
h.y = a
j.q = c
d.q = a
as... | a | c | d | a | c | d | x | x | d | c | a | d | c | a | x | x | 7 | 7 | 2 | 5 | 3 |
625 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
i = B("i")
j = A("j")
a = B("a")
e = A("e")
d = B("d")
b = B("b")
f.t = e
i.q = j
j.t = f
a.q = j
e.t = j
d.q = j
b.q = j
as... | e" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
i = B("i")
j = A("j")
a = B("a")
e = A("e")
d = B("d")
b = B("b")
f.t = e
i.q = j
j.t = f
a.q = j
e.t = j
d.q = j
b.q = j
as... | d | j | f | e | x | x | x | x | e | f | j | d | x | x | x | x | 7 | 7 | 2 | 3 | 0 |
626 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
e = A("e")
j = B("j")
a = A("a")
c = A("c")
h = B("h")
e.o = h
j.p = e
a.o = j
c.o = j
h.p = e
assert c.o.p.o.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: A = None
self.txt = txt
e = A("e")
j = B("j")
a = A("a")
c = A("c")
h = B("h")
e.o = h
j.p = e
a.o = j
c.o = j
h.p = e
assert c.o.p.o.txt == "h" | c | j | e | h | x | x | x | x | h | e | j | c | x | x | x | x | 5 | 5 | 2 | 3 | 0 |
627 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
a = A("a")
i = B("i")
e = A("e")
h = A("h")
j = B("j")
a.w = e
i.u = j
e.w = a
h.w = e
j.u = i
assert j.u.u.u.txt == " | i" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
a = A("a")
i = B("i")
e = A("e")
h = A("h")
j = B("j")
a.w = e
i.u = j
e.w = a
h.w = e
j.u = i
assert j.u.u.u.txt == "i" | j | i | j | i | x | x | x | x | i | j | i | j | x | x | x | x | 5 | 5 | 2 | 3 | 2 |
628 | class A:
def __init__(self, txt: str):
self.x: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.x: B = None
self.txt = txt
f = A("f")
h = B("h")
c = B("c")
a = A("a")
e = B("e")
i = A("i")
b = A("b")
f.x = i
... | c" | class A:
def __init__(self, txt: str):
self.x: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.x: B = None
self.txt = txt
f = A("f")
h = B("h")
c = B("c")
a = A("a")
e = B("e")
i = A("i")
b = A("b")
f.x = i
... | h | e | a | b | c | x | x | x | c | b | a | e | h | x | x | x | 7 | 14 | 2 | 4 | 0 |
629 | 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.w: B = None
self.txt = txt
h = A("h")
b = B("b")
a = A("a")
f = A("f")
d = B("d")
c = A("c")
j = A("j")
h.u = b
b.x = d
b.w = d
a.u = d
f... | b" | 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.w: B = None
self.txt = txt
h = A("h")
b = B("b")
a = A("a")
f = A("f")
d = B("d")
c = A("c")
j = A("j")
h.u = b
b.x = d
b.w = d
a.u = d
f... | j | b | d | b | x | x | x | x | b | d | b | j | x | x | x | x | 7 | 7 | 2 | 3 | 1 |
630 | 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: A = None
self.txt = txt
d = A("d")
e = B("e")
g = B("g")
d.o = e
e.y = d
e.z = d
g.y = d
g.z = d
assert e.y.o.z.txt == " | d" | 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: A = None
self.txt = txt
d = A("d")
e = B("e")
g = B("g")
d.o = e
e.y = d
e.z = d
g.y = d
g.z = d
assert e.y.o.z.txt == "d" | e | d | e | d | x | x | x | x | d | e | d | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
631 | class A:
def __init__(self, txt: str):
self.o: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
i = A("i")
c = B("c")
j = B("j")
d = A("d")
i.o = d
i.u = d
c.z = i
j.z = i
d.o = i
d.u = i
assert j.z.o.o.txt... | i" | class A:
def __init__(self, txt: str):
self.o: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
i = A("i")
c = B("c")
j = B("j")
d = A("d")
i.o = d
i.u = d
c.z = i
j.z = i
d.o = i
d.u = i
assert j.z.o.o.txt... | j | i | d | i | x | x | x | x | i | d | i | j | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
632 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.q: B = None
self.txt = txt
g = A("g")
c = B("c")
f = B("f")
j = B("j")
b = B("b")
e = A("e")
g.q = b
c.s = g
c.q = b
f.s = e
f.q = c
j.s ... | c" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.q: B = None
self.txt = txt
g = A("g")
c = B("c")
f = B("f")
j = B("j")
b = B("b")
e = A("e")
g.q = b
c.s = g
c.q = b
f.s = e
f.q = c
j.s ... | f | c | g | b | f | c | x | x | c | f | b | g | c | f | x | x | 6 | 10 | 2 | 5 | 2 |
633 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
g = A("g")
i = B("i")
d = A("d")
f = B("f")
g.t = f
i.v = d
d.t = i
f.v = d
assert f.v.t.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
g = A("g")
i = B("i")
d = A("d")
f = B("f")
g.t = f
i.v = d
d.t = i
f.v = d
assert f.v.t.v.txt == "d" | f | d | i | d | x | x | x | x | d | i | d | f | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
634 | class A:
def __init__(self, txt: str):
self.u: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.o: B = None
self.txt = txt
d = A("d")
j = B("j")
i = B("i")
b = B("b")
a = B("a")
d.u = a
d.o = j
j.s = d
j.o = ... | a" | class A:
def __init__(self, txt: str):
self.u: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.o: B = None
self.txt = txt
d = A("d")
j = B("j")
i = B("i")
b = B("b")
a = B("a")
d.u = a
d.o = j
j.s = d
j.o = ... | j | d | j | a | x | x | x | x | a | j | d | j | x | x | x | x | 5 | 10 | 2 | 3 | 1 |
635 | class A:
def __init__(self, txt: str):
self.t: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
e = A("e")
f = B("f")
a = A("a")
h = B("h")
b = A("b")
j = B("j")
e.t = b
e.o = h
f.z = e
a.t = b
a.o = f
h.z ... | a" | class A:
def __init__(self, txt: str):
self.t: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
e = A("e")
f = B("f")
a = A("a")
h = B("h")
b = A("b")
j = B("j")
e.t = b
e.o = h
f.z = e
a.t = b
a.o = f
h.z ... | f | e | h | a | x | x | x | x | a | h | e | f | x | x | x | x | 6 | 9 | 2 | 3 | 0 |
636 | 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.q: B = None
self.x: B = None
self.txt = txt
j = A("j")
b = B("b")
c = B("c")
j.x = b
j.z = c
b.q = c
b.x = c
c.q = b
c.x = b
asse... | b" | 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.q: B = None
self.x: B = None
self.txt = txt
j = A("j")
b = B("b")
c = B("c")
j.x = b
j.z = c
b.q = c
b.x = c
c.q = b
c.x = b
asse... | c | b | c | b | x | x | x | x | b | c | b | c | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
637 | class A:
def __init__(self, txt: str):
self.w: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.u: B = None
self.txt = txt
j = A("j")
f = B("f")
b = B("b")
i = A("i")
h = B("h")
j.w = h
j.x = i
f.p = i
f.u = ... | b" | class A:
def __init__(self, txt: str):
self.w: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.u: B = None
self.txt = txt
j = A("j")
f = B("f")
b = B("b")
i = A("i")
h = B("h")
j.w = h
j.x = i
f.p = i
f.u = ... | b | j | i | h | b | x | x | x | b | h | i | j | b | x | x | x | 5 | 10 | 2 | 4 | 1 |
638 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.v: A = None
self.txt = txt
i = A("i")
c = B("c")
h = B("h")
g = A("g")
i.q = c
c.r = h
c.v = i
h.r = c
h.v = g
g.q = h
assert i.q.r.v.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: B = None
self.v: A = None
self.txt = txt
i = A("i")
c = B("c")
h = B("h")
g = A("g")
i.q = c
c.r = h
c.v = i
h.r = c
h.v = g
g.q = h
assert i.q.r.v.txt... | i | c | h | g | x | x | x | x | g | h | c | i | x | x | x | x | 4 | 6 | 2 | 3 | 0 |
639 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.p: A = None
self.txt = txt
f = A("f")
j = B("j")
i = A("i")
f.w = j
j.r = i
j.p = f
i.w = j
assert j.r.w.r.txt == " | i" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.p: A = None
self.txt = txt
f = A("f")
j = B("j")
i = A("i")
f.w = j
j.r = i
j.p = f
i.w = j
assert j.r.w.r.txt == "i" | j | i | j | i | x | x | x | x | i | j | i | j | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
640 | 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.t: B = None
self.v: B = None
self.txt = txt
f = A("f")
i = B("i")
g = A("g")
b = A("b")
a = B("a")
h = B("h")
j = B("j")
f.p = g
... | 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.t: B = None
self.v: B = None
self.txt = txt
f = A("f")
i = B("i")
g = A("g")
b = A("b")
a = B("a")
h = B("h")
j = B("j")
f.p = g
... | f | g | i | j | i | j | h | x | h | j | i | j | i | g | f | x | 7 | 13 | 2 | 6 | 2 |
641 | 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: A = None
self.txt = txt
c = A("c")
g = B("g")
b = B("b")
f = A("f")
i = B("i")
j = A("j")
c.o = g
g.y = j
g.z = c
b.y = f
b.z = j
f.o ... | f" | 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: A = None
self.txt = txt
c = A("c")
g = B("g")
b = B("b")
f = A("f")
i = B("i")
j = A("j")
c.o = g
g.y = j
g.z = c
b.y = f
b.z = j
f.o ... | j | b | j | b | f | x | x | x | f | b | j | b | j | x | x | x | 6 | 9 | 2 | 4 | 2 |
642 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
h = A("h")
j = B("j")
e = B("e")
d = B("d")
i = A("i")
h.s = i
j.t = e
e.t = j
d.t = e
i.s = h
assert i.s.s.s.s.s.txt == " | h" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
h = A("h")
j = B("j")
e = B("e")
d = B("d")
i = A("i")
h.s = i
j.t = e
e.t = j
d.t = e
i.s = h
assert i.s.s.s.s.s.txt == "h" | i | h | i | h | i | h | x | x | h | i | h | i | h | i | x | x | 5 | 5 | 2 | 5 | 4 |
643 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.r: A = None
self.txt = txt
b = A("b")
g = B("g")
a = A("a")
j = B("j")
d = A("d")
b.x = a
g.u = j
g.r = b
a.x = d
j.u = g
j.r = b
d.x = b... | d" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.r: A = None
self.txt = txt
b = A("b")
g = B("g")
a = A("a")
j = B("j")
d = A("d")
b.x = a
g.u = j
g.r = b
a.x = d
j.u = g
j.r = b
d.x = b... | g | b | a | d | x | x | x | x | d | a | b | g | x | x | x | x | 5 | 7 | 2 | 3 | 0 |
644 | class A:
def __init__(self, txt: str):
self.w: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
i = B("i")
h = A("h")
a.w = h
a.t = h
i.z = h
h.w = a
h.t = a
assert a.w.t.t.txt == " | h" | class A:
def __init__(self, txt: str):
self.w: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
i = B("i")
h = A("h")
a.w = h
a.t = h
i.z = h
h.w = a
h.t = a
assert a.w.t.t.txt == "h" | a | h | a | h | x | x | x | x | h | a | h | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
645 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.v: A = None
self.txt = txt
c = A("c")
a = B("a")
b = A("b")
e = A("e")
d = A("d")
c.x = d
a.y = e
a.v = e
b.x = d
e.x = c
d.x = b
assert ... | d" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.v: A = None
self.txt = txt
c = A("c")
a = B("a")
b = A("b")
e = A("e")
d = A("d")
c.x = d
a.y = e
a.v = e
b.x = d
e.x = c
d.x = b
assert ... | d | b | d | b | d | x | x | x | d | b | d | b | d | x | x | x | 5 | 5 | 2 | 4 | 3 |
646 | class A:
def __init__(self, txt: str):
self.o: A = 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")
c = B("c")
d = B("d")
b = A("b")
j.o = b
j.u = b
c.t = j
d.t = j
b.o = j
b.u = j
assert d.t.u.o.txt... | j" | class A:
def __init__(self, txt: str):
self.o: A = 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")
c = B("c")
d = B("d")
b = A("b")
j.o = b
j.u = b
c.t = j
d.t = j
b.o = j
b.u = j
assert d.t.u.o.txt... | d | j | b | j | x | x | x | x | j | b | j | d | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
647 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.r: B = None
self.txt = txt
i = A("i")
b = B("b")
g = B("g")
i.r = b
b.y = i
b.r = g
g.y = i
g.r = b
assert g.y.r.r.txt == " | g" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.r: B = None
self.txt = txt
i = A("i")
b = B("b")
g = B("g")
i.r = b
b.y = i
b.r = g
g.y = i
g.r = b
assert g.y.r.r.txt == "g" | g | i | b | g | x | x | x | x | g | b | i | g | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
648 | class A:
def __init__(self, txt: str):
self.t: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
b = A("b")
h = B("h")
g = B("g")
c = B("c")
e = A("e")
j = B("j")
a = B("a")
b.t = j
b.v = e
h.u = b
g.u = b
c... | b" | class A:
def __init__(self, txt: str):
self.t: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
b = A("b")
h = B("h")
g = B("g")
c = B("c")
e = A("e")
j = B("j")
a = B("a")
b.t = j
b.v = e
h.u = b
g.u = b
c... | c | e | j | b | x | x | x | x | b | j | e | c | x | x | x | x | 7 | 9 | 2 | 3 | 0 |
649 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
a = A("a")
f = B("f")
d = A("d")
i = B("i")
a.y = d
f.t = i
d.y = a
i.t = f
assert a.y.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.t: B = None
self.txt = txt
a = A("a")
f = B("f")
d = A("d")
i = B("i")
a.y = d
f.t = i
d.y = a
i.t = f
assert a.y.y.y.y.txt == "a" | a | d | a | d | a | x | x | x | a | d | a | d | a | x | x | x | 4 | 4 | 2 | 4 | 3 |
650 | class A:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
a = A("a")
c = B("c")
i = B("i")
e = B("e")
f = B("f")
h = B("h")
j = B("j")
a.p = c
a.u = i
c.r = a
i.r = a
e... | c" | class A:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
a = A("a")
c = B("c")
i = B("i")
e = B("e")
f = B("f")
h = B("h")
j = B("j")
a.p = c
a.u = i
c.r = a
i.r = a
e... | j | a | i | a | c | a | c | x | c | a | c | a | i | a | j | x | 7 | 8 | 2 | 6 | 3 |
651 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
a = A("a")
h = B("h")
j = B("j")
g = B("g")
a.s = h
h.r = j
j.r = g
g.r = j
assert g.r.r.r.txt == " | j" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
a = A("a")
h = B("h")
j = B("j")
g = B("g")
a.s = h
h.r = j
j.r = g
g.r = j
assert g.r.r.r.txt == "j" | g | j | g | j | x | x | x | x | j | g | j | g | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
652 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
g = B("g")
i = A("i")
j.x = i
g.y = j
i.x = j
assert j.x.x.x.txt == " | i" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
g = B("g")
i = A("i")
j.x = i
g.y = j
i.x = j
assert j.x.x.x.txt == "i" | j | i | j | i | x | x | x | x | i | j | i | j | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
653 | class A:
def __init__(self, txt: str):
self.o: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.s: A = None
self.txt = txt
j = A("j")
c = B("c")
f = A("f")
g = B("g")
a = A("a")
h = B("h")
e = A("e")
j.o = c
... | j" | class A:
def __init__(self, txt: str):
self.o: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.s: A = None
self.txt = txt
j = A("j")
c = B("c")
f = A("f")
g = B("g")
a = A("a")
h = B("h")
e = A("e")
j.o = c
... | h | c | h | j | x | x | x | x | j | h | c | h | x | x | x | x | 7 | 14 | 2 | 3 | 1 |
654 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.o: A = None
self.txt = txt
c = A("c")
e = B("e")
h = A("h")
c.z = h
e.z = h
e.o = h
h.z = c
assert h.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.z: A = None
self.o: A = None
self.txt = txt
c = A("c")
e = B("e")
h = A("h")
c.z = h
e.z = h
e.o = h
h.z = c
assert h.z.z.z.txt == "c" | h | c | h | c | x | x | x | x | c | h | c | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
655 | class A:
def __init__(self, txt: str):
self.s: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.r: B = None
self.txt = txt
i = A("i")
g = B("g")
j = B("j")
b = B("b")
c = A("c")
i.s = b
i.v = j
g.p = j
g.r = ... | g" | class A:
def __init__(self, txt: str):
self.s: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.r: B = None
self.txt = txt
i = A("i")
g = B("g")
j = B("j")
b = B("b")
c = A("c")
i.s = b
i.v = j
g.p = j
g.r = ... | j | g | j | g | j | g | x | x | g | j | g | j | g | j | x | x | 5 | 6 | 2 | 5 | 4 |
656 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
d = A("d")
c = B("c")
g = A("g")
e = B("e")
d.o = g
c.u = e
g.o = d
e.u = c
assert c.u.u.u.txt == " | e" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
d = A("d")
c = B("c")
g = A("g")
e = B("e")
d.o = g
c.u = e
g.o = d
e.u = c
assert c.u.u.u.txt == "e" | c | e | c | e | x | x | x | x | e | c | e | c | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
657 | class A:
def __init__(self, txt: str):
self.s: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.r: A = None
self.txt = txt
d = A("d")
c = B("c")
e = B("e")
i = A("i")
g = A("g")
h = A("h")
b = B("b")
d.s = h
... | d" | class A:
def __init__(self, txt: str):
self.s: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.r: A = None
self.txt = txt
d = A("d")
c = B("c")
e = B("e")
i = A("i")
g = A("g")
h = A("h")
b = B("b")
d.s = h
... | b | i | d | g | d | x | x | x | d | g | d | i | b | x | x | x | 7 | 12 | 2 | 4 | 1 |
658 | 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
b = A("b")
h = B("h")
d = A("d")
j = A("j")
b.u = h
h.u = d
d.u = h
j.u = h
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
b = A("b")
h = B("h")
d = A("d")
j = A("j")
b.u = h
h.u = d
d.u = h
j.u = h
assert d.u.u.u.u.txt == "d" | d | h | d | h | d | x | x | x | d | h | d | h | d | x | x | x | 4 | 4 | 2 | 4 | 3 |
659 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.t: B = None
self.txt = txt
b = A("b")
g = B("g")
j = A("j")
d = A("d")
h = B("h")
b.y = j
g.q = b
g.t = h
j.y = b
d.y = j
h.q = b
h.t = g... | j" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.t: B = None
self.txt = txt
b = A("b")
g = B("g")
j = A("j")
d = A("d")
h = B("h")
b.y = j
g.q = b
g.t = h
j.y = b
d.y = j
h.q = b
h.t = g... | b | j | b | j | x | x | x | x | j | b | j | b | x | x | x | x | 5 | 7 | 2 | 3 | 2 |
660 | 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.y: B = None
self.txt = txt
e = A("e")
b = B("b")
g = A("g")
j = B("j")
h = A("h")
c = A("c")
i = A("i")
e.p = b
b.t = j
b.y = j
g.p = j
j... | b" | 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.y: B = None
self.txt = txt
e = A("e")
b = B("b")
g = A("g")
j = B("j")
h = A("h")
c = A("c")
i = A("i")
e.p = b
b.t = j
b.y = j
g.p = j
j... | i | b | j | b | x | x | x | x | b | j | b | i | x | x | x | x | 7 | 7 | 2 | 3 | 1 |
661 | class A:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.p: B = None
self.txt = txt
a = A("a")
d = B("d")
j = A("j")
c = A("c")
b = A("b")
e = B("e")
f = A("f")
a.x = f
... | e" | class A:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.p: B = None
self.txt = txt
a = A("a")
d = B("d")
j = A("j")
c = A("c")
b = A("b")
e = B("e")
f = A("f")
a.x = f
... | f | a | e | d | e | x | x | x | e | d | e | a | f | x | x | x | 7 | 12 | 2 | 4 | 1 |
662 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
e = A("e")
j = B("j")
g = B("g")
e.y = j
j.r = e
g.r = e
assert j.r.y.r.txt == " | e" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
e = A("e")
j = B("j")
g = B("g")
e.y = j
j.r = e
g.r = e
assert j.r.y.r.txt == "e" | j | e | j | e | x | x | x | x | e | j | e | j | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
663 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.y: B = None
self.txt = txt
b = A("b")
e = B("e")
i = B("i")
g = B("g")
c = B("c")
d = A("d")
b.p = e
e.x = b
e.y = g
i.x = d
i.y = c
g.x ... | b" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.y: B = None
self.txt = txt
b = A("b")
e = B("e")
i = B("i")
g = B("g")
c = B("c")
d = A("d")
b.p = e
e.x = b
e.y = g
i.x = d
i.y = c
g.x ... | c | b | e | b | x | x | x | x | b | e | b | c | x | x | x | x | 6 | 10 | 2 | 3 | 1 |
664 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.u: B = None
self.txt = txt
a = A("a")
e = B("e")
b = A("b")
f = B("f")
a.v = e
e.w = a
e.u = f
b.v = f
f.w = b
f.u = e
assert a.v.w.v.txt... | e" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.u: B = None
self.txt = txt
a = A("a")
e = B("e")
b = A("b")
f = B("f")
a.v = e
e.w = a
e.u = f
b.v = f
f.w = b
f.u = e
assert a.v.w.v.txt... | a | e | a | e | x | x | x | x | e | a | e | a | x | x | x | x | 4 | 6 | 2 | 3 | 2 |
665 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
h = A("h")
a = B("a")
b = B("b")
j = B("j")
h.x = a
a.r = h
a.u = h
b.r = h
b.u = h
j.r = h
j.u = h
assert h.x... | a" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
h = A("h")
a = B("a")
b = B("b")
j = B("j")
h.x = a
a.r = h
a.u = h
b.r = h
b.u = h
j.r = h
j.u = h
assert h.x... | h | a | h | a | x | x | x | x | a | h | a | h | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
666 | class A:
def __init__(self, txt: str):
self.p: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
a = A("a")
i = B("i")
g = B("g")
f = A("f")
h = A("h")
j = A("j")
c = A("c")
a.p = i
a.s = g
i.o = c
g.o = c
f... | g" | class A:
def __init__(self, txt: str):
self.p: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
a = A("a")
i = B("i")
g = B("g")
f = A("f")
h = A("h")
j = A("j")
c = A("c")
a.p = i
a.s = g
i.o = c
g.o = c
f... | h | i | c | g | c | g | c | g | g | c | g | c | g | c | i | h | 7 | 11 | 2 | 7 | 4 |
667 | class A:
def __init__(self, txt: str):
self.z: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
j = A("j")
a = B("a")
g = A("g")
b = A("b")
e = A("e")
c = B("c")
j.z = a
j.o = c
a.o = c
g.z = a
g.o = a
b.z ... | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
j = A("j")
a = B("a")
g = A("g")
b = A("b")
e = A("e")
c = B("c")
j.z = a
j.o = c
a.o = c
g.z = a
g.o = a
b.z ... | b | a | c | a | c | a | x | x | a | c | a | c | a | b | x | x | 6 | 8 | 2 | 5 | 3 |
668 | class A:
def __init__(self, txt: str):
self.q: A = None
self.z: 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")
j = A("j")
h = B("h")
c = B("c")
i.q = j
i.z = f
f.w = j
j.q = i
j.z = f
h.w = i
c.w = j... | j" | class A:
def __init__(self, txt: str):
self.q: A = None
self.z: 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")
j = A("j")
h = B("h")
c = B("c")
i.q = j
i.z = f
f.w = j
j.q = i
j.z = f
h.w = i
c.w = j... | i | j | i | f | j | x | x | x | j | f | i | j | i | x | x | x | 5 | 7 | 2 | 4 | 2 |
669 | 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.s: A = None
self.txt = txt
c = A("c")
d = B("d")
j = A("j")
c.z = d
d.p = c
d.s = c
j.z = d
assert d.s.z.p.txt == " | c" | 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.s: A = None
self.txt = txt
c = A("c")
d = B("d")
j = A("j")
c.z = d
d.p = c
d.s = c
j.z = d
assert d.s.z.p.txt == "c" | d | c | d | c | x | x | x | x | c | d | c | d | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
670 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.v: B = None
self.txt = txt
h = A("h")
a = B("a")
d = A("d")
g = B("g")
h.q = g
a.s = g
a.v = g
d.q = g
g.s = a
g.v = a
assert d.q.s.s.v.t... | a" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.v: B = None
self.txt = txt
h = A("h")
a = B("a")
d = A("d")
g = B("g")
h.q = g
a.s = g
a.v = g
d.q = g
g.s = a
g.v = a
assert d.q.s.s.v.t... | d | g | a | g | a | x | x | x | a | g | a | g | d | x | x | x | 4 | 4 | 2 | 4 | 2 |
671 | class A:
def __init__(self, txt: str):
self.w: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
a = A("a")
d = B("d")
h = B("h")
j = B("j")
e = A("e")
a.w = d
a.y = h
d.u = a
h.u = a
j.u = a
e.w = d
e.y = j... | a" | class A:
def __init__(self, txt: str):
self.w: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
a = A("a")
d = B("d")
h = B("h")
j = B("j")
e = A("e")
a.w = d
a.y = h
d.u = a
h.u = a
j.u = a
e.w = d
e.y = j... | j | a | d | a | x | x | x | x | a | d | a | j | x | x | x | x | 5 | 7 | 2 | 3 | 1 |
672 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
c = A("c")
g = B("g")
d = A("d")
h = A("h")
b = A("b")
f = B("f")
j = B("j")
c.y = h
g.v = d
d.y = h
h.y = c
b.y = h
f.v = c
j.v = b
as... | h" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
c = A("c")
g = B("g")
d = A("d")
h = A("h")
b = A("b")
f = B("f")
j = B("j")
c.y = h
g.v = d
d.y = h
h.y = c
b.y = h
f.v = c
j.v = b
as... | d | h | c | h | c | h | x | x | h | c | h | c | h | d | x | x | 7 | 7 | 2 | 5 | 3 |
673 | class A:
def __init__(self, txt: str):
self.p: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.w: B = None
self.txt = txt
d = A("d")
e = B("e")
c = B("c")
i = A("i")
d.p = e
d.z = c
e.z = i
e.w = c
c.z = i
c... | e" | class A:
def __init__(self, txt: str):
self.p: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.w: B = None
self.txt = txt
d = A("d")
e = B("e")
c = B("c")
i = A("i")
d.p = e
d.z = c
e.z = i
e.w = c
c.z = i
c... | c | e | i | e | x | x | x | x | e | i | e | c | x | x | x | x | 4 | 8 | 2 | 3 | 1 |
674 | class A:
def __init__(self, txt: str):
self.u: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.r: B = None
self.txt = txt
d = A("d")
i = B("i")
g = B("g")
a = B("a")
b = A("b")
c = A("c")
d.u = b
d.r = g
i.z... | g" | class A:
def __init__(self, txt: str):
self.u: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.r: B = None
self.txt = txt
d = A("d")
i = B("i")
g = B("g")
a = B("a")
b = A("b")
c = A("c")
d.u = b
d.r = g
i.z... | c | d | b | g | x | x | x | x | g | b | d | c | x | x | x | x | 6 | 12 | 2 | 3 | 0 |
675 | class A:
def __init__(self, txt: str):
self.t: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.o: A = None
self.txt = txt
h = A("h")
i = B("i")
c = A("c")
b = B("b")
j = B("j")
f = B("f")
h.t = c
h.x = c
i.v... | h" | class A:
def __init__(self, txt: str):
self.t: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.o: A = None
self.txt = txt
h = A("h")
i = B("i")
c = A("c")
b = B("b")
j = B("j")
f = B("f")
h.t = c
h.x = c
i.v... | b | j | b | j | b | j | h | x | h | j | b | j | b | j | b | x | 6 | 10 | 2 | 6 | 4 |
676 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.txt = txt
b = A("b")
g = B("g")
c = B("c")
h = A("h")
b.s = g
g.p = c
g.u = c
c.p = g
c.u = g
h.s = g
assert b.s.u.p.txt... | g" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.txt = txt
b = A("b")
g = B("g")
c = B("c")
h = A("h")
b.s = g
g.p = c
g.u = c
c.p = g
c.u = g
h.s = g
assert b.s.u.p.txt... | b | g | c | g | x | x | x | x | g | c | g | b | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
677 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
f = A("f")
c = B("c")
h = A("h")
f.x = c
c.p = h
h.x = c
assert c.p.x.p.txt == " | h" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
f = A("f")
c = B("c")
h = A("h")
f.x = c
c.p = h
h.x = c
assert c.p.x.p.txt == "h" | c | h | c | h | x | x | x | x | h | c | h | c | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
678 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.s: B = None
self.txt = txt
d = A("d")
i = B("i")
f = A("f")
b = B("b")
d.y = b
i.r = b
i.s = b
f.y = b
b.r = i
b.s = i
assert b.s.r.s.txt... | i" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.s: B = None
self.txt = txt
d = A("d")
i = B("i")
f = A("f")
b = B("b")
d.y = b
i.r = b
i.s = b
f.y = b
b.r = i
b.s = i
assert b.s.r.s.txt... | b | i | b | i | x | x | x | x | i | b | i | b | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
679 | 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.r: B = None
self.txt = txt
e = A("e")
b = B("b")
g = A("g")
j = B("j")
e.z = g
e.r = g
b.r = j
g.z = e
g.r = e
j.r = b
assert b.r.r.r.r.t... | b" | 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.r: B = None
self.txt = txt
e = A("e")
b = B("b")
g = A("g")
j = B("j")
e.z = g
e.r = g
b.r = j
g.z = e
g.r = e
j.r = b
assert b.r.r.r.r.t... | b | j | b | j | b | x | x | x | b | j | b | j | b | x | x | x | 4 | 4 | 2 | 4 | 3 |
680 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.t: A = None
self.txt = txt
a = A("a")
e = B("e")
g = B("g")
a.q = g
e.r = g
e.t = a
g.r = e
g.t = a
assert g.r.r.t.txt == " | a" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.t: A = None
self.txt = txt
a = A("a")
e = B("e")
g = B("g")
a.q = g
e.r = g
e.t = a
g.r = e
g.t = a
assert g.r.r.t.txt == "a" | g | e | g | a | x | x | x | x | a | g | e | g | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
681 | class A:
def __init__(self, txt: str):
self.r: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
j = A("j")
h = B("h")
i = A("i")
j.r = h
j.z = h
h.r = i
i.r = h
i.z = h
assert j.z.r.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.r: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
j = A("j")
h = B("h")
i = A("i")
j.r = h
j.z = h
h.r = i
i.r = h
i.z = h
assert j.z.r.z.txt == "h" | j | h | i | h | x | x | x | x | h | i | h | j | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
682 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.z: A = None
self.txt = txt
a = A("a")
g = B("g")
b = A("b")
c = B("c")
a.x = c
g.x = a
g.z = a
b.x = c
c.x = b
c.z = a
assert a.x.x.x.z.t... | a" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.z: A = None
self.txt = txt
a = A("a")
g = B("g")
b = A("b")
c = B("c")
a.x = c
g.x = a
g.z = a
b.x = c
c.x = b
c.z = a
assert a.x.x.x.z.t... | a | c | b | c | a | x | x | x | a | c | b | c | a | x | x | x | 4 | 5 | 2 | 4 | 2 |
683 | class A:
def __init__(self, txt: str):
self.t: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
h = A("h")
f = B("f")
c = B("c")
b = B("b")
i = B("i")
j = B("j")
a = A("a")
h.t = c
h.p = j
f.z = h
c.z = a
b... | a" | class A:
def __init__(self, txt: str):
self.t: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
h = A("h")
f = B("f")
c = B("c")
b = B("b")
i = B("i")
j = B("j")
a = A("a")
h.t = c
h.p = j
f.z = h
c.z = a
b... | b | h | j | a | b | h | j | a | a | j | h | b | a | j | h | b | 7 | 9 | 2 | 7 | 4 |
684 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.x: B = None
self.txt = txt
a = A("a")
h = B("h")
f = B("f")
g = A("g")
i = A("i")
a.u = f
h.w = g
h.x = f
f.w = a
f.x = h
g.u = f
i.u = h... | h" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.x: B = None
self.txt = txt
a = A("a")
h = B("h")
f = B("f")
g = A("g")
i = A("i")
a.u = f
h.w = g
h.x = f
f.w = a
f.x = h
g.u = f
i.u = h... | a | f | h | g | f | h | x | x | h | f | g | h | f | a | x | x | 5 | 7 | 2 | 5 | 2 |
685 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.v: B = None
self.txt = txt
e = A("e")
g = B("g")
b = B("b")
h = A("h")
d = A("d")
j = A("j")
a = B("a")
e.q = b
g.y = d
g.v = a
b.y = d
b... | a" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.v: B = None
self.txt = txt
e = A("e")
g = B("g")
b = B("b")
h = A("h")
d = A("d")
j = A("j")
a = B("a")
e.q = b
g.y = d
g.v = a
b.y = d
b... | b | a | g | a | d | g | a | x | a | g | d | a | g | a | b | x | 7 | 10 | 2 | 6 | 3 |
686 | class A:
def __init__(self, txt: str):
self.v: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.z: B = None
self.txt = txt
f = A("f")
h = B("h")
e = B("e")
i = A("i")
g = B("g")
j = B("j")
a = B("a")
f.v = j
... | a" | class A:
def __init__(self, txt: str):
self.v: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.z: B = None
self.txt = txt
f = A("f")
h = B("h")
e = B("e")
i = A("i")
g = B("g")
j = B("j")
a = B("a")
f.v = j
... | a | j | e | g | a | j | a | x | a | j | a | g | e | j | a | x | 7 | 13 | 2 | 6 | 3 |
687 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.y: A = None
self.txt = txt
c = A("c")
g = B("g")
e = B("e")
i = B("i")
d = B("d")
b = B("b")
j = B("j")
c.r = d
g.q = c
g.y = c
e.q = c
e... | c" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.y: A = None
self.txt = txt
c = A("c")
g = B("g")
e = B("e")
i = B("i")
d = B("d")
b = B("b")
j = B("j")
c.r = d
g.q = c
g.y = c
e.q = c
e... | i | c | d | c | x | x | x | x | c | d | c | i | x | x | x | x | 7 | 7 | 2 | 3 | 1 |
688 | 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.v: A = None
self.txt = txt
g = A("g")
e = B("e")
a = B("a")
i = A("i")
f = B("f")
g.z = i
e.o = i
e.v = g
a.o = i
a.v = g
i.z = g
f.o = g... | i" | 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.v: A = None
self.txt = txt
g = A("g")
e = B("e")
a = B("a")
i = A("i")
f = B("f")
g.z = i
e.o = i
e.v = g
a.o = i
a.v = g
i.z = g
f.o = g... | e | i | g | i | x | x | x | x | i | g | i | e | x | x | x | x | 5 | 8 | 2 | 3 | 1 |
689 | class A:
def __init__(self, txt: str):
self.v: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.w: A = None
self.txt = txt
e = A("e")
j = B("j")
g = B("g")
d = A("d")
f = A("f")
a = A("a")
h = A("h")
e.v = j
... | h" | class A:
def __init__(self, txt: str):
self.v: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.w: A = None
self.txt = txt
e = A("e")
j = B("j")
g = B("g")
d = A("d")
f = A("f")
a = A("a")
h = A("h")
e.v = j
... | e | g | j | h | x | x | x | x | h | j | g | e | x | x | x | x | 7 | 11 | 2 | 3 | 0 |
690 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
f = A("f")
a = B("a")
h = A("h")
i = A("i")
j = A("j")
b = B("b")
g = B("g")
f.v = j
a.v = f
h.v = f
i.v = j
j.v = f
b.v = f
g.v = h
as... | j" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
f = A("f")
a = B("a")
h = A("h")
i = A("i")
j = A("j")
b = B("b")
g = B("g")
f.v = j
a.v = f
h.v = f
i.v = j
j.v = f
b.v = f
g.v = h
as... | j | f | j | f | j | f | j | x | j | f | j | f | j | f | j | x | 7 | 7 | 2 | 6 | 5 |
691 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
i = A("i")
h = B("h")
b = B("b")
i.z = b
h.y = i
b.y = i
assert h.y.z.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
i = A("i")
h = B("h")
b = B("b")
i.z = b
h.y = i
b.y = i
assert h.y.z.y.txt == "i" | h | i | b | i | x | x | x | x | i | b | i | h | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
692 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.v: B = None
self.txt = txt
f = A("f")
h = B("h")
a = B("a")
b = B("b")
f.r = h
h.z = a
h.v = a
a.z = b
a.v = h
b.z = h
b.v = h
assert h.z... | a" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.v: B = None
self.txt = txt
f = A("f")
h = B("h")
a = B("a")
b = B("b")
f.r = h
h.z = a
h.v = a
a.z = b
a.v = h
b.z = h
b.v = h
assert h.z... | h | a | h | a | x | x | x | x | a | h | a | h | x | x | x | x | 4 | 5 | 2 | 3 | 2 |
693 | class A:
def __init__(self, txt: str):
self.v: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
e = A("e")
b = B("b")
i = B("i")
h = A("h")
j = B("j")
e.v = i
e.o = i
b.t = e
i.t = h
h.v = j
h.o = i
j.t = h... | h" | class A:
def __init__(self, txt: str):
self.v: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
e = A("e")
b = B("b")
i = B("i")
h = A("h")
j = B("j")
e.v = i
e.o = i
b.t = e
i.t = h
h.v = j
h.o = i
j.t = h... | j | h | j | h | x | x | x | x | h | j | h | j | x | x | x | x | 5 | 6 | 2 | 3 | 2 |
694 | 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.txt = txt
i = A("i")
h = B("h")
j = A("j")
d = A("d")
c = A("c")
b = B("b")
g = A("g")
i.v = d
i.z = j
h.v = b
j.v = g
j... | b" | 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.txt = txt
i = A("i")
h = B("h")
j = A("j")
d = A("d")
c = A("c")
b = B("b")
g = A("g")
i.v = d
i.z = j
h.v = b
j.v = g
j... | b | h | b | h | b | x | x | x | b | h | b | h | b | x | x | x | 7 | 11 | 2 | 4 | 3 |
695 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.t: B = None
self.txt = txt
i = A("i")
f = B("f")
b = B("b")
c = A("c")
g = B("g")
j = A("j")
e = B("e")
i.p = j
f.y = b
f.t = e
b.y = e
b... | e" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.t: B = None
self.txt = txt
i = A("i")
f = B("f")
b = B("b")
c = A("c")
g = B("g")
j = A("j")
e = B("e")
i.p = j
f.y = b
f.t = e
b.y = e
b... | b | e | g | f | e | g | f | e | e | f | g | e | f | g | e | b | 7 | 10 | 2 | 7 | 4 |
696 | class A:
def __init__(self, txt: str):
self.z: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.s: A = None
self.txt = txt
d = A("d")
e = B("e")
a = B("a")
b = A("b")
g = A("g")
j = A("j")
f = A("f")
d.z = e
... | d" | class A:
def __init__(self, txt: str):
self.z: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.s: A = None
self.txt = txt
d = A("d")
e = B("e")
a = B("a")
b = A("b")
g = A("g")
j = A("j")
f = A("f")
d.z = e
... | e | g | e | g | e | d | x | x | d | e | g | e | g | e | x | x | 7 | 12 | 2 | 5 | 3 |
697 | class A:
def __init__(self, txt: str):
self.t: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.p: B = None
self.txt = txt
b = A("b")
i = B("i")
d = B("d")
h = A("h")
b.t = i
b.o = i
i.o = d
i.p = d
d.o = i
d... | d" | class A:
def __init__(self, txt: str):
self.t: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.p: B = None
self.txt = txt
b = A("b")
i = B("i")
d = B("d")
h = A("h")
b.t = i
b.o = i
i.o = d
i.p = d
d.o = i
d... | h | i | d | i | d | x | x | x | d | i | d | i | h | x | x | x | 4 | 4 | 2 | 4 | 2 |
698 | class A:
def __init__(self, txt: str):
self.t: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
i = A("i")
c = B("c")
h = B("h")
g = A("g")
e = A("e")
b = A("b")
i.t = g
i.q = g
c.x = i
h.x = i
g.t = b
g.q ... | g" | class A:
def __init__(self, txt: str):
self.t: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
i = A("i")
c = B("c")
h = B("h")
g = A("g")
e = A("e")
b = A("b")
i.t = g
i.q = g
c.x = i
h.x = i
g.t = b
g.q ... | g | b | i | g | x | x | x | x | g | i | b | g | x | x | x | x | 6 | 8 | 2 | 3 | 1 |
699 | class A:
def __init__(self, txt: str):
self.w: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
i = A("i")
g = B("g")
b = B("b")
c = B("c")
j = B("j")
h = A("h")
i.w = h
i.r = h
g.r = i
b.r = h
c.r = i
j.r ... | i" | class A:
def __init__(self, txt: str):
self.w: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
i = A("i")
g = B("g")
b = B("b")
c = B("c")
j = B("j")
h = A("h")
i.w = h
i.r = h
g.r = i
b.r = h
c.r = i
j.r ... | i | h | i | h | i | h | i | x | i | h | i | h | i | h | i | x | 6 | 6 | 2 | 6 | 5 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.