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