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