id int64 0 6k | 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 | num_nodes int64 3 7 | num_edges int64 3 29 | num_classes int64 2 7 | path_length int64 3 7 | num_cycle int64 0 6 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
700 | 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
h = A("h")
g = B("g")
f = B("f")
h.v = g
g.s = h
f.s = h
assert g.s.v.s.txt == " | h" | 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
h = A("h")
g = B("g")
f = B("f")
h.v = g
g.s = h
f.s = h
assert g.s.v.s.txt == "h" | g | h | g | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
701 | class A:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.txt = txt
f = A("f")
b = B("b")
h = B("h")
d = B("d")
c = B("c")
e = B("e")
i = A("i")
f.r = i
... | d" | class A:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.txt = txt
f = A("f")
b = B("b")
h = B("h")
d = B("d")
c = B("c")
e = B("e")
i = A("i")
f.r = i
... | b | d | c | h | d | c | h | d | 7 | 11 | 2 | 7 | 4 |
702 | 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.t: A = None
self.y: A = None
self.txt = txt
a = A("a")
f = B("f")
i = A("i")
a.v = f
a.s = i
f.t = a
f.y = i
i.v = f
i.s = a
asse... | a" | 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.t: A = None
self.y: A = None
self.txt = txt
a = A("a")
f = B("f")
i = A("i")
a.v = f
a.s = i
f.t = a
f.y = i
i.v = f
i.s = a
asse... | f | i | f | a | x | x | x | x | 3 | 6 | 2 | 3 | 1 |
703 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
a = A("a")
e = B("e")
g = B("g")
a.p = g
e.w = g
g.w = e
assert e.w.w.w.txt == " | g" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
a = A("a")
e = B("e")
g = B("g")
a.p = g
e.w = g
g.w = e
assert e.w.w.w.txt == "g" | e | g | e | g | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
704 | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
d = A("d")
j = B("j")
b = B("b")
c = A("c")
a = B("a")
h = B("h")
d.u = b
d.z = c
j.r = c
b.r = c
c.u = a
c.z ... | c" | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
d = A("d")
j = B("j")
b = B("b")
c = A("c")
a = B("a")
h = B("h")
d.u = b
d.z = c
j.r = c
b.r = c
c.u = a
c.z ... | h | d | b | c | d | c | x | x | 6 | 8 | 2 | 5 | 2 |
705 | 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.o: A = None
self.txt = txt
d = A("d")
i = B("i")
e = A("e")
b = A("b")
a = B("a")
g = B("g")
c = A("c")
d.p = c
i.y = a
i.o = b
e.p = d
b... | d" | 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.o: A = None
self.txt = txt
d = A("d")
i = B("i")
e = A("e")
b = A("b")
a = B("a")
g = B("g")
c = A("c")
d.p = c
i.y = a
i.o = b
e.p = d
b... | g | c | d | c | d | x | x | x | 7 | 10 | 2 | 4 | 2 |
706 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
e = A("e")
b = B("b")
g = A("g")
d = A("d")
a = B("a")
e.o = g
b.v = d
g.o = d
d.o = g
a.v = e
assert a.v.o.o.o.txt == " | g" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
e = A("e")
b = B("b")
g = A("g")
d = A("d")
a = B("a")
e.o = g
b.v = d
g.o = d
d.o = g
a.v = e
assert a.v.o.o.o.txt == "g" | a | e | g | d | g | x | x | x | 5 | 5 | 2 | 4 | 1 |
707 | 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
h = A("h")
g = B("g")
a = A("a")
f = B("f")
c = B("c")
d = A("d")
i = A("i")
h.v = g
g.y = h
a.v = c
f.y = d
c.y = a
d.v = c
i.v = c
as... | h" | 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
h = A("h")
g = B("g")
a = A("a")
f = B("f")
c = B("c")
d = A("d")
i = A("i")
h.v = g
g.y = h
a.v = c
f.y = d
c.y = a
d.v = c
i.v = c
as... | h | g | h | g | h | x | x | x | 7 | 7 | 2 | 4 | 3 |
708 | class A:
def __init__(self, txt: str):
self.x: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
g = A("g")
h = B("h")
c = A("c")
d = B("d")
e = B("e")
a = B("a")
g.x = d
g.w = c
h.w = c
c.x = e
c.w = g
d.w ... | c" | class A:
def __init__(self, txt: str):
self.x: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
g = A("g")
h = B("h")
c = A("c")
d = B("d")
e = B("e")
a = B("a")
g.x = d
g.w = c
h.w = c
c.x = e
c.w = g
d.w ... | a | g | d | c | x | x | x | x | 6 | 8 | 2 | 3 | 0 |
709 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.x: A = None
self.txt = txt
f = A("f")
d = B("d")
h = A("h")
e = A("e")
c = B("c")
f.s = d
d.r = f
d.x = h
h.s = d
e.s = c
c.r = e
c.x = f... | f" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.x: A = None
self.txt = txt
f = A("f")
d = B("d")
h = A("h")
e = A("e")
c = B("c")
f.s = d
d.r = f
d.x = h
h.s = d
e.s = c
c.r = e
c.x = f... | c | e | c | f | d | f | x | x | 5 | 7 | 2 | 5 | 2 |
710 | class A:
def __init__(self, txt: str):
self.q: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
f = A("f")
c = B("c")
d = A("d")
h = B("h")
a.q = d
a.t = f
b.z... | a" | class A:
def __init__(self, txt: str):
self.q: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
a = A("a")
b = B("b")
f = A("f")
c = B("c")
d = A("d")
h = B("h")
a.q = d
a.t = f
b.z... | a | f | a | f | a | x | x | x | 6 | 11 | 2 | 4 | 3 |
711 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
a = A("a")
f = B("f")
j = A("j")
i = B("i")
d = A("d")
a.p = f
f.u = j
j.p = i
i.u = j
d.p = i
assert f.u.p.u.p.u.txt == " | j" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
a = A("a")
f = B("f")
j = A("j")
i = B("i")
d = A("d")
a.p = f
f.u = j
j.p = i
i.u = j
d.p = i
assert f.u.p.u.p.u.txt == "j" | f | j | i | j | i | j | x | x | 5 | 5 | 2 | 5 | 3 |
712 | class A:
def __init__(self, txt: str):
self.u: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.o: B = None
self.txt = txt
c = A("c")
e = B("e")
d = A("d")
i = B("i")
a = B("a")
c.u = e
c.p = d
e.x = a
e.o = ... | a" | class A:
def __init__(self, txt: str):
self.u: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.o: B = None
self.txt = txt
c = A("c")
e = B("e")
d = A("d")
i = B("i")
a = B("a")
c.u = e
c.p = d
e.x = a
e.o = ... | d | a | i | a | x | x | x | x | 5 | 10 | 2 | 3 | 1 |
713 | 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: A = None
self.y: B = None
self.txt = txt
i = A("i")
f = B("f")
b = A("b")
g = A("g")
j = B("j")
c = A("c")
d = A("d")
i.t = g
... | i" | 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: A = None
self.y: B = None
self.txt = txt
i = A("i")
f = B("f")
b = A("b")
g = A("g")
j = B("j")
c = A("c")
d = A("d")
i.t = g
... | b | g | d | i | g | d | i | x | 7 | 12 | 2 | 6 | 3 |
714 | 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
d = A("d")
j = B("j")
e = B("e")
i = A("i")
h = B("h")
f = A("f")
d.x = h
j.y = e
e.y = h
i.x = e
h.y = j
f.x = j
assert d.x.y.y.y.y.y.... | e" | 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
d = A("d")
j = B("j")
e = B("e")
i = A("i")
h = B("h")
f = A("f")
d.x = h
j.y = e
e.y = h
i.x = e
h.y = j
f.x = j
assert d.x.y.y.y.y.y.... | d | h | j | e | h | j | e | x | 6 | 6 | 2 | 6 | 3 |
715 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
b = A("b")
g = B("g")
i = A("i")
h = B("h")
b.p = g
g.y = h
i.p = h
h.y = g
assert h.y.y.y.txt == " | g" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
b = A("b")
g = B("g")
i = A("i")
h = B("h")
b.p = g
g.y = h
i.p = h
h.y = g
assert h.y.y.y.txt == "g" | h | g | h | g | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
716 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
i = A("i")
b = B("b")
f = B("f")
j = B("j")
i.r = b
b.u = i
f.u = i
j.u = i
assert f.u.r.u.r.txt == " | b" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
i = A("i")
b = B("b")
f = B("f")
j = B("j")
i.r = b
b.u = i
f.u = i
j.u = i
assert f.u.r.u.r.txt == "b" | f | i | b | i | b | x | x | x | 4 | 4 | 2 | 4 | 2 |
717 | class A:
def __init__(self, txt: str):
self.z: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.z: A = None
self.txt = txt
b = A("b")
h = B("h")
a = B("a")
g = B("g")
e = A("e")
b.z = e
b.x = g
h.o = a
h.z = ... | b" | class A:
def __init__(self, txt: str):
self.z: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.z: A = None
self.txt = txt
b = A("b")
h = B("h")
a = B("a")
g = B("g")
e = A("e")
b.z = e
b.x = g
h.o = a
h.z = ... | a | g | e | a | b | x | x | x | 5 | 10 | 2 | 4 | 1 |
718 | class A:
def __init__(self, txt: str):
self.q: 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")
i = A("i")
a.q = i
e.v = i
i.q = a
assert e.v.q.q.txt == " | i" | class A:
def __init__(self, txt: str):
self.q: 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")
i = A("i")
a.q = i
e.v = i
i.q = a
assert e.v.q.q.txt == "i" | e | i | a | i | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
719 | 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.t: A = None
self.txt = txt
e = A("e")
b = B("b")
c = A("c")
e.y = b
b.u = e
b.t = e
c.y = b
assert c.y.u.y.txt == " | b" | 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.t: A = None
self.txt = txt
e = A("e")
b = B("b")
c = A("c")
e.y = b
b.u = e
b.t = e
c.y = b
assert c.y.u.y.txt == "b" | c | b | e | b | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
720 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
j = B("j")
a = B("a")
f = B("f")
c = B("c")
h = B("h")
e = A("e")
d.q = j
j.z = d
a.z = d
f.z = d
c.z = e
h.z = d
e.q = a
as... | j" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
j = B("j")
a = B("a")
f = B("f")
c = B("c")
h = B("h")
e = A("e")
d.q = j
j.z = d
a.z = d
f.z = d
c.z = e
h.z = d
e.q = a
as... | c | e | a | d | j | x | x | x | 7 | 7 | 2 | 4 | 0 |
721 | 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.y: B = None
self.txt = txt
h = A("h")
c = B("c")
e = B("e")
j = B("j")
a = A("a")
h.t = c
c.v = a
c.y = e
e.v = a
e.y = j
j.v = a
j.y = e... | a" | 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.y: B = None
self.txt = txt
h = A("h")
c = B("c")
e = B("e")
j = B("j")
a = A("a")
h.t = c
c.v = a
c.y = e
e.v = a
e.y = j
j.v = a
j.y = e... | a | j | e | a | x | x | x | x | 5 | 8 | 2 | 3 | 1 |
722 | class A:
def __init__(self, txt: str):
self.w: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.v: B = None
self.txt = txt
e = A("e")
d = B("d")
j = B("j")
c = B("c")
i = A("i")
a = A("a")
e.w = d
e.o = i
d.z... | c" | class A:
def __init__(self, txt: str):
self.w: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.v: B = None
self.txt = txt
e = A("e")
d = B("d")
j = B("j")
c = B("c")
i = A("i")
a = A("a")
e.w = d
e.o = i
d.z... | c | d | j | d | c | x | x | x | 6 | 11 | 2 | 4 | 2 |
723 | 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.s: A = None
self.o: A = None
self.txt = txt
e = A("e")
a = B("a")
j = A("j")
i = A("i")
h = B("h")
e.w = i
e.o = j
a.s = j
a.o = ... | j" | 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.s: A = None
self.o: A = None
self.txt = txt
e = A("e")
a = B("a")
j = A("j")
i = A("i")
h = B("h")
e.w = i
e.o = j
a.s = j
a.o = ... | a | e | j | i | j | x | x | x | 5 | 10 | 2 | 4 | 1 |
724 | class A:
def __init__(self, txt: str):
self.x: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.q: A = None
self.txt = txt
a = A("a")
j = B("j")
i = A("i")
f = A("f")
a.x = i
a.t = i
j.t = a
j.q = a
i.x = f
i... | i" | class A:
def __init__(self, txt: str):
self.x: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.q: A = None
self.txt = txt
a = A("a")
j = B("j")
i = A("i")
f = A("f")
a.x = i
a.t = i
j.t = a
j.q = a
i.x = f
i... | i | f | i | a | i | x | x | x | 4 | 5 | 2 | 4 | 2 |
725 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
b = A("b")
e = B("e")
i = B("i")
f = A("f")
j = B("j")
b.u = f
e.r = b
i.r = b
f.u = b
j.r = b
assert j.r.u.u.u.txt == " | f" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
b = A("b")
e = B("e")
i = B("i")
f = A("f")
j = B("j")
b.u = f
e.r = b
i.r = b
f.u = b
j.r = b
assert j.r.u.u.u.txt == "f" | j | b | f | b | f | x | x | x | 5 | 5 | 2 | 4 | 2 |
726 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.z: B = None
self.txt = txt
f = A("f")
d = B("d")
a = B("a")
i = B("i")
b = B("b")
e = A("e")
f.y = e
d.w = a
d.z = a
a.w = b
a.z = i
i.w ... | e" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.z: B = None
self.txt = txt
f = A("f")
d = B("d")
a = B("a")
i = B("i")
b = B("b")
e = A("e")
f.y = e
d.w = a
d.z = a
a.w = b
a.z = i
i.w ... | e | f | e | f | e | f | e | x | 6 | 9 | 2 | 6 | 5 |
727 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.v: A = None
self.txt = txt
j = A("j")
g = B("g")
i = B("i")
d = B("d")
b = A("b")
e = B("e")
j.r = g
g.u = j
g.v = j
i.u = b
i.v = j
d.u ... | j" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.v: A = None
self.txt = txt
j = A("j")
g = B("g")
i = B("i")
d = B("d")
b = A("b")
e = B("e")
j.r = g
g.u = j
g.v = j
i.u = b
i.v = j
d.u ... | j | g | j | g | j | g | j | x | 6 | 8 | 2 | 6 | 5 |
728 | class A:
def __init__(self, txt: str):
self.z: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.w: A = None
self.txt = txt
j = A("j")
d = B("d")
c = A("c")
a = B("a")
g = B("g")
b = A("b")
j.z = c
j.x = d
d.v... | c" | class A:
def __init__(self, txt: str):
self.z: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.w: A = None
self.txt = txt
j = A("j")
d = B("d")
c = A("c")
a = B("a")
g = B("g")
b = A("b")
j.z = c
j.x = d
d.v... | d | a | d | j | c | x | x | x | 6 | 12 | 2 | 4 | 1 |
729 | 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
b = A("b")
i = B("i")
f = A("f")
h = A("h")
g = B("g")
b.w = i
i.u = f
f.w = g
h.w = g
g.u = h
assert g.u.w.u.txt == " | h" | 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
b = A("b")
i = B("i")
f = A("f")
h = A("h")
g = B("g")
b.w = i
i.u = f
f.w = g
h.w = g
g.u = h
assert g.u.w.u.txt == "h" | g | h | g | h | x | x | x | x | 5 | 5 | 2 | 3 | 2 |
730 | class A:
def __init__(self, txt: str):
self.u: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
d = A("d")
j = B("j")
a = A("a")
d.u = a
d.v = j
j.o = d
a.u = d
a.v = j
assert j.o.v.o.txt == " | d" | class A:
def __init__(self, txt: str):
self.u: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
d = A("d")
j = B("j")
a = A("a")
d.u = a
d.v = j
j.o = d
a.u = d
a.v = j
assert j.o.v.o.txt == "d" | j | d | j | d | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
731 | class A:
def __init__(self, txt: str):
self.u: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
b = A("b")
c = B("c")
j = A("j")
b.u = j
b.z = j
c.x = j
j.u = b
j.z = b
assert c.x.z.u.txt == " | j" | class A:
def __init__(self, txt: str):
self.u: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
b = A("b")
c = B("c")
j = A("j")
b.u = j
b.z = j
c.x = j
j.u = b
j.z = b
assert c.x.z.u.txt == "j" | c | j | b | j | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
732 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
j = A("j")
c = B("c")
f = A("f")
a = B("a")
h = A("h")
i = A("i")
j.u = h
c.q = a
f.u = h
a.q = c
h.u = f
i.u = j
assert f.u.u.u.u.txt ... | f" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
j = A("j")
c = B("c")
f = A("f")
a = B("a")
h = A("h")
i = A("i")
j.u = h
c.q = a
f.u = h
a.q = c
h.u = f
i.u = j
assert f.u.u.u.u.txt ... | f | h | f | h | f | x | x | x | 6 | 6 | 2 | 4 | 3 |
733 | 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.txt = txt
d = A("d")
a = B("a")
c = B("c")
d.v = a
a.o = c
c.o = a
assert a.o.o.o.txt == " | c" | 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.txt = txt
d = A("d")
a = B("a")
c = B("c")
d.v = a
a.o = c
c.o = a
assert a.o.o.o.txt == "c" | a | c | a | c | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
734 | class A:
def __init__(self, txt: str):
self.p: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
j = A("j")
f = B("f")
e = A("e")
b = B("b")
i = A("i")
j.p = e
j.v = i
f.o = i
e.p = i
e.v = j
b.o = e
i.p = e... | j" | class A:
def __init__(self, txt: str):
self.p: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
j = A("j")
f = B("f")
e = A("e")
b = B("b")
i = A("i")
j.p = e
j.v = i
f.o = i
e.p = i
e.v = j
b.o = e
i.p = e... | i | e | i | e | j | x | x | x | 5 | 7 | 2 | 4 | 2 |
735 | class A:
def __init__(self, txt: str):
self.s: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
e = A("e")
h = B("h")
j = B("j")
i = A("i")
e.s = h
e.x = h
h.z = e
j.z = i
i.s = h
i.x = j
assert h.z.x.z.txt... | e" | class A:
def __init__(self, txt: str):
self.s: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
e = A("e")
h = B("h")
j = B("j")
i = A("i")
e.s = h
e.x = h
h.z = e
j.z = i
i.s = h
i.x = j
assert h.z.x.z.txt... | h | e | h | e | x | x | x | x | 4 | 5 | 2 | 3 | 2 |
736 | 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.o: A = None
self.txt = txt
i = A("i")
j = B("j")
h = B("h")
b = B("b")
g = A("g")
d = B("d")
c = B("c")
i.p = c
j.r = g
j.o = i
h.r = g
h... | g" | 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.o: A = None
self.txt = txt
i = A("i")
j = B("j")
h = B("h")
b = B("b")
g = A("g")
d = B("d")
c = B("c")
i.p = c
j.r = g
j.o = i
h.r = g
h... | d | g | d | g | x | x | x | x | 7 | 9 | 2 | 3 | 2 |
737 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.u: A = None
self.txt = txt
c = A("c")
j = B("j")
i = B("i")
h = B("h")
c.y = i
j.s = c
j.u = c
i.s = c
i.u = c
h.s = c
h.u = c
assert j.s... | i" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.u: A = None
self.txt = txt
c = A("c")
j = B("j")
i = B("i")
h = B("h")
c.y = i
j.s = c
j.u = c
i.s = c
i.u = c
h.s = c
h.u = c
assert j.s... | j | c | i | c | i | x | x | x | 4 | 4 | 2 | 4 | 2 |
738 | class A:
def __init__(self, txt: str):
self.y: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.p: A = None
self.txt = txt
g = A("g")
i = B("i")
e = B("e")
g.y = e
g.t = e
i.w = g
i.p = g
e.w = g
e.p = g
asse... | g" | class A:
def __init__(self, txt: str):
self.y: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.p: A = None
self.txt = txt
g = A("g")
i = B("i")
e = B("e")
g.y = e
g.t = e
i.w = g
i.p = g
e.w = g
e.p = g
asse... | i | g | e | g | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
739 | class A:
def __init__(self, txt: str):
self.t: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
i = B("i")
d = B("d")
e.t = i
e.u = d
i.w = d
d.w = i
assert e.u.w.w.txt == " | d" | class A:
def __init__(self, txt: str):
self.t: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
i = B("i")
d = B("d")
e.t = i
e.u = d
i.w = d
d.w = i
assert e.u.w.w.txt == "d" | e | d | i | d | x | x | x | x | 3 | 4 | 2 | 3 | 1 |
740 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.u: A = None
self.txt = txt
j = A("j")
d = B("d")
e = A("e")
g = A("g")
f = B("f")
b = B("b")
h = A("h")
j.v = d
d.o = e
d.u = h
e.v = d
g... | j" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.u: A = None
self.txt = txt
j = A("j")
d = B("d")
e = A("e")
g = A("g")
f = B("f")
b = B("b")
h = A("h")
j.v = d
d.o = e
d.u = h
e.v = d
g... | b | h | f | j | x | x | x | x | 7 | 9 | 2 | 3 | 0 |
741 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
j = A("j")
a = B("a")
e = B("e")
h = A("h")
j.y = h
a.s = e
e.s = a
h.y = j
assert h.y.y.y.y.txt == " | h" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
j = A("j")
a = B("a")
e = B("e")
h = A("h")
j.y = h
a.s = e
e.s = a
h.y = j
assert h.y.y.y.y.txt == "h" | h | j | h | j | h | x | x | x | 4 | 4 | 2 | 4 | 3 |
742 | class A:
def __init__(self, txt: str):
self.u: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.z: B = None
self.txt = txt
c = A("c")
i = B("i")
g = A("g")
b = A("b")
h = B("h")
c.u = h
c.s = i
i.w = b
i.z = ... | i" | class A:
def __init__(self, txt: str):
self.u: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.z: B = None
self.txt = txt
c = A("c")
i = B("i")
g = A("g")
b = A("b")
h = B("h")
c.u = h
c.s = i
i.w = b
i.z = ... | c | i | h | b | i | x | x | x | 5 | 8 | 2 | 4 | 1 |
743 | class A:
def __init__(self, txt: str):
self.t: A = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
d = A("d")
h = B("h")
j = A("j")
e = A("e")
f = B("f")
g = B("g")
a = A("a")
d.t = j
d.w = a
h.w = j
j.t = e
j... | a" | class A:
def __init__(self, txt: str):
self.t: A = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
d = A("d")
h = B("h")
j = A("j")
e = A("e")
f = B("f")
g = B("g")
a = A("a")
d.t = j
d.w = a
h.w = j
j.t = e
j... | d | a | e | d | a | x | x | x | 7 | 9 | 2 | 4 | 2 |
744 | class A:
def __init__(self, txt: str):
self.p: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
g = A("g")
b = B("b")
h = A("h")
a = A("a")
c = B("c")
j = A("j")
g.p = j
g.z = h
b.o = c
h.p = a
h.z = j
a.p ... | h" | class A:
def __init__(self, txt: str):
self.p: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
g = A("g")
b = B("b")
h = A("h")
a = A("a")
c = B("c")
j = A("j")
g.p = j
g.z = h
b.o = c
h.p = a
h.z = j
a.p ... | g | h | j | h | x | x | x | x | 6 | 9 | 2 | 3 | 1 |
745 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.r: A = None
self.txt = txt
h = A("h")
b = B("b")
a = B("a")
e = A("e")
c = B("c")
h.y = c
b.p = a
b.r = h
a.p = b
a.r = h
e.y = a
c.p = a... | h" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.r: A = None
self.txt = txt
h = A("h")
b = B("b")
a = B("a")
e = A("e")
c = B("c")
h.y = c
b.p = a
b.r = h
a.p = b
a.r = h
e.y = a
c.p = a... | a | b | h | c | h | x | x | x | 5 | 8 | 2 | 4 | 1 |
746 | 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.s: A = None
self.txt = txt
e = A("e")
c = B("c")
g = A("g")
d = B("d")
e.v = g
c.v = e
c.s = g
g.v = e
d.v = g
d.s = e
assert d.s.v.v.txt... | e" | 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.s: A = None
self.txt = txt
e = A("e")
c = B("c")
g = A("g")
d = B("d")
e.v = g
c.v = e
c.s = g
g.v = e
d.v = g
d.s = e
assert d.s.v.v.txt... | d | e | g | e | x | x | x | x | 4 | 6 | 2 | 3 | 1 |
747 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
h = A("h")
a = B("a")
b = B("b")
j = B("j")
f = A("f")
d = A("d")
h.r = a
a.z = f
b.z = f
j.z = h
f.r = j
d.r = j
assert h.r.z.r.z.txt ... | h" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
h = A("h")
a = B("a")
b = B("b")
j = B("j")
f = A("f")
d = A("d")
h.r = a
a.z = f
b.z = f
j.z = h
f.r = j
d.r = j
assert h.r.z.r.z.txt ... | h | a | f | j | h | x | x | x | 6 | 6 | 2 | 4 | 1 |
748 | class A:
def __init__(self, txt: str):
self.t: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
e = A("e")
c = B("c")
b = B("b")
a = A("a")
i = A("i")
e.t = a
e.v = a
c.z = b
b.z = c
a.t = i
a.v = e
i.t = a... | a" | class A:
def __init__(self, txt: str):
self.t: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
e = A("e")
c = B("c")
b = B("b")
a = A("a")
i = A("i")
e.t = a
e.v = a
c.z = b
b.z = c
a.t = i
a.v = e
i.t = a... | e | a | i | a | x | x | x | x | 5 | 7 | 2 | 3 | 1 |
749 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
h = A("h")
b = B("b")
j = A("j")
i = A("i")
f = A("f")
g = B("g")
c = B("c")
h.u = b
b.x = f
j.u = c
i.u = c
f.u = g
g.x = f
c.x = h
as... | f" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
h = A("h")
b = B("b")
j = A("j")
i = A("i")
f = A("f")
g = B("g")
c = B("c")
h.u = b
b.x = f
j.u = c
i.u = c
f.u = g
g.x = f
c.x = h
as... | g | f | g | f | g | f | x | x | 7 | 7 | 2 | 5 | 4 |
750 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
c = A("c")
f = B("f")
h = B("h")
j = B("j")
c.t = h
f.r = h
h.r = f
j.r = f
assert c.t.r.r.txt == " | h" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
c = A("c")
f = B("f")
h = B("h")
j = B("j")
c.t = h
f.r = h
h.r = f
j.r = f
assert c.t.r.r.txt == "h" | c | h | f | h | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
751 | class A:
def __init__(self, txt: str):
self.t: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.u: B = None
self.txt = txt
f = A("f")
h = B("h")
b = A("b")
e = B("e")
f.t = b
f.r = b
h.w = e
h.u = e
b.t = f
b... | f" | class A:
def __init__(self, txt: str):
self.t: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.u: B = None
self.txt = txt
f = A("f")
h = B("h")
b = A("b")
e = B("e")
f.t = b
f.r = b
h.w = e
h.u = e
b.t = f
b... | b | f | b | f | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
752 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
f = A("f")
g = B("g")
e = B("e")
j = A("j")
a = A("a")
d = A("d")
c = B("c")
f.p = c
g.z = c
e.z = c
j.p = e
a.p = e
d.p = e
c.z = e
as... | c" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
f = A("f")
g = B("g")
e = B("e")
j = A("j")
a = A("a")
d = A("d")
c = B("c")
f.p = c
g.z = c
e.z = c
j.p = e
a.p = e
d.p = e
c.z = e
as... | c | e | c | e | c | x | x | x | 7 | 7 | 2 | 4 | 3 |
753 | class A:
def __init__(self, txt: str):
self.x: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
c = A("c")
i = B("i")
h = B("h")
b = B("b")
a = B("a")
e = A("e")
g = A("g")
c.x = e
c.t = h
i.p = g
h.p = e
b... | h" | class A:
def __init__(self, txt: str):
self.x: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
c = A("c")
i = B("i")
h = B("h")
b = B("b")
a = B("a")
e = A("e")
g = A("g")
c.x = e
c.t = h
i.p = g
h.p = e
b... | g | h | e | g | h | e | h | x | 7 | 10 | 2 | 6 | 4 |
754 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
d = A("d")
j = B("j")
c = B("c")
h = A("h")
i = A("i")
e = B("e")
d.x = c
j.w = h
c.w = d
h.x = c
i.x = c
e.w = h
assert c.w.x.w.x.w.x.... | c" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
d = A("d")
j = B("j")
c = B("c")
h = A("h")
i = A("i")
e = B("e")
d.x = c
j.w = h
c.w = d
h.x = c
i.x = c
e.w = h
assert c.w.x.w.x.w.x.... | c | d | c | d | c | d | c | x | 6 | 6 | 2 | 6 | 5 |
755 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.y: B = None
self.txt = txt
h = A("h")
j = B("j")
a = A("a")
f = A("f")
e = B("e")
h.x = e
j.o = f
j.y = e
a.x = j
f.x = j
e.o = f
e.y = j... | f" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.y: B = None
self.txt = txt
h = A("h")
j = B("j")
a = A("a")
f = A("f")
e = B("e")
h.x = e
j.o = f
j.y = e
a.x = j
f.x = j
e.o = f
e.y = j... | e | f | j | f | x | x | x | x | 5 | 7 | 2 | 3 | 1 |
756 | 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
a = A("a")
j = B("j")
h = A("h")
b = A("b")
a.v = b
j.v = b
h.v = a
b.v = h
assert j.v.v.v.v.txt == " | b" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
a = A("a")
j = B("j")
h = A("h")
b = A("b")
a.v = b
j.v = b
h.v = a
b.v = h
assert j.v.v.v.v.txt == "b" | j | b | h | a | b | x | x | x | 4 | 4 | 2 | 4 | 1 |
757 | class A:
def __init__(self, txt: str):
self.y: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.u: A = None
self.txt = txt
i = A("i")
d = B("d")
b = B("b")
h = A("h")
a = A("a")
j = A("j")
f = A("f")
i.y = f
... | i" | class A:
def __init__(self, txt: str):
self.y: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.u: A = None
self.txt = txt
i = A("i")
d = B("d")
b = B("b")
h = A("h")
a = A("a")
j = A("j")
f = A("f")
i.y = f
... | j | i | a | j | i | x | x | x | 7 | 14 | 2 | 4 | 2 |
758 | 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.p: B = None
self.txt = txt
f = A("f")
c = B("c")
h = B("h")
j = A("j")
f.o = j
f.w = j
c.p = h
h.p = c
j.o = f
j.w = f
assert j.o.w.w.txt... | f" | 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.p: B = None
self.txt = txt
f = A("f")
c = B("c")
h = B("h")
j = A("j")
f.o = j
f.w = j
c.p = h
h.p = c
j.o = f
j.w = f
assert j.o.w.w.txt... | j | f | j | f | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
759 | class A:
def __init__(self, txt: str):
self.o: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.u: B = None
self.txt = txt
f = A("f")
b = B("b")
e = B("e")
d = B("d")
g = A("g")
f.o = d
f.s = g
b.w = f
b.u = ... | d" | class A:
def __init__(self, txt: str):
self.o: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.u: B = None
self.txt = txt
f = A("f")
b = B("b")
e = B("e")
d = B("d")
g = A("g")
f.o = d
f.s = g
b.w = f
b.u = ... | f | d | b | d | b | d | x | x | 5 | 10 | 2 | 5 | 3 |
760 | 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.z: A = None
self.txt = txt
b = A("b")
c = B("c")
f = A("f")
a = A("a")
e = B("e")
j = A("j")
d = B("d")
b.w = d
c.u = f
c.z = a
f.w = e
a... | f" | 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.z: A = None
self.txt = txt
b = A("b")
c = B("c")
f = A("f")
a = A("a")
e = B("e")
j = A("j")
d = B("d")
b.w = d
c.u = f
c.z = a
f.w = e
a... | b | d | b | d | f | x | x | x | 7 | 10 | 2 | 4 | 2 |
761 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.t: B = None
self.txt = txt
c = A("c")
b = B("b")
i = A("i")
f = A("f")
h = A("h")
j = A("j")
g = B("g")
c.o = h
b.q = i
b.t = g
i.o = f
f... | f" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.t: B = None
self.txt = txt
c = A("c")
b = B("b")
i = A("i")
f = A("f")
h = A("h")
j = A("j")
g = B("g")
c.o = h
b.q = i
b.t = g
i.o = f
f... | j | i | f | i | f | x | x | x | 7 | 9 | 2 | 4 | 2 |
762 | class A:
def __init__(self, txt: str):
self.z: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
c = A("c")
f = B("f")
i = A("i")
h = A("h")
b = B("b")
c.z = h
c.t = h
f.r = b
i.z = h
i.t = c
h.z = i
h.t = c... | b" | class A:
def __init__(self, txt: str):
self.z: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
c = A("c")
f = B("f")
i = A("i")
h = A("h")
b = B("b")
c.z = h
c.t = h
f.r = b
i.z = h
i.t = c
h.z = i
h.t = c... | b | f | b | f | b | x | x | x | 5 | 7 | 2 | 4 | 3 |
763 | 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.t: A = None
self.txt = txt
c = A("c")
d = B("d")
j = A("j")
c.s = d
c.r = j
d.t = j
j.s = d
j.r = c
assert d.t.r.s.txt == " | d" | 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.t: A = None
self.txt = txt
c = A("c")
d = B("d")
j = A("j")
c.s = d
c.r = j
d.t = j
j.s = d
j.r = c
assert d.t.r.s.txt == "d" | d | j | c | d | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
764 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.o: B = None
self.txt = txt
b = A("b")
d = B("d")
f = A("f")
j = A("j")
h = B("h")
b.s = h
d.q = j
d.o = h
f.s = d
j.s = h
h.q = b
h.o = d... | b" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.o: B = None
self.txt = txt
b = A("b")
d = B("d")
f = A("f")
j = A("j")
h = B("h")
b.s = h
d.q = j
d.o = h
f.s = d
j.s = h
h.q = b
h.o = d... | h | d | h | b | h | b | x | x | 5 | 7 | 2 | 5 | 3 |
765 | class A:
def __init__(self, txt: str):
self.u: A = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
f = A("f")
e = B("e")
b = A("b")
h = A("h")
c = B("c")
f.u = h
f.w = h
e.t = b
b.u = h
b.w = h
h.u = f
h.w = f... | h" | class A:
def __init__(self, txt: str):
self.u: A = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
f = A("f")
e = B("e")
b = A("b")
h = A("h")
c = B("c")
f.u = h
f.w = h
e.t = b
b.u = h
b.w = h
h.u = f
h.w = f... | c | b | h | f | h | x | x | x | 5 | 5 | 2 | 4 | 1 |
766 | 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.txt = txt
a = A("a")
i = B("i")
d = B("d")
a.t = d
i.y = a
d.y = a
assert d.y.t.y.txt == " | a" | 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.txt = txt
a = A("a")
i = B("i")
d = B("d")
a.t = d
i.y = a
d.y = a
assert d.y.t.y.txt == "a" | d | a | d | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
767 | class A:
def __init__(self, txt: str):
self.u: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
b = A("b")
i = B("i")
g = B("g")
b.u = g
b.s = i
i.u = b
g.u = b
assert g.u.u.u.txt == " | b" | class A:
def __init__(self, txt: str):
self.u: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
b = A("b")
i = B("i")
g = B("g")
b.u = g
b.s = i
i.u = b
g.u = b
assert g.u.u.u.txt == "b" | g | b | g | b | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
768 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
f = A("f")
d = B("d")
a = B("a")
j = B("j")
f.u = d
d.v = f
a.v = f
j.v = f
assert f.u.v.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.v: A = None
self.txt = txt
f = A("f")
d = B("d")
a = B("a")
j = B("j")
f.u = d
d.v = f
a.v = f
j.v = f
assert f.u.v.u.txt == "d" | f | d | f | d | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
769 | class A:
def __init__(self, txt: str):
self.u: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.z: B = None
self.txt = txt
d = A("d")
h = B("h")
j = B("j")
g = A("g")
a = A("a")
c = A("c")
d.u = h
d.s = g
h.q... | h" | class A:
def __init__(self, txt: str):
self.u: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.z: B = None
self.txt = txt
d = A("d")
h = B("h")
j = B("j")
g = A("g")
a = A("a")
c = A("c")
d.u = h
d.s = g
h.q... | g | h | j | h | j | h | x | x | 6 | 10 | 2 | 5 | 3 |
770 | 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.txt = txt
d = A("d")
f = B("f")
b = B("b")
d.v = f
f.o = b
b.o = f
assert d.v.o.o.txt == " | f" | 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.txt = txt
d = A("d")
f = B("f")
b = B("b")
d.v = f
f.o = b
b.o = f
assert d.v.o.o.txt == "f" | d | f | b | f | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
771 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
e = A("e")
g = B("g")
h = A("h")
c = A("c")
j = B("j")
e.z = j
g.x = j
h.z = j
c.z = j
j.x = g
assert c.z.x.x.x.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
e = A("e")
g = B("g")
h = A("h")
c = A("c")
j = B("j")
e.z = j
g.x = j
h.z = j
c.z = j
j.x = g
assert c.z.x.x.x.txt == "g" | c | j | g | j | g | x | x | x | 5 | 5 | 2 | 4 | 2 |
772 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.y: A = None
self.txt = txt
e = A("e")
i = B("i")
a = A("a")
e.t = i
i.r = e
i.y = a
a.t = i
assert e.t.r.t.txt == " | i" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.y: A = None
self.txt = txt
e = A("e")
i = B("i")
a = A("a")
e.t = i
i.r = e
i.y = a
a.t = i
assert e.t.r.t.txt == "i" | e | i | e | i | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
773 | class A:
def __init__(self, txt: str):
self.z: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.q: B = None
self.txt = txt
h = A("h")
e = B("e")
g = B("g")
f = A("f")
b = B("b")
h.z = f
h.s = g
e.x = g
e.q = ... | b" | class A:
def __init__(self, txt: str):
self.z: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.q: B = None
self.txt = txt
h = A("h")
e = B("e")
g = B("g")
f = A("f")
b = B("b")
h.z = f
h.s = g
e.x = g
e.q = ... | b | g | b | e | g | b | x | x | 5 | 8 | 2 | 5 | 3 |
774 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
f = A("f")
g = B("g")
a = A("a")
f.r = g
g.x = f
a.r = g
assert a.r.x.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.x: A = None
self.txt = txt
f = A("f")
g = B("g")
a = A("a")
f.r = g
g.x = f
a.r = g
assert a.r.x.r.txt == "g" | a | g | f | g | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
775 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
h = A("h")
e = B("e")
f = A("f")
j = B("j")
h.y = f
e.x = j
f.y = h
j.x = e
assert f.y.y.y.y.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
h = A("h")
e = B("e")
f = A("f")
j = B("j")
h.y = f
e.x = j
f.y = h
j.x = e
assert f.y.y.y.y.txt == "f" | f | h | f | h | f | x | x | x | 4 | 4 | 2 | 4 | 3 |
776 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
i = A("i")
g = B("g")
b = B("b")
c = A("c")
e = A("e")
a = B("a")
i.u = b
g.s = c
b.s = i
c.u = b
e.u = a
a.s = e
assert i.u.s.u.s.u.s.... | i" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
i = A("i")
g = B("g")
b = B("b")
c = A("c")
e = A("e")
a = B("a")
i.u = b
g.s = c
b.s = i
c.u = b
e.u = a
a.s = e
assert i.u.s.u.s.u.s.... | i | b | i | b | i | b | i | x | 6 | 6 | 2 | 6 | 5 |
777 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
f = A("f")
h = B("h")
g = A("g")
f.t = g
h.s = g
g.t = f
assert g.t.t.t.txt == " | f" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
f = A("f")
h = B("h")
g = A("g")
f.t = g
h.s = g
g.t = f
assert g.t.t.t.txt == "f" | g | f | g | f | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
778 | class A:
def __init__(self, txt: str):
self.x: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
d = A("d")
f = B("f")
b = A("b")
g = B("g")
a = A("a")
d.x = f
d.o = b
f.q = g
b.x = f
b.o = a
g.q = f
a.x = g... | g" | class A:
def __init__(self, txt: str):
self.x: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
d = A("d")
f = B("f")
b = A("b")
g = B("g")
a = A("a")
d.x = f
d.o = b
f.q = g
b.x = f
b.o = a
g.q = f
a.x = g... | f | g | f | g | f | g | x | x | 5 | 8 | 2 | 5 | 4 |
779 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
b = A("b")
a = B("a")
i = A("i")
b.r = a
a.w = i
i.r = a
assert i.r.w.r.txt == " | a" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
b = A("b")
a = B("a")
i = A("i")
b.r = a
a.w = i
i.r = a
assert i.r.w.r.txt == "a" | i | a | i | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
780 | class A:
def __init__(self, txt: str):
self.p: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
i = A("i")
b = B("b")
f = A("f")
i.p = b
i.w = b
b.r = i
f.p = b
f.w = b
assert i.w.r.p.txt == " | b" | class A:
def __init__(self, txt: str):
self.p: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
i = A("i")
b = B("b")
f = A("f")
i.p = b
i.w = b
b.r = i
f.p = b
f.w = b
assert i.w.r.p.txt == "b" | i | b | i | b | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
781 | class A:
def __init__(self, txt: str):
self.w: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: A = None
self.txt = txt
i = A("i")
h = B("h")
c = B("c")
j = B("j")
e = A("e")
b = B("b")
f = B("f")
i.w = e
... | e" | class A:
def __init__(self, txt: str):
self.w: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: A = None
self.txt = txt
i = A("i")
h = B("h")
c = B("c")
j = B("j")
e = A("e")
b = B("b")
f = B("f")
i.w = e
... | f | e | i | f | i | e | x | x | 7 | 14 | 2 | 5 | 3 |
782 | class A:
def __init__(self, txt: str):
self.x: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
c = A("c")
f = B("f")
h = B("h")
e = A("e")
c.x = e
c.q = h
f.t = e
h.t = c
e.x = c
e.q = h
assert f.t.x.x.txt... | e" | class A:
def __init__(self, txt: str):
self.x: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
c = A("c")
f = B("f")
h = B("h")
e = A("e")
c.x = e
c.q = h
f.t = e
h.t = c
e.x = c
e.q = h
assert f.t.x.x.txt... | f | e | c | e | x | x | x | x | 4 | 6 | 2 | 3 | 1 |
783 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.p: A = None
self.txt = txt
f = A("f")
b = B("b")
a = A("a")
f.u = b
b.s = f
b.p = f
a.u = b
assert a.u.p.u.txt == " | b" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.p: A = None
self.txt = txt
f = A("f")
b = B("b")
a = A("a")
f.u = b
b.s = f
b.p = f
a.u = b
assert a.u.p.u.txt == "b" | a | b | f | b | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
784 | 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.q: B = None
self.txt = txt
i = A("i")
f = B("f")
a = B("a")
i.o = a
f.p = i
f.q = a
a.p = i
a.q = f
assert a.q.p.o.txt == " | a" | 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.q: B = None
self.txt = txt
i = A("i")
f = B("f")
a = B("a")
i.o = a
f.p = i
f.q = a
a.p = i
a.q = f
assert a.q.p.o.txt == "a" | a | f | i | a | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
785 | 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.z: B = None
self.txt = txt
a = A("a")
j = B("j")
b = A("b")
e = B("e")
i = A("i")
a.t = b
j.r = a
j.z = e
b.t = a
e.r = a
e.z = j
i.t = a... | b" | 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.z: B = None
self.txt = txt
a = A("a")
j = B("j")
b = A("b")
e = B("e")
i = A("i")
a.t = b
j.r = a
j.z = e
b.t = a
e.r = a
e.z = j
i.t = a... | b | a | b | a | b | x | x | x | 5 | 7 | 2 | 4 | 3 |
786 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.t: B = None
self.txt = txt
b = A("b")
i = B("i")
g = A("g")
d = B("d")
e = A("e")
j = B("j")
b.v = i
i.u = d
i.t = d
g.v = i
d.u = i
d.t ... | i" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.t: B = None
self.txt = txt
b = A("b")
i = B("i")
g = A("g")
d = B("d")
e = A("e")
j = B("j")
b.v = i
i.u = d
i.t = d
g.v = i
d.u = i
d.t ... | b | i | d | i | x | x | x | x | 6 | 8 | 2 | 3 | 1 |
787 | class A:
def __init__(self, txt: str):
self.o: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.p: B = None
self.txt = txt
a = A("a")
g = B("g")
c = B("c")
j = A("j")
i = A("i")
d = B("d")
a.o = d
a.v = j
g.o... | j" | class A:
def __init__(self, txt: str):
self.o: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.p: B = None
self.txt = txt
a = A("a")
g = B("g")
c = B("c")
j = A("j")
i = A("i")
d = B("d")
a.o = d
a.v = j
g.o... | i | j | a | j | x | x | x | x | 6 | 12 | 2 | 3 | 1 |
788 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.t: A = None
self.txt = txt
f = A("f")
a = B("a")
h = A("h")
f.z = h
a.v = f
a.t = h
h.z = f
assert h.z.z.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.t: A = None
self.txt = txt
f = A("f")
a = B("a")
h = A("h")
f.z = h
a.v = f
a.t = h
h.z = f
assert h.z.z.z.txt == "f" | h | f | h | f | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
789 | class A:
def __init__(self, txt: str):
self.t: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
a = B("a")
h = B("h")
f = A("f")
e = A("e")
b = A("b")
d.t = e
d.s = f
a.z = d
h.z = e
f.t = e
f.s ... | f" | class A:
def __init__(self, txt: str):
self.t: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
a = B("a")
h = B("h")
f = A("f")
e = A("e")
b = A("b")
d.t = e
d.s = f
a.z = d
h.z = e
f.t = e
f.s ... | b | d | e | f | x | x | x | x | 6 | 10 | 2 | 3 | 0 |
790 | class A:
def __init__(self, txt: str):
self.t: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
c = A("c")
h = B("h")
a = B("a")
c.t = h
c.x = a
h.q = c
a.q = c
assert a.q.x.q.txt == " | c" | class A:
def __init__(self, txt: str):
self.t: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
c = A("c")
h = B("h")
a = B("a")
c.t = h
c.x = a
h.q = c
a.q = c
assert a.q.x.q.txt == "c" | a | c | a | c | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
791 | class A:
def __init__(self, txt: str):
self.q: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.x: A = None
self.txt = txt
f = A("f")
c = B("c")
b = B("b")
a = A("a")
h = A("h")
i = A("i")
f.q = b
f.u = h
c.w... | h" | class A:
def __init__(self, txt: str):
self.q: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.x: A = None
self.txt = txt
f = A("f")
c = B("c")
b = B("b")
a = A("a")
h = A("h")
i = A("i")
f.q = b
f.u = h
c.w... | i | b | c | h | x | x | x | x | 6 | 12 | 2 | 3 | 0 |
792 | class A:
def __init__(self, txt: str):
self.r: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.r: A = None
self.txt = txt
e = A("e")
g = B("g")
c = A("c")
j = B("j")
e.r = g
e.q = g
g.w = j
g.r = c
c.r = j
c... | j" | class A:
def __init__(self, txt: str):
self.r: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.r: A = None
self.txt = txt
e = A("e")
g = B("g")
c = A("c")
j = B("j")
e.r = g
e.q = g
g.w = j
g.r = c
c.r = j
c... | g | j | g | j | x | x | x | x | 4 | 6 | 2 | 3 | 2 |
793 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
i = A("i")
g = B("g")
j = A("j")
i.v = j
g.w = i
j.v = i
assert j.v.v.v.txt == " | i" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
i = A("i")
g = B("g")
j = A("j")
i.v = j
g.w = i
j.v = i
assert j.v.v.v.txt == "i" | j | i | j | i | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
794 | 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.txt = txt
i = A("i")
j = B("j")
e = B("e")
d = A("d")
i.y = j
j.u = e
e.u = j
d.y = e
assert d.y.u.u.u.txt == " | j" | 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.txt = txt
i = A("i")
j = B("j")
e = B("e")
d = A("d")
i.y = j
j.u = e
e.u = j
d.y = e
assert d.y.u.u.u.txt == "j" | d | e | j | e | j | x | x | x | 4 | 4 | 2 | 4 | 2 |
795 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.o: A = None
self.txt = txt
e = A("e")
i = B("i")
d = B("d")
j = A("j")
a = A("a")
g = A("g")
h = B("h")
e.p = h
i.w = d
i.o = j
d.w = h
d... | i" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.o: A = None
self.txt = txt
e = A("e")
i = B("i")
d = B("d")
j = A("j")
a = A("a")
g = A("g")
h = B("h")
e.p = h
i.w = d
i.o = j
d.w = h
d... | j | d | h | g | i | x | x | x | 7 | 10 | 2 | 4 | 0 |
796 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
d = B("d")
e = B("e")
g = B("g")
h = A("h")
c = B("c")
a.p = h
b.o = c
b.z = h
d.o = g
d... | a" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.z: A = None
self.txt = txt
a = A("a")
b = B("b")
d = B("d")
e = B("e")
g = B("g")
h = A("h")
c = B("c")
a.p = h
b.o = c
b.z = h
d.o = g
d... | d | a | h | a | x | x | x | x | 7 | 12 | 2 | 3 | 1 |
797 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
i = A("i")
e = B("e")
b = A("b")
f = B("f")
i.z = b
e.u = f
b.z = i
f.u = e
assert b.z.z.z.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
i = A("i")
e = B("e")
b = A("b")
f = B("f")
i.z = b
e.u = f
b.z = i
f.u = e
assert b.z.z.z.txt == "i" | b | i | b | i | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
798 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.t: A = None
self.txt = txt
a = A("a")
h = B("h")
f = A("f")
j = A("j")
i = A("i")
e = A("e")
c = B("c")
a.s = i
h.r = f
h.t = i
f.s = e
j... | i" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.t: A = None
self.txt = txt
a = A("a")
h = B("h")
f = A("f")
j = A("j")
i = A("i")
e = A("e")
c = B("c")
a.s = i
h.r = f
h.t = i
f.s = e
j... | j | f | e | a | i | x | x | x | 7 | 9 | 2 | 4 | 0 |
799 | class A:
def __init__(self, txt: str):
self.s: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
b = B("b")
f = B("f")
h = B("h")
c = A("c")
j = B("j")
a = A("a")
d.s = c
d.v = h
b.z = a
f.z = d
h... | c" | class A:
def __init__(self, txt: str):
self.s: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
b = B("b")
f = B("f")
h = B("h")
c = A("c")
j = B("j")
a = A("a")
d.s = c
d.v = h
b.z = a
f.z = d
h... | c | a | d | c | f | d | c | x | 7 | 10 | 2 | 6 | 3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.