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