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