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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2,200 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
d = A("d")
i = B("i")
b = A("b")
d.z = i
i.r = d
i.u = b
b.z = i
assert b.z.u.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.r: A = None
self.u: A = None
self.txt = txt
d = A("d")
i = B("i")
b = A("b")
d.z = i
i.r = d
i.u = b
b.z = i
assert b.z.u.z.txt == "i" | b | i | b | i | x | x | x | x | i | b | i | b | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
2,201 | class A:
def __init__(self, txt: str):
self.o: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.t: A = None
self.txt = txt
h = A("h")
e = B("e")
c = A("c")
d = B("d")
b = A("b")
a = A("a")
g = B("g")
h.o = a
... | d" | class A:
def __init__(self, txt: str):
self.o: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.t: A = None
self.txt = txt
h = A("h")
e = B("e")
c = A("c")
d = B("d")
b = A("b")
a = A("a")
g = B("g")
h.o = a
... | a | h | d | g | d | x | x | x | d | g | d | h | a | x | x | x | 7 | 14 | 2 | 4 | 1 |
2,202 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
c = A("c")
a = B("a")
j = A("j")
c.r = j
a.z = j
j.r = c
assert c.r.r.r.txt == " | j" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
c = A("c")
a = B("a")
j = A("j")
c.r = j
a.z = j
j.r = c
assert c.r.r.r.txt == "j" | c | j | c | j | x | x | x | x | j | c | j | c | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,203 | class A:
def __init__(self, txt: str):
self.o: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
h = A("h")
a = B("a")
f = A("f")
b = B("b")
j = B("j")
h.o = b
h.t = f
a.x = f
f.o = b
f.t = h
b.x = f
j.x = f... | h" | class A:
def __init__(self, txt: str):
self.o: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
h = A("h")
a = B("a")
f = A("f")
b = B("b")
j = B("j")
h.o = b
h.t = f
a.x = f
f.o = b
f.t = h
b.x = f
j.x = f... | f | b | f | b | f | h | x | x | h | f | b | f | b | f | x | x | 5 | 7 | 2 | 5 | 3 |
2,204 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.u: B = None
self.txt = txt
j = A("j")
b = B("b")
g = B("g")
i = A("i")
e = B("e")
d = A("d")
j.v = e
b.q = d
b.u = g
g.q = j
g.u = b
i.v ... | g" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.u: B = None
self.txt = txt
j = A("j")
b = B("b")
g = B("g")
i = A("i")
e = B("e")
d = A("d")
j.v = e
b.q = d
b.u = g
g.q = j
g.u = b
i.v ... | j | e | b | g | x | x | x | x | g | b | e | j | x | x | x | x | 6 | 9 | 2 | 3 | 0 |
2,205 | 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.z: A = None
self.y: A = None
self.txt = txt
g = A("g")
e = B("e")
c = A("c")
g.w = e
g.z = e
e.z = c
e.y = g
c.w = e
c.z = e
asse... | c" | 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.z: A = None
self.y: A = None
self.txt = txt
g = A("g")
e = B("e")
c = A("c")
g.w = e
g.z = e
e.z = c
e.y = g
c.w = e
c.z = e
asse... | e | g | e | c | x | x | x | x | c | e | g | e | x | x | x | x | 3 | 4 | 2 | 3 | 1 |
2,206 | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.t: B = None
self.txt = txt
b = A("b")
c = B("c")
d = B("d")
h = A("h")
i = A("i")
a = B("a")
e = A("e")
b.q = d
... | d" | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.t: B = None
self.txt = txt
b = A("b")
c = B("c")
d = B("d")
h = A("h")
i = A("i")
a = B("a")
e = A("e")
b.q = d
... | h | d | b | d | x | x | x | x | d | b | d | h | x | x | x | x | 7 | 13 | 2 | 3 | 1 |
2,207 | class A:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
f = A("f")
g = B("g")
j = A("j")
f.q = g
f.z = j
g.r = f
j.q = g
j.z = f
assert g.r.q.r.txt == " | f" | class A:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
f = A("f")
g = B("g")
j = A("j")
f.q = g
f.z = j
g.r = f
j.q = g
j.z = f
assert g.r.q.r.txt == "f" | g | f | g | f | x | x | x | x | f | g | f | g | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
2,208 | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
i = A("i")
c = B("c")
g = B("g")
i.q = c
i.x = c
c.u = g
g.u = c
assert i.q.u.u.txt == " | c" | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
i = A("i")
c = B("c")
g = B("g")
i.q = c
i.x = c
c.u = g
g.u = c
assert i.q.u.u.txt == "c" | i | c | g | c | x | x | x | x | c | g | c | i | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
2,209 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
f = A("f")
b = B("b")
h = A("h")
g = B("g")
i = B("i")
f.p = i
b.t = f
h.p = b
g.t = h
i.t = f
assert b.t.p.t.p.t.txt == " | f" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
f = A("f")
b = B("b")
h = A("h")
g = B("g")
i = B("i")
f.p = i
b.t = f
h.p = b
g.t = h
i.t = f
assert b.t.p.t.p.t.txt == "f" | b | f | i | f | i | f | x | x | f | i | f | i | f | b | x | x | 5 | 5 | 2 | 5 | 3 |
2,210 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
f = A("f")
e = B("e")
b = B("b")
d = B("d")
h = A("h")
c = A("c")
f.r = d
e.v = c
b.v = c
d.v = c
h.r = e
c.r = e
assert c.r.v.r.txt ==... | e" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
f = A("f")
e = B("e")
b = B("b")
d = B("d")
h = A("h")
c = A("c")
f.r = d
e.v = c
b.v = c
d.v = c
h.r = e
c.r = e
assert c.r.v.r.txt ==... | c | e | c | e | x | x | x | x | e | c | e | c | x | x | x | x | 6 | 6 | 2 | 3 | 2 |
2,211 | class A:
def __init__(self, txt: str):
self.w: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
h = A("h")
e = B("e")
f = A("f")
a = A("a")
d = B("d")
c = A("c")
g = B("g")
h.w = g
h.v = f
e.o = d
f.w = g
f... | e" | class A:
def __init__(self, txt: str):
self.w: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
h = A("h")
e = B("e")
f = A("f")
a = A("a")
d = B("d")
c = A("c")
g = B("g")
h.w = g
h.v = f
e.o = d
f.w = g
f... | h | g | e | d | e | d | e | x | e | d | e | d | e | g | h | x | 7 | 11 | 2 | 6 | 3 |
2,212 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.r: A = None
self.txt = txt
a = A("a")
g = B("g")
e = B("e")
f = B("f")
i = A("i")
h = A("h")
a.q = g
g.w = e
g.r = h
e.w = f
e.r = a
f.w ... | h" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.r: A = None
self.txt = txt
a = A("a")
g = B("g")
e = B("e")
f = B("f")
i = A("i")
h = A("h")
a.q = g
g.w = e
g.r = h
e.w = f
e.r = a
f.w ... | a | g | e | f | h | g | h | x | h | g | h | f | e | g | a | x | 6 | 9 | 2 | 6 | 2 |
2,213 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
c = A("c")
a = B("a")
i = A("i")
e = B("e")
b = A("b")
d = A("d")
c.q = b
a.z = e
i.q = b
e.z = a
b.q = c
d.q = i
assert i.q.q.q.q.q.q.... | c" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
c = A("c")
a = B("a")
i = A("i")
e = B("e")
b = A("b")
d = A("d")
c.q = b
a.z = e
i.q = b
e.z = a
b.q = c
d.q = i
assert i.q.q.q.q.q.q.... | i | b | c | b | c | b | c | x | c | b | c | b | c | b | i | x | 6 | 6 | 2 | 6 | 4 |
2,214 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
d = A("d")
f = B("f")
h = B("h")
g = A("g")
e = A("e")
b = B("b")
d.s = g
f.p = b
h.p = f
g.s = d
e.s = d
b.p = h
assert e.s.s.s.s.txt ... | g" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
d = A("d")
f = B("f")
h = B("h")
g = A("g")
e = A("e")
b = B("b")
d.s = g
f.p = b
h.p = f
g.s = d
e.s = d
b.p = h
assert e.s.s.s.s.txt ... | e | d | g | d | g | x | x | x | g | d | g | d | e | x | x | x | 6 | 6 | 2 | 4 | 2 |
2,215 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.q: B = None
self.txt = txt
h = A("h")
f = B("f")
d = A("d")
i = B("i")
h.o = f
f.v = i
f.q = i
d.o = i
i.v = f
i.q = f
assert i.q.v.q.txt... | f" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.q: B = None
self.txt = txt
h = A("h")
f = B("f")
d = A("d")
i = B("i")
h.o = f
f.v = i
f.q = i
d.o = i
i.v = f
i.q = f
assert i.q.v.q.txt... | i | f | i | f | x | x | x | x | f | i | f | i | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
2,216 | class A:
def __init__(self, txt: str):
self.q: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.o: A = None
self.txt = txt
i = A("i")
c = B("c")
h = B("h")
j = A("j")
d = B("d")
a = B("a")
i.q = j
i.z = d
c.z... | c" | class A:
def __init__(self, txt: str):
self.q: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.o: A = None
self.txt = txt
i = A("i")
c = B("c")
h = B("h")
j = A("j")
d = B("d")
a = B("a")
i.q = j
i.z = d
c.z... | a | j | a | d | i | d | c | x | c | d | i | d | a | j | a | x | 6 | 12 | 2 | 6 | 2 |
2,217 | class A:
def __init__(self, txt: str):
self.q: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
d = A("d")
e = B("e")
a = A("a")
f = B("f")
j = B("j")
d.q = e
d.p = a
e.s = a
a.q = f
a.p = d
f.s = a
j.s = d... | a" | class A:
def __init__(self, txt: str):
self.q: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
d = A("d")
e = B("e")
a = A("a")
f = B("f")
j = B("j")
d.q = e
d.p = a
e.s = a
a.q = f
a.p = d
f.s = a
j.s = d... | a | f | a | d | a | x | x | x | a | d | a | f | a | x | x | x | 5 | 7 | 2 | 4 | 2 |
2,218 | class A:
def __init__(self, txt: str):
self.v: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.u: A = None
self.txt = txt
a = A("a")
c = B("c")
i = A("i")
d = B("d")
e = B("e")
a.v = i
a.o = i
c.x = e
c.u = ... | a" | class A:
def __init__(self, txt: str):
self.v: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.u: A = None
self.txt = txt
a = A("a")
c = B("c")
i = A("i")
d = B("d")
e = B("e")
a.v = i
a.o = i
c.x = e
c.u = ... | i | a | i | a | i | a | x | x | a | i | a | i | a | i | x | x | 5 | 8 | 2 | 5 | 4 |
2,219 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.q: B = None
self.txt = txt
a = A("a")
i = B("i")
f = A("f")
j = B("j")
d = A("d")
g = B("g")
c = B("c")
a.q = c
i.r = g
i.q = g
f.q = g
j... | i" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.q: B = None
self.txt = txt
a = A("a")
i = B("i")
f = A("f")
j = B("j")
d = A("d")
g = B("g")
c = B("c")
a.q = c
i.r = g
i.q = g
f.q = g
j... | i | g | c | j | g | c | i | x | i | c | g | j | c | g | i | x | 7 | 10 | 2 | 6 | 3 |
2,220 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
b = A("b")
j = B("j")
g = B("g")
d = A("d")
b.y = d
j.r = d
j.u = d
g.r = d
g.u = b
d.y = b
assert d.y.y.y.y.t... | d" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
b = A("b")
j = B("j")
g = B("g")
d = A("d")
b.y = d
j.r = d
j.u = d
g.r = d
g.u = b
d.y = b
assert d.y.y.y.y.t... | d | b | d | b | d | x | x | x | d | b | d | b | d | x | x | x | 4 | 5 | 2 | 4 | 3 |
2,221 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.z: B = None
self.txt = txt
d = A("d")
b = B("b")
i = A("i")
h = B("h")
f = A("f")
d.t = f
b.q = i
b.z = h
i.t = f
h.q = i
h.z = b
f.t = d... | d" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.z: B = None
self.txt = txt
d = A("d")
b = B("b")
i = A("i")
h = B("h")
f = A("f")
d.t = f
b.q = i
b.z = h
i.t = f
h.q = i
h.z = b
f.t = d... | h | b | i | f | d | x | x | x | d | f | i | b | h | x | x | x | 5 | 7 | 2 | 4 | 0 |
2,222 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.y: B = None
self.txt = txt
i = A("i")
j = B("j")
f = A("f")
b = A("b")
g = B("g")
i.s = j
j.p = i
j.y = g
f.s = g
b.s = g
g.p = b
g.y = j... | i" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.y: B = None
self.txt = txt
i = A("i")
j = B("j")
f = A("f")
b = A("b")
g = B("g")
i.s = j
j.p = i
j.y = g
f.s = g
b.s = g
g.p = b
g.y = j... | g | b | g | j | i | x | x | x | i | j | g | b | g | x | x | x | 5 | 7 | 2 | 4 | 1 |
2,223 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.t: B = None
self.txt = txt
f = A("f")
i = B("i")
c = A("c")
d = B("d")
a = B("a")
g = B("g")
e = A("e")
f.y = e
i.o = e
i.t = d
c.y = e
d... | e" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.t: B = None
self.txt = txt
f = A("f")
i = B("i")
c = A("c")
d = B("d")
a = B("a")
g = B("g")
e = A("e")
f.y = e
i.o = e
i.t = d
c.y = e
d... | c | e | c | e | c | e | c | e | e | c | e | c | e | c | e | c | 7 | 11 | 2 | 7 | 6 |
2,224 | class A:
def __init__(self, txt: str):
self.p: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.o: B = None
self.txt = txt
a = A("a")
c = B("c")
f = B("f")
h = A("h")
a.p = f
a.w = h
c.s = f
c.o = f
f.s = c
f... | c" | class A:
def __init__(self, txt: str):
self.p: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.o: B = None
self.txt = txt
a = A("a")
c = B("c")
f = B("f")
h = A("h")
a.p = f
a.w = h
c.s = f
c.o = f
f.s = c
f... | a | f | c | f | c | x | x | x | c | f | c | f | a | x | x | x | 4 | 6 | 2 | 4 | 2 |
2,225 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
c = A("c")
i = B("i")
f = B("f")
a = B("a")
d = B("d")
c.q = f
i.y = f
f.y = a
a.y = i
d.y = f
assert a.y.y.y.y.y.txt == " | f" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
c = A("c")
i = B("i")
f = B("f")
a = B("a")
d = B("d")
c.q = f
i.y = f
f.y = a
a.y = i
d.y = f
assert a.y.y.y.y.y.txt == "f" | a | i | f | a | i | f | x | x | f | i | a | f | i | a | x | x | 5 | 5 | 2 | 5 | 3 |
2,226 | class A:
def __init__(self, txt: str):
self.s: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.z: B = None
self.txt = txt
j = A("j")
c = B("c")
a = A("a")
i = A("i")
g = A("g")
d = A("d")
e = B("e")
j.s = c
... | d" | class A:
def __init__(self, txt: str):
self.s: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.z: B = None
self.txt = txt
j = A("j")
c = B("c")
a = A("a")
i = A("i")
g = A("g")
d = A("d")
e = B("e")
j.s = c
... | c | g | a | d | x | x | x | x | d | a | g | c | x | x | x | x | 7 | 14 | 2 | 3 | 0 |
2,227 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.t: A = None
self.txt = txt
g = A("g")
j = B("j")
e = B("e")
a = A("a")
g.o = e
j.p = e
j.t = a
e.p = j
e.t = a
a.o = j
assert j.t.o.t.txt... | a" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.t: A = None
self.txt = txt
g = A("g")
j = B("j")
e = B("e")
a = A("a")
g.o = e
j.p = e
j.t = a
e.p = j
e.t = a
a.o = j
assert j.t.o.t.txt... | j | a | j | a | x | x | x | x | a | j | a | j | x | x | x | x | 4 | 6 | 2 | 3 | 2 |
2,228 | class A:
def __init__(self, txt: str):
self.r: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
c = A("c")
j = B("j")
h = B("h")
c.r = h
c.v = h
j.w = h
h.w = j
assert j.w.w.w.txt == " | h" | class A:
def __init__(self, txt: str):
self.r: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
c = A("c")
j = B("j")
h = B("h")
c.r = h
c.v = h
j.w = h
h.w = j
assert j.w.w.w.txt == "h" | j | h | j | h | x | x | x | x | h | j | h | j | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,229 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
h = A("h")
e = B("e")
b = A("b")
g = B("g")
h.o = g
e.u = b
b.o = g
g.u = h
assert h.o.u.o.u.txt == " | h" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
h = A("h")
e = B("e")
b = A("b")
g = B("g")
h.o = g
e.u = b
b.o = g
g.u = h
assert h.o.u.o.u.txt == "h" | h | g | h | g | h | x | x | x | h | g | h | g | h | x | x | x | 4 | 4 | 2 | 4 | 3 |
2,230 | class A:
def __init__(self, txt: str):
self.o: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.z: A = None
self.txt = txt
j = A("j")
c = B("c")
f = A("f")
i = B("i")
b = B("b")
j.o = c
j.z = f
c.x = f
c.z = ... | b" | class A:
def __init__(self, txt: str):
self.o: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.z: A = None
self.txt = txt
j = A("j")
c = B("c")
f = A("f")
i = B("i")
b = B("b")
j.o = c
j.z = f
c.x = f
c.z = ... | b | j | c | f | b | x | x | x | b | f | c | j | b | x | x | x | 5 | 8 | 2 | 4 | 1 |
2,231 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
e = A("e")
d = B("d")
f = A("f")
e.r = d
d.v = f
f.r = d
assert f.r.v.r.txt == " | d" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
e = A("e")
d = B("d")
f = A("f")
e.r = d
d.v = f
f.r = d
assert f.r.v.r.txt == "d" | f | d | f | d | x | x | x | x | d | f | d | f | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,232 | class A:
def __init__(self, txt: str):
self.v: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
h = A("h")
b = B("b")
e = B("e")
j = B("j")
g = A("g")
h.v = g
h.p = g
b.z = g
e.z = g
j.z = g
g.v = h
g.p = h... | h" | class A:
def __init__(self, txt: str):
self.v: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
h = A("h")
b = B("b")
e = B("e")
j = B("j")
g = A("g")
h.v = g
h.p = g
b.z = g
e.z = g
j.z = g
g.v = h
g.p = h... | h | g | h | g | h | x | x | x | h | g | h | g | h | x | x | x | 5 | 5 | 2 | 4 | 3 |
2,233 | 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")
h = B("h")
g = B("g")
c.t = g
h.r = g
g.r = h
assert h.r.r.r.txt == " | g" | 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")
h = B("h")
g = B("g")
c.t = g
h.r = g
g.r = h
assert h.r.r.r.txt == "g" | h | g | h | g | x | x | x | x | g | h | g | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,234 | class A:
def __init__(self, txt: str):
self.v: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
b = A("b")
g = B("g")
e = A("e")
j = A("j")
a = A("a")
f = B("f")
b.v = g
b.x = e
g.s = a
e.v = f
e.x = a
j.v ... | f" | class A:
def __init__(self, txt: str):
self.v: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
b = A("b")
g = B("g")
e = A("e")
j = A("j")
a = A("a")
f = B("f")
b.v = g
b.x = e
g.s = a
e.v = f
e.x = a
j.v ... | a | f | j | f | x | x | x | x | f | j | f | a | x | x | x | x | 6 | 10 | 2 | 3 | 1 |
2,235 | class A:
def __init__(self, txt: str):
self.p: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.v: A = None
self.txt = txt
i = A("i")
b = B("b")
d = A("d")
a = A("a")
f = A("f")
c = B("c")
i.p = f
i.v = d
b.t... | d" | class A:
def __init__(self, txt: str):
self.p: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.v: A = None
self.txt = txt
i = A("i")
b = B("b")
d = A("d")
a = A("a")
f = A("f")
c = B("c")
i.p = f
i.v = d
b.t... | b | i | f | a | d | x | x | x | d | a | f | i | b | x | x | x | 6 | 11 | 2 | 4 | 0 |
2,236 | class A:
def __init__(self, txt: str):
self.v: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
e = A("e")
h = B("h")
i = A("i")
e.v = h
e.x = h
h.r = i
i.v = h
i.x = h
assert e.v.r.v.txt == " | h" | class A:
def __init__(self, txt: str):
self.v: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
e = A("e")
h = B("h")
i = A("i")
e.v = h
e.x = h
h.r = i
i.v = h
i.x = h
assert e.v.r.v.txt == "h" | e | h | i | h | x | x | x | x | h | i | h | e | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
2,237 | class A:
def __init__(self, txt: str):
self.t: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
g = B("g")
f = A("f")
c.t = f
c.r = g
g.s = c
f.t = c
f.r = g
assert c.t.t.r.txt == " | g" | class A:
def __init__(self, txt: str):
self.t: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
g = B("g")
f = A("f")
c.t = f
c.r = g
g.s = c
f.t = c
f.r = g
assert c.t.t.r.txt == "g" | c | f | c | g | x | x | x | x | g | c | f | c | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
2,238 | class A:
def __init__(self, txt: str):
self.r: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.r: B = None
self.txt = txt
a = A("a")
e = B("e")
j = A("j")
f = A("f")
b = B("b")
g = B("g")
h = A("h")
a.r = h
... | h" | class A:
def __init__(self, txt: str):
self.r: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.r: B = None
self.txt = txt
a = A("a")
e = B("e")
j = A("j")
f = A("f")
b = B("b")
g = B("g")
h = A("h")
a.r = h
... | a | h | a | h | a | h | f | h | h | f | h | a | h | a | h | a | 7 | 14 | 2 | 7 | 5 |
2,239 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
d = A("d")
f = B("f")
b = A("b")
g = A("g")
d.w = g
f.p = b
b.w = g
g.w = b
assert b.w.w.w.w.txt == " | b" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
d = A("d")
f = B("f")
b = A("b")
g = A("g")
d.w = g
f.p = b
b.w = g
g.w = b
assert b.w.w.w.w.txt == "b" | b | g | b | g | b | x | x | x | b | g | b | g | b | x | x | x | 4 | 4 | 2 | 4 | 3 |
2,240 | class A:
def __init__(self, txt: str):
self.s: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.r: B = None
self.txt = txt
b = A("b")
g = B("g")
f = A("f")
c = B("c")
b.s = f
b.u = g
g.w = f
g.r = c
f.s = b
f... | c" | class A:
def __init__(self, txt: str):
self.s: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.r: B = None
self.txt = txt
b = A("b")
g = B("g")
f = A("f")
c = B("c")
b.s = f
b.u = g
g.w = f
g.r = c
f.s = b
f... | g | c | f | g | c | x | x | x | c | g | f | c | g | x | x | x | 4 | 8 | 2 | 4 | 2 |
2,241 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
c = A("c")
e = B("e")
a = A("a")
i = B("i")
c.p = e
e.w = i
a.p = e
i.w = e
assert e.w.w.w.txt == " | i" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
c = A("c")
e = B("e")
a = A("a")
i = B("i")
c.p = e
e.w = i
a.p = e
i.w = e
assert e.w.w.w.txt == "i" | e | i | e | i | x | x | x | x | i | e | i | e | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
2,242 | 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.v: A = None
self.txt = txt
c = A("c")
b = B("b")
j = B("j")
a = A("a")
c.w = b
c.t = a
b.v = c
j.v = a
a.w = b
a.t = c
assert c.t.w.v.t.t... | a" | 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.v: A = None
self.txt = txt
c = A("c")
b = B("b")
j = B("j")
a = A("a")
c.w = b
c.t = a
b.v = c
j.v = a
a.w = b
a.t = c
assert c.t.w.v.t.t... | c | a | b | c | a | x | x | x | a | c | b | a | c | x | x | x | 4 | 6 | 2 | 4 | 2 |
2,243 | class A:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
j = A("j")
a = B("a")
d = A("d")
h = A("h")
f = B("f")
g = A("g")
i = B("i")
j.u = a
j.q = a
a.t = g
d.u = a
d... | i" | class A:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
j = A("j")
a = B("a")
d = A("d")
h = A("h")
f = B("f")
g = A("g")
i = B("i")
j.u = a
j.q = a
a.t = g
d.u = a
d... | h | a | g | i | j | a | g | i | i | g | a | j | i | g | a | h | 7 | 9 | 2 | 7 | 3 |
2,244 | 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
j = A("j")
g = B("g")
c = A("c")
j.r = c
g.r = c
c.r = j
assert c.r.r.r.txt == " | j" | 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
j = A("j")
g = B("g")
c = A("c")
j.r = c
g.r = c
c.r = j
assert c.r.r.r.txt == "j" | c | j | c | j | x | x | x | x | j | c | j | c | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,245 | class A:
def __init__(self, txt: str):
self.v: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
e = A("e")
a = B("a")
f = B("f")
e.v = f
e.y = a
a.p = f
f.p = a
assert a.p.p.p.txt == " | f" | class A:
def __init__(self, txt: str):
self.v: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
e = A("e")
a = B("a")
f = B("f")
e.v = f
e.y = a
a.p = f
f.p = a
assert a.p.p.p.txt == "f" | a | f | a | f | x | x | x | x | f | a | f | a | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
2,246 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.q: B = None
self.txt = txt
a = A("a")
h = B("h")
d = B("d")
f = B("f")
a.q = h
h.y = f
h.q = f
d.y = f
d.q = f
f.y = d
f.q = h
assert a.q... | d" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.q: B = None
self.txt = txt
a = A("a")
h = B("h")
d = B("d")
f = B("f")
a.q = h
h.y = f
h.q = f
d.y = f
d.q = f
f.y = d
f.q = h
assert a.q... | a | h | f | d | x | x | x | x | d | f | h | a | x | x | x | x | 4 | 5 | 2 | 3 | 0 |
2,247 | 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.q: B = None
self.txt = txt
d = A("d")
g = B("g")
c = A("c")
i = B("i")
f = A("f")
a = B("a")
d.x = i
d.s = i
g.q = a
c.x = g
c.s = i
i.q ... | 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.q: B = None
self.txt = txt
d = A("d")
g = B("g")
c = A("c")
i = B("i")
f = A("f")
a = B("a")
d.x = i
d.s = i
g.q = a
c.x = g
c.s = i
i.q ... | c | g | a | g | x | x | x | x | g | a | g | c | x | x | x | x | 6 | 8 | 2 | 3 | 1 |
2,248 | class A:
def __init__(self, txt: str):
self.r: A = 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
f = A("f")
g = B("g")
c = A("c")
e = B("e")
f.r = c
f.s = e
g.x = e
g.v = f
c.r = f
c... | f" | class A:
def __init__(self, txt: str):
self.r: A = 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
f = A("f")
g = B("g")
c = A("c")
e = B("e")
f.r = c
f.s = e
g.x = e
g.v = f
c.r = f
c... | f | e | c | f | x | x | x | x | f | c | e | f | x | x | x | x | 4 | 8 | 2 | 3 | 1 |
2,249 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.p: B = None
self.txt = txt
d = A("d")
g = B("g")
e = A("e")
j = B("j")
c = A("c")
a = A("a")
f = A("f")
d.w = f
g.z = j
g.p = j
e.w = f
j... | a" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.p: B = None
self.txt = txt
d = A("d")
g = B("g")
e = A("e")
j = B("j")
c = A("c")
a = A("a")
f = A("f")
d.w = f
g.z = j
g.p = j
e.w = f
j... | f | a | f | a | x | x | x | x | a | f | a | f | x | x | x | x | 7 | 7 | 2 | 3 | 2 |
2,250 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.t: A = None
self.txt = txt
c = A("c")
g = B("g")
d = B("d")
b = A("b")
c.v = g
g.q = d
g.t = c
d.q = g
d.t = b
b.v = g
assert c.v.t.v.q.t... | d" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.t: A = None
self.txt = txt
c = A("c")
g = B("g")
d = B("d")
b = A("b")
c.v = g
g.q = d
g.t = c
d.q = g
d.t = b
b.v = g
assert c.v.t.v.q.t... | c | g | c | g | d | x | x | x | d | g | c | g | c | x | x | x | 4 | 6 | 2 | 4 | 2 |
2,251 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
g = B("g")
i = A("i")
e = B("e")
a.u = e
g.x = e
i.u = e
e.x = g
assert a.u.x.x.x.txt == " | g" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
g = B("g")
i = A("i")
e = B("e")
a.u = e
g.x = e
i.u = e
e.x = g
assert a.u.x.x.x.txt == "g" | a | e | g | e | g | x | x | x | g | e | g | e | a | x | x | x | 4 | 4 | 2 | 4 | 2 |
2,252 | 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.r: A = None
self.txt = txt
h = A("h")
b = B("b")
e = A("e")
c = A("c")
g = A("g")
d = B("d")
i = A("i")
h.r = i
b.q = d
b.r = h
e.r = c
c... | e" | 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.r: A = None
self.txt = txt
h = A("h")
b = B("b")
e = A("e")
c = A("c")
g = A("g")
d = B("d")
i = A("i")
h.r = i
b.q = d
b.r = h
e.r = c
c... | d | g | e | c | e | c | e | x | e | c | e | c | e | g | d | x | 7 | 9 | 2 | 6 | 3 |
2,253 | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
a = A("a")
c = B("c")
g = B("g")
e = B("e")
i = B("i")
a.u = g
a.z = g
c.v = e
g.v = c
e.v = i
i.v = g
assert ... | e" | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
a = A("a")
c = B("c")
g = B("g")
e = B("e")
i = B("i")
a.u = g
a.z = g
c.v = e
g.v = c
e.v = i
i.v = g
assert ... | i | g | c | e | x | x | x | x | e | c | g | i | x | x | x | x | 5 | 5 | 2 | 3 | 0 |
2,254 | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
a = B("a")
e = B("e")
d.q = a
d.x = e
a.z = d
e.z = d
assert a.z.x.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
a = B("a")
e = B("e")
d.q = a
d.x = e
a.z = d
e.z = d
assert a.z.x.z.txt == "d" | a | d | e | d | x | x | x | x | d | e | d | a | x | x | x | x | 3 | 4 | 2 | 3 | 1 |
2,255 | class A:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
c = A("c")
i = B("i")
d = B("d")
b = A("b")
a = A("a")
h = B("h")
c.x = a
c.o = d
i.r = h
d.r = i
b.x = a
b.o ... | i" | class A:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
c = A("c")
i = B("i")
d = B("d")
b = A("b")
a = A("a")
h = B("h")
c.x = a
c.o = d
i.r = h
d.r = i
b.x = a
b.o ... | c | d | i | h | i | h | i | x | i | h | i | h | i | d | c | x | 6 | 9 | 2 | 6 | 3 |
2,256 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
j = A("j")
c = B("c")
d = B("d")
j.q = c
c.v = d
d.v = c
assert j.q.v.v.txt == " | c" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
j = A("j")
c = B("c")
d = B("d")
j.q = c
c.v = d
d.v = c
assert j.q.v.v.txt == "c" | j | c | d | c | x | x | x | x | c | d | c | j | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
2,257 | class A:
def __init__(self, txt: str):
self.y: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.y: A = None
self.txt = txt
a = A("a")
f = B("f")
e = B("e")
g = B("g")
c = A("c")
i = B("i")
j = A("j")
a.y = j
... | a" | class A:
def __init__(self, txt: str):
self.y: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.y: A = None
self.txt = txt
a = A("a")
f = B("f")
e = B("e")
g = B("g")
c = A("c")
i = B("i")
j = A("j")
a.y = j
... | f | j | c | a | x | x | x | x | a | c | j | f | x | x | x | x | 7 | 10 | 2 | 3 | 0 |
2,258 | class A:
def __init__(self, txt: str):
self.y: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
i = A("i")
g = B("g")
a = A("a")
d = A("d")
c = B("c")
i.y = c
i.o = a
g.y = c
a.y = g
a.o = i
d.y = c
d.o = a... | c" | class A:
def __init__(self, txt: str):
self.y: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
i = A("i")
g = B("g")
a = A("a")
d = A("d")
c = B("c")
i.y = c
i.o = a
g.y = c
a.y = g
a.o = i
d.y = c
d.o = a... | i | a | i | c | x | x | x | x | c | i | a | i | x | x | x | x | 5 | 8 | 2 | 3 | 1 |
2,259 | 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.y: A = None
self.txt = txt
c = A("c")
i = B("i")
a = B("a")
c.y = i
i.r = a
i.y = c
a.r = i
a.y = c
assert a.r.r.y.txt == " | c" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.y: A = None
self.txt = txt
c = A("c")
i = B("i")
a = B("a")
c.y = i
i.r = a
i.y = c
a.r = i
a.y = c
assert a.r.r.y.txt == "c" | a | i | a | c | x | x | x | x | c | a | i | a | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
2,260 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
j = A("j")
g = B("g")
a = A("a")
f = B("f")
c = A("c")
j.t = c
g.z = c
a.t = c
f.z = j
c.t = j
assert a.t.t.t.t.txt == " | j" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
j = A("j")
g = B("g")
a = A("a")
f = B("f")
c = A("c")
j.t = c
g.z = c
a.t = c
f.z = j
c.t = j
assert a.t.t.t.t.txt == "j" | a | c | j | c | j | x | x | x | j | c | j | c | a | x | x | x | 5 | 5 | 2 | 4 | 2 |
2,261 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.x: A = None
self.txt = txt
i = A("i")
a = B("a")
g = A("g")
j = A("j")
c = B("c")
i.r = g
a.u = i
a.x = i
g.r = j
j.r = i
c.u = j
c.x = g... | g" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.x: A = None
self.txt = txt
i = A("i")
a = B("a")
g = A("g")
j = A("j")
c = B("c")
i.r = g
a.u = i
a.x = i
g.r = j
j.r = i
c.u = j
c.x = g... | c | j | i | g | x | x | x | x | g | i | j | c | x | x | x | x | 5 | 6 | 2 | 3 | 0 |
2,262 | 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.p: A = None
self.s: A = None
self.txt = txt
b = A("b")
f = B("f")
d = A("d")
b.w = f
b.x = f
f.p = d
f.s = b
d.w = f
d.x = f
asse... | 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.p: A = None
self.s: A = None
self.txt = txt
b = A("b")
f = B("f")
d = A("d")
b.w = f
b.x = f
f.p = d
f.s = b
d.w = f
d.x = f
asse... | d | f | b | f | x | x | x | x | f | b | f | d | x | x | x | x | 3 | 4 | 2 | 3 | 1 |
2,263 | 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
e = A("e")
f = B("f")
b = B("b")
h = A("h")
e.u = b
f.q = b
b.q = f
h.u = f
assert e.u.q.q.txt == " | b" | 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
e = A("e")
f = B("f")
b = B("b")
h = A("h")
e.u = b
f.q = b
b.q = f
h.u = f
assert e.u.q.q.txt == "b" | e | b | f | b | x | x | x | x | b | f | b | e | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
2,264 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
d = A("d")
j = B("j")
g = B("g")
e = B("e")
a = B("a")
d.y = a
j.x = d
g.x = d
e.x = d
a.x = d
assert g.x.y.x.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
d = A("d")
j = B("j")
g = B("g")
e = B("e")
a = B("a")
d.y = a
j.x = d
g.x = d
e.x = d
a.x = d
assert g.x.y.x.y.txt == "a" | g | d | a | d | a | x | x | x | a | d | a | d | g | x | x | x | 5 | 5 | 2 | 4 | 2 |
2,265 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
f = A("f")
i = B("i")
h = B("h")
a = B("a")
c = A("c")
b = A("b")
e = A("e")
f.p = a
i.x = a
h.x = i
a.x = i
c.p = i
b.p = a
e.p = i
as... | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
f = A("f")
i = B("i")
h = B("h")
a = B("a")
c = A("c")
b = A("b")
e = A("e")
f.p = a
i.x = a
h.x = i
a.x = i
c.p = i
b.p = a
e.p = i
as... | e | i | a | i | a | i | a | x | a | i | a | i | a | i | e | x | 7 | 7 | 2 | 6 | 4 |
2,266 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.y: B = None
self.txt = txt
b = A("b")
i = B("i")
j = B("j")
c = A("c")
h = B("h")
b.q = h
i.w = h
i.y = j
j.w = i
j.y = i
c.q = j
h.w = i... | h" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.y: B = None
self.txt = txt
b = A("b")
i = B("i")
j = B("j")
c = A("c")
h = B("h")
b.q = h
i.w = h
i.y = j
j.w = i
j.y = i
c.q = j
h.w = i... | b | h | i | h | x | x | x | x | h | i | h | b | x | x | x | x | 5 | 6 | 2 | 3 | 1 |
2,267 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
j = A("j")
c = B("c")
d = A("d")
j.t = d
c.u = d
d.t = j
assert c.u.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.u: A = None
self.txt = txt
j = A("j")
c = B("c")
d = A("d")
j.t = d
c.u = d
d.t = j
assert c.u.t.t.txt == "d" | c | d | j | d | x | x | x | x | d | j | d | c | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
2,268 | class A:
def __init__(self, txt: str):
self.s: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
c = A("c")
h = B("h")
b = B("b")
j = A("j")
c.s = j
c.r = h
h.p = b
b.p = h
j.s = c
j.r = h
assert b.p.p.p.p.t... | b" | class A:
def __init__(self, txt: str):
self.s: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
c = A("c")
h = B("h")
b = B("b")
j = A("j")
c.s = j
c.r = h
h.p = b
b.p = h
j.s = c
j.r = h
assert b.p.p.p.p.t... | b | h | b | h | b | x | x | x | b | h | b | h | b | x | x | x | 4 | 6 | 2 | 4 | 3 |
2,269 | 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.v: B = None
self.txt = txt
g = A("g")
c = B("c")
j = B("j")
b = A("b")
g.q = c
g.y = c
c.v = j
j.v = c
b.q = j
b.y = j
assert c.v.v.v.txt... | j" | 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.v: B = None
self.txt = txt
g = A("g")
c = B("c")
j = B("j")
b = A("b")
g.q = c
g.y = c
c.v = j
j.v = c
b.q = j
b.y = j
assert c.v.v.v.txt... | c | j | c | j | x | x | x | x | j | c | j | c | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
2,270 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
c = A("c")
f = B("f")
d = B("d")
b = A("b")
h = B("h")
g = A("g")
j = B("j")
c.r = b
f.p = d
d.p = f
b.r = c
h.p = f
g.r = b
j.p = h
as... | d" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
c = A("c")
f = B("f")
d = B("d")
b = A("b")
h = B("h")
g = A("g")
j = B("j")
c.r = b
f.p = d
d.p = f
b.r = c
h.p = f
g.r = b
j.p = h
as... | d | f | d | f | d | f | d | x | d | f | d | f | d | f | d | x | 7 | 7 | 2 | 6 | 5 |
2,271 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
b = A("b")
f = B("f")
h = B("h")
a = B("a")
e = B("e")
j = A("j")
b.s = j
f.w = e
h.w = a
a.w = h
e.w = a
j.s = b
assert f.w.w.w.w.w.tx... | h" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
b = A("b")
f = B("f")
h = B("h")
a = B("a")
e = B("e")
j = A("j")
b.s = j
f.w = e
h.w = a
a.w = h
e.w = a
j.s = b
assert f.w.w.w.w.w.tx... | f | e | a | h | a | h | x | x | h | a | h | a | e | f | x | x | 6 | 6 | 2 | 5 | 2 |
2,272 | class A:
def __init__(self, txt: str):
self.x: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
g = A("g")
j = B("j")
i = A("i")
a = A("a")
g.x = j
g.q = j
j.u = a
i.x = j
i.q = j
a.x = j
a.q = j
assert j.u... | j" | class A:
def __init__(self, txt: str):
self.x: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
g = A("g")
j = B("j")
i = A("i")
a = A("a")
g.x = j
g.q = j
j.u = a
i.x = j
i.q = j
a.x = j
a.q = j
assert j.u... | j | a | j | a | j | x | x | x | j | a | j | a | j | x | x | x | 4 | 4 | 2 | 4 | 3 |
2,273 | 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
i = A("i")
d = B("d")
c = A("c")
f = B("f")
b = B("b")
g = A("g")
i.z = d
d.o = b
c.z = f
f.o = d
b.o = d
g.z = f
assert i.z.o.o.txt ==... | d" | 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
i = A("i")
d = B("d")
c = A("c")
f = B("f")
b = B("b")
g = A("g")
i.z = d
d.o = b
c.z = f
f.o = d
b.o = d
g.z = f
assert i.z.o.o.txt ==... | i | d | b | d | x | x | x | x | d | b | d | i | x | x | x | x | 6 | 6 | 2 | 3 | 1 |
2,274 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
h = A("h")
f = B("f")
c = A("c")
d = A("d")
g = B("g")
a = A("a")
h.x = c
f.q = d
c.x = a
d.x = h
g.q = a
a.x = c
assert d.x.x.x.x.x.x.... | c" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
h = A("h")
f = B("f")
c = A("c")
d = A("d")
g = B("g")
a = A("a")
h.x = c
f.q = d
c.x = a
d.x = h
g.q = a
a.x = c
assert d.x.x.x.x.x.x.... | d | h | c | a | c | a | c | x | c | a | c | a | c | h | d | x | 6 | 6 | 2 | 6 | 3 |
2,275 | class A:
def __init__(self, txt: str):
self.u: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
d = A("d")
h = B("h")
j = A("j")
i = A("i")
g = B("g")
a = B("a")
e = B("e")
d.u = j
d.o = i
h.p = i
j.u = i
j... | j" | class A:
def __init__(self, txt: str):
self.u: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
d = A("d")
h = B("h")
j = A("j")
i = A("i")
g = B("g")
a = B("a")
e = B("e")
d.u = j
d.o = i
h.p = i
j.u = i
j... | a | d | i | j | i | d | i | j | j | i | d | i | j | i | d | a | 7 | 9 | 2 | 7 | 4 |
2,276 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
j = A("j")
d = B("d")
b = B("b")
a = B("a")
f = A("f")
g = A("g")
h = A("h")
j.o = g
d.y = a
b.y = d
a.y = b
f.o = h
g.o = j
h.o = g
as... | g" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
j = A("j")
d = B("d")
b = B("b")
a = B("a")
f = A("f")
g = A("g")
h = A("h")
j.o = g
d.y = a
b.y = d
a.y = b
f.o = h
g.o = j
h.o = g
as... | f | h | g | j | g | j | g | x | g | j | g | j | g | h | f | x | 7 | 7 | 2 | 6 | 3 |
2,277 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.p: B = None
self.txt = txt
i = A("i")
g = B("g")
h = B("h")
i.z = h
g.t = h
g.p = h
h.t = g
h.p = g
assert i.z.p.p.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.p: B = None
self.txt = txt
i = A("i")
g = B("g")
h = B("h")
i.z = h
g.t = h
g.p = h
h.t = g
h.p = g
assert i.z.p.p.txt == "h" | i | h | g | h | x | x | x | x | h | g | h | i | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
2,278 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.t: A = None
self.txt = txt
h = A("h")
e = B("e")
j = A("j")
f = B("f")
h.u = j
e.y = h
e.t = j
j.u = h
f.y = h
f.t = j
assert e.t.u.u.txt... | j" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.t: A = None
self.txt = txt
h = A("h")
e = B("e")
j = A("j")
f = B("f")
h.u = j
e.y = h
e.t = j
j.u = h
f.y = h
f.t = j
assert e.t.u.u.txt... | e | j | h | j | x | x | x | x | j | h | j | e | x | x | x | x | 4 | 6 | 2 | 3 | 1 |
2,279 | class A:
def __init__(self, txt: str):
self.y: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
b = A("b")
d = B("d")
c = A("c")
g = B("g")
h = A("h")
i = B("i")
b.y = c
b.x = g
d.y = i
c.y = b
c.x = g
g.y ... | g" | class A:
def __init__(self, txt: str):
self.y: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
b = A("b")
d = B("d")
c = A("c")
g = B("g")
h = A("h")
i = B("i")
b.y = c
b.x = g
d.y = i
c.y = b
c.x = g
g.y ... | h | d | i | g | d | i | g | x | g | i | d | g | i | d | h | x | 6 | 9 | 2 | 6 | 3 |
2,280 | class A:
def __init__(self, txt: str):
self.o: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
a = A("a")
b = B("b")
g = B("g")
i = A("i")
d = A("d")
j = A("j")
e = B("e")
a.o = g
a.r = d
b.s = e
g.s = b
i... | b" | class A:
def __init__(self, txt: str):
self.o: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
a = A("a")
b = B("b")
g = B("g")
i = A("i")
d = A("d")
j = A("j")
e = B("e")
a.o = g
a.r = d
b.s = e
g.s = b
i... | j | d | e | g | b | x | x | x | b | g | e | d | j | x | x | x | 7 | 11 | 2 | 4 | 0 |
2,281 | 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.z: A = None
self.txt = txt
g = A("g")
c = B("c")
a = B("a")
i = A("i")
b = A("b")
h = B("h")
j = B("j")
g.y = j
g.u = b
c.z = b
a.z = b
i... | j" | 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.z: A = None
self.txt = txt
g = A("g")
c = B("c")
a = B("a")
i = A("i")
b = A("b")
h = B("h")
j = B("j")
g.y = j
g.u = b
c.z = b
a.z = b
i... | g | b | g | b | g | j | g | j | j | g | j | g | b | g | b | g | 7 | 10 | 2 | 7 | 5 |
2,282 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.o: B = None
self.txt = txt
j = A("j")
d = B("d")
e = B("e")
h = B("h")
c = A("c")
a = A("a")
j.w = h
d.q = a
d.o = h
e.q = a
e.o = h
h.q ... | h" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.o: B = None
self.txt = txt
j = A("j")
d = B("d")
e = B("e")
h = B("h")
c = A("c")
a = A("a")
j.w = h
d.q = a
d.o = h
e.q = a
e.o = h
h.q ... | e | a | e | h | x | x | x | x | h | e | a | e | x | x | x | x | 6 | 9 | 2 | 3 | 1 |
2,283 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: B = None
self.txt = txt
h = A("h")
i = B("i")
f = B("f")
h.s = f
i.w = f
i.q = f
f.w = i
f.q = i
assert i.w.q.q.txt == " | f" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: B = None
self.txt = txt
h = A("h")
i = B("i")
f = B("f")
h.s = f
i.w = f
i.q = f
f.w = i
f.q = i
assert i.w.q.q.txt == "f" | i | f | i | f | x | x | x | x | f | i | f | i | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,284 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.y: B = None
self.txt = txt
f = A("f")
i = B("i")
h = A("h")
j = B("j")
b = A("b")
c = A("c")
d = A("d")
f.u = b
i.q = j
i.y = j
h.u = b
j... | i" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.y: B = None
self.txt = txt
f = A("f")
i = B("i")
h = A("h")
j = B("j")
b = A("b")
c = A("c")
d = A("d")
f.u = b
i.q = j
i.y = j
h.u = b
j... | i | j | i | j | i | j | i | x | i | j | i | j | i | j | i | x | 7 | 7 | 2 | 6 | 5 |
2,285 | class A:
def __init__(self, txt: str):
self.x: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
b = A("b")
a = B("a")
d = A("d")
e = A("e")
f = A("f")
g = B("g")
h = B("h")
b.x = a
b.z = h
a.x = b
d.x = h
d... | e" | class A:
def __init__(self, txt: str):
self.x: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
b = A("b")
a = B("a")
d = A("d")
e = A("e")
f = A("f")
g = B("g")
h = B("h")
b.x = a
b.z = h
a.x = b
d.x = h
d... | f | g | d | h | e | x | x | x | e | h | d | g | f | x | x | x | 7 | 9 | 2 | 4 | 0 |
2,286 | class A:
def __init__(self, txt: str):
self.y: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
b = A("b")
h = B("h")
i = A("i")
b.y = h
b.w = h
h.r = i
i.y = h
i.w = h
assert h.r.w.r.txt == " | i" | class A:
def __init__(self, txt: str):
self.y: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
b = A("b")
h = B("h")
i = A("i")
b.y = h
b.w = h
h.r = i
i.y = h
i.w = h
assert h.r.w.r.txt == "i" | h | i | h | i | x | x | x | x | i | h | i | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,287 | class A:
def __init__(self, txt: str):
self.u: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
g = A("g")
d = B("d")
e = A("e")
h = A("h")
j = B("j")
f = A("f")
a = B("a")
g.u = e
g.x = d
d.y = e
e.u = f
e... | e" | class A:
def __init__(self, txt: str):
self.u: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
g = A("g")
d = B("d")
e = A("e")
h = A("h")
j = B("j")
f = A("f")
a = B("a")
g.u = e
g.x = d
d.y = e
e.u = f
e... | d | e | f | j | g | e | x | x | e | g | j | f | e | d | x | x | 7 | 11 | 2 | 5 | 1 |
2,288 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
c = A("c")
i = B("i")
g = A("g")
j = B("j")
e = B("e")
b = A("b")
f = A("f")
c.p = b
i.w = c
g.p = b
j.w = f
e.w = f
b.p = c
f.p = c
as... | b" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
c = A("c")
i = B("i")
g = A("g")
j = B("j")
e = B("e")
b = A("b")
f = A("f")
c.p = b
i.w = c
g.p = b
j.w = f
e.w = f
b.p = c
f.p = c
as... | c | b | c | b | c | b | c | b | b | c | b | c | b | c | b | c | 7 | 7 | 2 | 7 | 6 |
2,289 | class A:
def __init__(self, txt: str):
self.r: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
h = A("h")
e = B("e")
a = B("a")
b = A("b")
h.r = e
h.q = a
e.s = b
a.s = b
b.r = a
b.q = a
assert a.s.r.s.txt... | b" | class A:
def __init__(self, txt: str):
self.r: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
h = A("h")
e = B("e")
a = B("a")
b = A("b")
h.r = e
h.q = a
e.s = b
a.s = b
b.r = a
b.q = a
assert a.s.r.s.txt... | a | b | a | b | x | x | x | x | b | a | b | a | x | x | x | x | 4 | 5 | 2 | 3 | 2 |
2,290 | 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.s: A = None
self.txt = txt
b = A("b")
e = B("e")
d = B("d")
j = A("j")
f = B("f")
a = A("a")
b.z = d
e.z = d
e.s = j
d.z = f
d.s = a
j.z ... | f" | 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.s: A = None
self.txt = txt
b = A("b")
e = B("e")
d = B("d")
j = A("j")
f = B("f")
a = A("a")
b.z = d
e.z = d
e.s = j
d.z = f
d.s = a
j.z ... | d | f | d | f | x | x | x | x | f | d | f | d | x | x | x | x | 6 | 9 | 2 | 3 | 2 |
2,291 | 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.y: A = None
self.txt = txt
f = A("f")
e = B("e")
c = A("c")
h = A("h")
f.o = h
e.t = f
e.y = h
c.o = h
h.o = c
assert h.o.o.o.txt == " | c" | 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.y: A = None
self.txt = txt
f = A("f")
e = B("e")
c = A("c")
h = A("h")
f.o = h
e.t = f
e.y = h
c.o = h
h.o = c
assert h.o.o.o.txt == "c" | h | c | h | c | x | x | x | x | c | h | c | h | x | x | x | x | 4 | 5 | 2 | 3 | 2 |
2,292 | class A:
def __init__(self, txt: str):
self.q: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
d = A("d")
e = B("e")
j = A("j")
f = A("f")
h = A("h")
b = B("b")
i = B("i")
d.q = i
d.u = b
e.y = d
j.q = i
j... | i" | class A:
def __init__(self, txt: str):
self.q: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
d = A("d")
e = B("e")
j = A("j")
f = A("f")
h = A("h")
b = B("b")
i = B("i")
d.q = i
d.u = b
e.y = d
j.q = i
j... | h | e | d | i | d | i | x | x | i | d | i | d | e | h | x | x | 7 | 9 | 2 | 5 | 2 |
2,293 | class A:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.q: B = None
self.txt = txt
g = A("g")
f = B("f")
a = A("a")
b = B("b")
d = A("d")
e = B("e")
g.r = d
g.u = d
f.t... | e" | class A:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.q: B = None
self.txt = txt
g = A("g")
f = B("f")
a = A("a")
b = B("b")
d = A("d")
e = B("e")
g.r = d
g.u = d
f.t... | e | b | e | f | e | x | x | x | e | f | e | b | e | x | x | x | 6 | 10 | 2 | 4 | 2 |
2,294 | 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.u: A = None
self.r: A = None
self.txt = txt
c = A("c")
f = B("f")
j = A("j")
c.o = j
c.w = j
f.u = c
f.r = c
j.o = c
j.w = c
asse... | c" | 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.u: A = None
self.r: A = None
self.txt = txt
c = A("c")
f = B("f")
j = A("j")
c.o = j
c.w = j
f.u = c
f.r = c
j.o = c
j.w = c
asse... | j | c | j | c | x | x | x | x | c | j | c | j | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,295 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.y: B = None
self.txt = txt
g = A("g")
b = B("b")
d = A("d")
a = B("a")
g.u = d
b.x = d
b.y = a
d.u = g
a.x = d
a.y = b
assert a.y.x.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.x: A = None
self.y: B = None
self.txt = txt
g = A("g")
b = B("b")
d = A("d")
a = B("a")
g.u = d
b.x = d
b.y = a
d.u = g
a.x = d
a.y = b
assert a.y.x.u.u.t... | a | b | d | g | d | x | x | x | d | g | d | b | a | x | x | x | 4 | 6 | 2 | 4 | 1 |
2,296 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
d = A("d")
f = B("f")
i = A("i")
d.u = i
f.w = d
i.u = d
assert i.u.u.u.txt == " | d" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
d = A("d")
f = B("f")
i = A("i")
d.u = i
f.w = d
i.u = d
assert i.u.u.u.txt == "d" | i | d | i | d | x | x | x | x | d | i | d | i | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,297 | 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.v: A = None
self.txt = txt
h = A("h")
i = B("i")
a = A("a")
d = A("d")
h.z = d
h.v = a
i.v = a
a.z = h
a.v = h
d.z = h
d.v = a
assert h.z... | h" | 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.v: A = None
self.txt = txt
h = A("h")
i = B("i")
a = A("a")
d = A("d")
h.z = d
h.v = a
i.v = a
a.z = h
a.v = h
d.z = h
d.v = a
assert h.z... | h | d | h | a | h | x | x | x | h | a | h | d | h | x | x | x | 4 | 6 | 2 | 4 | 2 |
2,298 | class A:
def __init__(self, txt: str):
self.y: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
b = A("b")
c = B("c")
h = B("h")
e = A("e")
b.y = e
b.v = c
c.r = h
h.r = c
e.y = b
e.v = c
assert c.r.r.r.txt... | h" | class A:
def __init__(self, txt: str):
self.y: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
b = A("b")
c = B("c")
h = B("h")
e = A("e")
b.y = e
b.v = c
c.r = h
h.r = c
e.y = b
e.v = c
assert c.r.r.r.txt... | c | h | c | h | x | x | x | x | h | c | h | c | x | x | x | x | 4 | 6 | 2 | 3 | 2 |
2,299 | class A:
def __init__(self, txt: str):
self.s: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.r: A = None
self.txt = txt
d = A("d")
h = B("h")
g = B("g")
j = A("j")
b = A("b")
d.s = h
d.p = b
h.t = g
h.r = ... | g" | class A:
def __init__(self, txt: str):
self.s: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.r: A = None
self.txt = txt
d = A("d")
h = B("h")
g = B("g")
j = A("j")
b = A("b")
d.s = h
d.p = b
h.t = g
h.r = ... | g | j | b | g | x | x | x | x | g | b | j | g | x | x | x | x | 5 | 10 | 2 | 3 | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.