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