id int64 0 30k | prompt stringlengths 265 1.96k | answer stringclasses 10
values | pythoncode stringlengths 267 1.96k | depth0 stringclasses 10
values | depth1 stringclasses 10
values | depth2 stringclasses 10
values | depth3 stringclasses 10
values | depth4 stringclasses 11
values | depth5 stringclasses 11
values | depth6 stringclasses 11
values | depth7 stringclasses 11
values | depthn0 stringclasses 10
values | depthn1 stringclasses 10
values | depthn2 stringclasses 10
values | depthn3 stringclasses 10
values | depthn4 stringclasses 11
values | depthn5 stringclasses 11
values | depthn6 stringclasses 11
values | depthn7 stringclasses 11
values | num_nodes int64 3 7 | num_edges int64 3 30 | num_classes int64 2 7 | path_length int64 3 7 | num_cycle int64 0 6 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2,500 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.s: A = None
self.txt = txt
i = A("i")
j = B("j")
f = A("f")
h = B("h")
a = B("a")
i.r = h
j.r = h
j.s = i
f.r = a
h.r = j
h.s = f
a.r = j... | h" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.s: A = None
self.txt = txt
i = A("i")
j = B("j")
f = A("f")
h = B("h")
a = B("a")
i.r = h
j.r = h
j.s = i
f.r = a
h.r = j
h.s = f
a.r = j... | i | h | f | a | j | h | x | x | h | j | a | f | h | i | x | x | 5 | 8 | 2 | 5 | 1 |
2,501 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
f = A("f")
i = B("i")
a = A("a")
g = B("g")
f.p = i
i.x = a
a.p = g
g.x = a
assert f.p.x.p.txt == " | g" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
f = A("f")
i = B("i")
a = A("a")
g = B("g")
f.p = i
i.x = a
a.p = g
g.x = a
assert f.p.x.p.txt == "g" | f | i | a | g | x | x | x | x | g | a | i | f | x | x | x | x | 4 | 4 | 2 | 3 | 0 |
2,502 | 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.o: B = None
self.txt = txt
h = A("h")
a = B("a")
c = B("c")
d = A("d")
b = A("b")
h.v = a
a.z = c
a.o = c
c.z = a
c.o = a
d.v = c
b.v = c... | c" | 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.o: B = None
self.txt = txt
h = A("h")
a = B("a")
c = B("c")
d = A("d")
b = A("b")
h.v = a
a.z = c
a.o = c
c.z = a
c.o = a
d.v = c
b.v = c... | b | c | a | c | a | c | x | x | c | a | c | a | c | b | x | x | 5 | 5 | 2 | 5 | 3 |
2,503 | class A:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.u: A = None
self.txt = txt
h = A("h")
b = B("b")
g = A("g")
e = B("e")
i = B("i")
d = A("d")
h.p = e
h.u = e
b.v... | b" | class A:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.u: A = None
self.txt = txt
h = A("h")
b = B("b")
g = A("g")
e = B("e")
i = B("i")
d = A("d")
h.p = e
h.u = e
b.v... | b | h | e | d | b | d | b | x | b | d | b | d | e | h | b | x | 6 | 11 | 2 | 6 | 3 |
2,504 | class A:
def __init__(self, txt: str):
self.s: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
i = A("i")
j = B("j")
g = B("g")
a = A("a")
d = B("d")
i.s = a
i.u = a
j.q = g
g.q = d
a.s = i
a.u = i
d.q = j... | j" | class A:
def __init__(self, txt: str):
self.s: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
i = A("i")
j = B("j")
g = B("g")
a = A("a")
d = B("d")
i.s = a
i.u = a
j.q = g
g.q = d
a.s = i
a.u = i
d.q = j... | j | g | d | j | x | x | x | x | j | d | g | j | x | x | x | x | 5 | 5 | 2 | 3 | 1 |
2,505 | 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.txt = txt
i = A("i")
b = B("b")
f = B("f")
a = B("a")
h = B("h")
i.o = f
b.t = a
f.t = b
a.t = h
h.t = a
assert h.t.t.t.t.txt == " | h" | 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.txt = txt
i = A("i")
b = B("b")
f = B("f")
a = B("a")
h = B("h")
i.o = f
b.t = a
f.t = b
a.t = h
h.t = a
assert h.t.t.t.t.txt == "h" | h | a | h | a | h | x | x | x | h | a | h | a | h | x | x | x | 5 | 5 | 2 | 4 | 3 |
2,506 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
h = A("h")
j = B("j")
f = B("f")
h.t = j
j.y = f
f.y = j
assert j.y.y.y.txt == " | f" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
h = A("h")
j = B("j")
f = B("f")
h.t = j
j.y = f
f.y = j
assert j.y.y.y.txt == "f" | j | f | j | f | x | x | x | x | f | j | f | j | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,507 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.r: A = None
self.txt = txt
g = A("g")
f = B("f")
h = A("h")
d = B("d")
g.y = d
f.w = g
f.r = h
h.y = d
d.w = h
d.r = h
assert f.w.y.r.txt... | h" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.r: A = None
self.txt = txt
g = A("g")
f = B("f")
h = A("h")
d = B("d")
g.y = d
f.w = g
f.r = h
h.y = d
d.w = h
d.r = h
assert f.w.y.r.txt... | f | g | d | h | x | x | x | x | h | d | g | f | x | x | x | x | 4 | 5 | 2 | 3 | 0 |
2,508 | class A:
def __init__(self, txt: str):
self.p: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
j = A("j")
c = B("c")
a = A("a")
i = B("i")
f = B("f")
e = A("e")
g = B("g")
j.p = e
j.u = c
c.y = g
a.p = j
a... | g" | class A:
def __init__(self, txt: str):
self.p: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
j = A("j")
c = B("c")
a = A("a")
i = B("i")
f = B("f")
e = A("e")
g = B("g")
j.p = e
j.u = c
c.y = g
a.p = j
a... | e | j | e | f | g | i | f | g | g | f | i | g | f | e | j | e | 7 | 10 | 2 | 7 | 3 |
2,509 | 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
j = A("j")
d = B("d")
b = A("b")
f = A("f")
a = A("a")
e = A("e")
c = B("c")
j.t = f
d.x = e
b.t = j
f.t = j
a.t = f
e.t = f
c.x = f
as... | f" | 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
j = A("j")
d = B("d")
b = A("b")
f = A("f")
a = A("a")
e = A("e")
c = B("c")
j.t = f
d.x = e
b.t = j
f.t = j
a.t = f
e.t = f
c.x = f
as... | c | f | j | f | j | f | x | x | f | j | f | j | f | c | x | x | 7 | 7 | 2 | 5 | 3 |
2,510 | class A:
def __init__(self, txt: str):
self.y: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
e = A("e")
b = B("b")
i = B("i")
c = B("c")
d = A("d")
e.y = d
e.o = c
b.s = i
i.s = c
c.s = i
d.y = e
d.o = i... | c" | class A:
def __init__(self, txt: str):
self.y: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
e = A("e")
b = B("b")
i = B("i")
c = B("c")
d = A("d")
e.y = d
e.o = c
b.s = i
i.s = c
c.s = i
d.y = e
d.o = i... | b | i | c | i | c | x | x | x | c | i | c | i | b | x | x | x | 5 | 7 | 2 | 4 | 2 |
2,511 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.o: B = None
self.txt = txt
g = A("g")
f = B("f")
d = B("d")
j = B("j")
g.p = j
f.u = d
f.o = d
d.u = f
d.o = j
j.u = f
j.o = d
assert g.p... | f" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.o: B = None
self.txt = txt
g = A("g")
f = B("f")
d = B("d")
j = B("j")
g.p = j
f.u = d
f.o = d
d.u = f
d.o = j
j.u = f
j.o = d
assert g.p... | g | j | d | f | x | x | x | x | f | d | j | g | x | x | x | x | 4 | 6 | 2 | 3 | 0 |
2,512 | 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.z: A = None
self.txt = txt
j = A("j")
c = B("c")
e = A("e")
h = A("h")
a = B("a")
j.r = c
c.v = e
c.z = e
e.r = c
h.r = a
a.v = h
a.z = h... | c" | 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.z: A = None
self.txt = txt
j = A("j")
c = B("c")
e = A("e")
h = A("h")
a = B("a")
j.r = c
c.v = e
c.z = e
e.r = c
h.r = a
a.v = h
a.z = h... | e | c | e | c | e | c | x | x | c | e | c | e | c | e | x | x | 5 | 5 | 2 | 5 | 4 |
2,513 | class A:
def __init__(self, txt: str):
self.p: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
f = A("f")
h = B("h")
g = B("g")
e = B("e")
c = B("c")
i = A("i")
d = B("d")
f.p = i
f.v = e
h.v = i
g.v = f
e... | f" | class A:
def __init__(self, txt: str):
self.p: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
f = A("f")
h = B("h")
g = B("g")
e = B("e")
c = B("c")
i = A("i")
d = B("d")
f.p = i
f.v = e
h.v = i
g.v = f
e... | d | f | i | g | f | i | g | f | f | g | i | f | g | i | f | d | 7 | 9 | 2 | 7 | 4 |
2,514 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
g = A("g")
h = B("h")
a = B("a")
g.z = h
h.r = a
a.r = h
assert a.r.r.r.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
g = A("g")
h = B("h")
a = B("a")
g.z = h
h.r = a
a.r = h
assert a.r.r.r.txt == "h" | a | h | a | h | x | x | x | x | h | a | h | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,515 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.y: B = None
self.txt = txt
d = A("d")
e = B("e")
h = B("h")
b = B("b")
c = A("c")
j = A("j")
d.y = h
e.w = b
e.y = b
h.w = b
h.y = b
b.w ... | h" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.y: B = None
self.txt = txt
d = A("d")
e = B("e")
h = B("h")
b = B("b")
c = A("c")
j = A("j")
d.y = h
e.w = b
e.y = b
h.w = b
h.y = b
b.w ... | h | b | e | b | h | b | h | x | h | b | h | b | e | b | h | x | 6 | 7 | 2 | 6 | 4 |
2,516 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
d = B("d")
c = B("c")
b = A("b")
g = B("g")
i = B("i")
j = A("j")
e.w = i
d.w = c
c.w = d
b.w = c
g.w = d
i.w = d
j.w = i
as... | d" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
d = B("d")
c = B("c")
b = A("b")
g = B("g")
i = B("i")
j = A("j")
e.w = i
d.w = c
c.w = d
b.w = c
g.w = d
i.w = d
j.w = i
as... | b | c | d | c | d | x | x | x | d | c | d | c | b | x | x | x | 7 | 7 | 2 | 4 | 2 |
2,517 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
a = A("a")
f = B("f")
g = A("g")
d = A("d")
b = B("b")
h = B("h")
a.w = g
f.z = b
f.y = h
g.w = d
d.w = a
b.z ... | b" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
a = A("a")
f = B("f")
g = A("g")
d = A("d")
b = B("b")
h = B("h")
a.w = g
f.z = b
f.y = h
g.w = d
d.w = a
b.z ... | h | b | h | b | x | x | x | x | b | h | b | h | x | x | x | x | 6 | 7 | 2 | 3 | 2 |
2,518 | 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
a = A("a")
g = B("g")
b = B("b")
f = A("f")
i = A("i")
d = B("d")
a.t = b
g.p = a
b.p = i
f.t = d
i.t = g
d.p = a
assert d.p.t.p.t.p.tx... | a" | 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
a = A("a")
g = B("g")
b = B("b")
f = A("f")
i = A("i")
d = B("d")
a.t = b
g.p = a
b.p = i
f.t = d
i.t = g
d.p = a
assert d.p.t.p.t.p.tx... | d | a | b | i | g | a | x | x | a | g | i | b | a | d | x | x | 6 | 6 | 2 | 5 | 1 |
2,519 | class A:
def __init__(self, txt: str):
self.y: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.s: A = None
self.txt = txt
a = A("a")
c = B("c")
g = B("g")
f = A("f")
a.y = f
a.x = g
c.p = f
c.s = f
g.p = f
g... | a" | class A:
def __init__(self, txt: str):
self.y: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.s: A = None
self.txt = txt
a = A("a")
c = B("c")
g = B("g")
f = A("f")
a.y = f
a.x = g
c.p = f
c.s = f
g.p = f
g... | a | g | f | a | x | x | x | x | a | f | g | a | x | x | x | x | 4 | 6 | 2 | 3 | 1 |
2,520 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.r: A = None
self.txt = txt
g = A("g")
a = B("a")
h = A("h")
j = B("j")
f = A("f")
g.y = a
a.z = j
a.r = h
h.y = j
j.z = a
j.r = f
f.y = j... | j" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.r: A = None
self.txt = txt
g = A("g")
a = B("a")
h = A("h")
j = B("j")
f = A("f")
g.y = a
a.z = j
a.r = h
h.y = j
j.z = a
j.r = f
f.y = j... | h | j | a | h | j | x | x | x | j | h | a | j | h | x | x | x | 5 | 7 | 2 | 4 | 2 |
2,521 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
b = A("b")
a = B("a")
h = B("h")
b.y = a
a.z = h
h.z = a
assert h.z.z.z.txt == " | a" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
b = A("b")
a = B("a")
h = B("h")
b.y = a
a.z = h
h.z = a
assert h.z.z.z.txt == "a" | h | a | h | a | x | x | x | x | a | h | a | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,522 | class A:
def __init__(self, txt: str):
self.x: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
e = A("e")
b = B("b")
f = A("f")
j = B("j")
d = B("d")
i = B("i")
e.x = f
e.v = i
b.z = j
f.x = e
f.v = b
j.z ... | i" | class A:
def __init__(self, txt: str):
self.x: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
e = A("e")
b = B("b")
f = A("f")
j = B("j")
d = B("d")
i = B("i")
e.x = f
e.v = i
b.z = j
f.x = e
f.v = b
j.z ... | e | f | e | i | d | j | i | x | i | j | d | i | e | f | e | x | 6 | 8 | 2 | 6 | 2 |
2,523 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.v: B = None
self.txt = txt
e = A("e")
g = B("g")
d = B("d")
h = B("h")
i = A("i")
c = B("c")
a = A("a")
e.z = a
g.y = i
g.v = h
d.y = a
d... | a" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.v: B = None
self.txt = txt
e = A("e")
g = B("g")
d = B("d")
h = B("h")
i = A("i")
c = B("c")
a = A("a")
e.z = a
g.y = i
g.v = h
d.y = a
d... | g | i | a | i | a | i | a | x | a | i | a | i | a | i | g | x | 7 | 11 | 2 | 6 | 4 |
2,524 | class A:
def __init__(self, txt: str):
self.r: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.t: A = None
self.txt = txt
f = A("f")
d = B("d")
i = B("i")
h = B("h")
b = B("b")
f.r = d
f.x = b
d.v = f
d.t = ... | b" | class A:
def __init__(self, txt: str):
self.r: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.t: A = None
self.txt = txt
f = A("f")
d = B("d")
i = B("i")
h = B("h")
b = B("b")
f.r = d
f.x = b
d.v = f
d.t = ... | h | f | d | f | b | x | x | x | b | f | d | f | h | x | x | x | 5 | 6 | 2 | 4 | 1 |
2,525 | 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.txt = txt
c = A("c")
f = B("f")
i = A("i")
a = A("a")
g = B("g")
c.r = f
f.x = g
i.r = f
a.r = f
g.x = f
assert a.r.x.x.x.x.txt == " | f" | 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.txt = txt
c = A("c")
f = B("f")
i = A("i")
a = A("a")
g = B("g")
c.r = f
f.x = g
i.r = f
a.r = f
g.x = f
assert a.r.x.x.x.x.txt == "f" | a | f | g | f | g | f | x | x | f | g | f | g | f | a | x | x | 5 | 5 | 2 | 5 | 3 |
2,526 | 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.q: B = None
self.s: B = None
self.txt = txt
b = A("b")
a = B("a")
h = A("h")
i = B("i")
b.u = h
b.s = h
a.q = i
a.s = i
h.u = b
h... | h" | 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.q: B = None
self.s: B = None
self.txt = txt
b = A("b")
a = B("a")
h = A("h")
i = B("i")
b.u = h
b.s = h
a.q = i
a.s = i
h.u = b
h... | b | h | b | h | x | x | x | x | h | b | h | b | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
2,527 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.s: A = None
self.txt = txt
b = A("b")
h = B("h")
a = A("a")
f = B("f")
i = B("i")
b.p = a
h.p = f
h.s = b
a.p = b
f.p = i
f.s = b
i.p = f... | b" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.s: A = None
self.txt = txt
b = A("b")
h = B("h")
a = A("a")
f = B("f")
i = B("i")
b.p = a
h.p = f
h.s = b
a.p = b
f.p = i
f.s = b
i.p = f... | h | b | a | b | x | x | x | x | b | a | b | h | x | x | x | x | 5 | 8 | 2 | 3 | 1 |
2,528 | class A:
def __init__(self, txt: str):
self.t: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
j = B("j")
e = A("e")
i = B("i")
a.t = b
a.r = e
b.u = e
b.y = ... | e" | class A:
def __init__(self, txt: str):
self.t: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.y: A = None
self.txt = txt
a = A("a")
b = B("b")
j = B("j")
e = A("e")
i = B("i")
a.t = b
a.r = e
b.u = e
b.y = ... | j | a | b | a | e | x | x | x | e | a | b | a | j | x | x | x | 5 | 8 | 2 | 4 | 1 |
2,529 | class A:
def __init__(self, txt: str):
self.p: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.z: B = None
self.txt = txt
g = A("g")
h = B("h")
i = A("i")
d = B("d")
g.p = h
g.u = i
h.y = g
h.z = d
i.p = h
i... | i" | class A:
def __init__(self, txt: str):
self.p: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.z: B = None
self.txt = txt
g = A("g")
h = B("h")
i = A("i")
d = B("d")
g.p = h
g.u = i
h.y = g
h.z = d
i.p = h
i... | d | i | g | i | x | x | x | x | i | g | i | d | x | x | x | x | 4 | 8 | 2 | 3 | 1 |
2,530 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.w: B = None
self.txt = txt
g = A("g")
a = B("a")
b = B("b")
h = B("h")
f = A("f")
j = A("j")
g.q = h
a.o = h
a.w = b
b.o = a
b.w = h
h.o ... | a" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.w: B = None
self.txt = txt
g = A("g")
a = B("a")
b = B("b")
h = B("h")
f = A("f")
j = A("j")
g.q = h
a.o = h
a.w = b
b.o = a
b.w = h
h.o ... | j | h | a | h | a | h | a | x | a | h | a | h | a | h | j | x | 6 | 8 | 2 | 6 | 4 |
2,531 | class A:
def __init__(self, txt: str):
self.u: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.o: B = None
self.txt = txt
i = A("i")
b = B("b")
h = B("h")
f = B("f")
i.u = f
i.t = h
b.p = h
b.o = h
h.p = b
h... | b" | class A:
def __init__(self, txt: str):
self.u: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.o: B = None
self.txt = txt
i = A("i")
b = B("b")
h = B("h")
f = B("f")
i.u = f
i.t = h
b.p = h
b.o = h
h.p = b
h... | f | b | h | b | x | x | x | x | b | h | b | f | x | x | x | x | 4 | 5 | 2 | 3 | 1 |
2,532 | 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
b = A("b")
c = B("c")
i = A("i")
b.o = i
c.p = i
i.o = b
assert i.o.o.o.txt == " | b" | 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
b = A("b")
c = B("c")
i = A("i")
b.o = i
c.p = i
i.o = b
assert i.o.o.o.txt == "b" | i | b | i | b | x | x | x | x | b | i | b | i | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,533 | class A:
def __init__(self, txt: str):
self.x: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
b = A("b")
g = B("g")
i = A("i")
f = B("f")
j = A("j")
d = B("d")
b.x = i
b.y = g
g.v = f
i.x = b
i.y = g
f.v ... | f" | class A:
def __init__(self, txt: str):
self.x: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
b = A("b")
g = B("g")
i = A("i")
f = B("f")
j = A("j")
d = B("d")
b.x = i
b.y = g
g.v = f
i.x = b
i.y = g
f.v ... | d | g | f | d | g | f | x | x | f | g | d | f | g | d | x | x | 6 | 9 | 2 | 5 | 3 |
2,534 | 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.txt = txt
c = A("c")
d = B("d")
a = B("a")
b = A("b")
j = A("j")
g = A("g")
c.z = b
d.o = b
a.o = j
b.z = c
j.z = b
g.z = c
assert b.z.z.z.z.txt ... | b" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
c = A("c")
d = B("d")
a = B("a")
b = A("b")
j = A("j")
g = A("g")
c.z = b
d.o = b
a.o = j
b.z = c
j.z = b
g.z = c
assert b.z.z.z.z.txt ... | b | c | b | c | b | x | x | x | b | c | b | c | b | x | x | x | 6 | 6 | 2 | 4 | 3 |
2,535 | class A:
def __init__(self, txt: str):
self.q: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: A = None
self.txt = txt
h = A("h")
a = B("a")
j = A("j")
i = B("i")
e = B("e")
d = A("d")
g = B("g")
h.q = i
... | i" | class A:
def __init__(self, txt: str):
self.q: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: A = None
self.txt = txt
h = A("h")
a = B("a")
j = A("j")
i = B("i")
e = B("e")
d = A("d")
g = B("g")
h.q = i
... | i | j | d | h | i | x | x | x | i | h | d | j | i | x | x | x | 7 | 13 | 2 | 4 | 1 |
2,536 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
h = A("h")
i = B("i")
j = A("j")
h.w = i
i.p = j
j.w = i
assert i.p.w.p.txt == " | j" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
h = A("h")
i = B("i")
j = A("j")
h.w = i
i.p = j
j.w = i
assert i.p.w.p.txt == "j" | i | j | i | j | x | x | x | x | j | i | j | i | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,537 | 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.v: A = None
self.txt = txt
h = A("h")
b = B("b")
c = B("c")
i = B("i")
j = A("j")
a = B("a")
f = B("f")
h.t = c
b.w = a
b.v = h
c.w = a
c... | i" | 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.v: A = None
self.txt = txt
h = A("h")
b = B("b")
c = B("c")
i = B("i")
j = A("j")
a = B("a")
f = B("f")
h.t = c
b.w = a
b.v = h
c.w = a
c... | f | h | c | a | h | c | a | i | i | a | c | h | a | c | h | f | 7 | 12 | 2 | 7 | 3 |
2,538 | 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.r: A = None
self.txt = txt
e = A("e")
i = B("i")
b = B("b")
e.q = i
e.o = b
i.r = e
b.r = e
assert e.q.r.o.txt == " | b" | 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.r: A = None
self.txt = txt
e = A("e")
i = B("i")
b = B("b")
e.q = i
e.o = b
i.r = e
b.r = e
assert e.q.r.o.txt == "b" | e | i | e | b | x | x | x | x | b | e | i | e | x | x | x | x | 3 | 4 | 2 | 3 | 1 |
2,539 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.p: A = None
self.txt = txt
c = A("c")
i = B("i")
h = A("h")
a = B("a")
c.o = i
i.s = a
i.p = c
h.o = a
a.s = i
a.p = h
assert h.o.p.o.p.t... | h" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.p: A = None
self.txt = txt
c = A("c")
i = B("i")
h = A("h")
a = B("a")
c.o = i
i.s = a
i.p = c
h.o = a
a.s = i
a.p = h
assert h.o.p.o.p.t... | h | a | h | a | h | x | x | x | h | a | h | a | h | x | x | x | 4 | 6 | 2 | 4 | 3 |
2,540 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
h = A("h")
e = B("e")
a = B("a")
j = B("j")
f = B("f")
g = B("g")
h.t = j
e.q = j
a.q = g
j.q = e
f.q = j
g.q = a
assert f.q.q.q.q.q.tx... | j" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
h = A("h")
e = B("e")
a = B("a")
j = B("j")
f = B("f")
g = B("g")
h.t = j
e.q = j
a.q = g
j.q = e
f.q = j
g.q = a
assert f.q.q.q.q.q.tx... | f | j | e | j | e | j | x | x | j | e | j | e | j | f | x | x | 6 | 6 | 2 | 5 | 3 |
2,541 | class A:
def __init__(self, txt: str):
self.r: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
d = A("d")
h = B("h")
c = A("c")
f = B("f")
g = A("g")
i = B("i")
a = B("a")
d.r = i
d.t = h
h.x = i
c.r = a
c... | a" | class A:
def __init__(self, txt: str):
self.r: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
d = A("d")
h = B("h")
c = A("c")
f = B("f")
g = A("g")
i = B("i")
a = B("a")
d.r = i
d.t = h
h.x = i
c.r = a
c... | h | i | f | a | x | x | x | x | a | f | i | h | x | x | x | x | 7 | 9 | 2 | 3 | 0 |
2,542 | 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
d = A("d")
b = B("b")
c = A("c")
d.q = b
b.o = c
c.q = b
assert d.q.o.q.txt == " | b" | 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
d = A("d")
b = B("b")
c = A("c")
d.q = b
b.o = c
c.q = b
assert d.q.o.q.txt == "b" | d | b | c | b | x | x | x | x | b | c | b | d | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
2,543 | class A:
def __init__(self, txt: str):
self.o: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.w: A = None
self.txt = txt
j = A("j")
a = B("a")
e = B("e")
h = B("h")
f = A("f")
b = A("b")
j.o = b
j.s = f
a.v... | b" | class A:
def __init__(self, txt: str):
self.o: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.w: A = None
self.txt = txt
j = A("j")
a = B("a")
e = B("e")
h = B("h")
f = A("f")
b = A("b")
j.o = b
j.s = f
a.v... | e | h | e | h | j | b | x | x | b | j | h | e | h | e | x | x | 6 | 11 | 2 | 5 | 2 |
2,544 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: A = None
self.txt = txt
j = A("j")
f = B("f")
g = A("g")
j.w = g
f.t = j
f.w = j
g.w = j
assert f.w.w.w.txt == " | j" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: A = None
self.txt = txt
j = A("j")
f = B("f")
g = A("g")
j.w = g
f.t = j
f.w = j
g.w = j
assert f.w.w.w.txt == "j" | f | j | g | j | x | x | x | x | j | g | j | f | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
2,545 | 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.r: A = None
self.txt = txt
i = A("i")
h = B("h")
f = B("f")
a = B("a")
e = B("e")
c = B("c")
d = A("d")
i.z = d
i.w = e
h.r = i
f.r = d
a... | 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.r: A = None
self.txt = txt
i = A("i")
h = B("h")
f = B("f")
a = B("a")
e = B("e")
c = B("c")
d = A("d")
i.z = d
i.w = e
h.r = i
f.r = d
a... | f | d | c | d | i | e | x | x | e | i | d | c | d | f | x | x | 7 | 9 | 2 | 5 | 1 |
2,546 | class A:
def __init__(self, txt: str):
self.s: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.r: B = None
self.txt = txt
e = A("e")
d = B("d")
j = B("j")
e.s = d
e.q = d
d.z = j
d.r = j
j.z = d
j.r = d
asse... | j" | class A:
def __init__(self, txt: str):
self.s: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.r: B = None
self.txt = txt
e = A("e")
d = B("d")
j = B("j")
e.s = d
e.q = d
d.z = j
d.r = j
j.z = d
j.r = d
asse... | d | j | d | j | x | x | x | x | j | d | j | d | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,547 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
i = A("i")
e = B("e")
a = A("a")
f = A("f")
g = A("g")
d = A("d")
j = A("j")
i.x = e
e.z = f
a.x = e
f.x = e
g.x = e
d.x = e
j.x = e
as... | e" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
i = A("i")
e = B("e")
a = A("a")
f = A("f")
g = A("g")
d = A("d")
j = A("j")
i.x = e
e.z = f
a.x = e
f.x = e
g.x = e
d.x = e
j.x = e
as... | f | e | f | e | f | e | x | x | e | f | e | f | e | f | x | x | 7 | 7 | 2 | 5 | 4 |
2,548 | class A:
def __init__(self, txt: str):
self.v: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.v: A = None
self.txt = txt
a = A("a")
b = B("b")
e = A("e")
g = A("g")
a.v = g
a.t = g
b.r = g
b.v = a
e.v = g
e... | g" | class A:
def __init__(self, txt: str):
self.v: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.v: A = None
self.txt = txt
a = A("a")
b = B("b")
e = A("e")
g = A("g")
a.v = g
a.t = g
b.r = g
b.v = a
e.v = g
e... | e | a | g | e | g | x | x | x | g | e | g | a | e | x | x | x | 4 | 6 | 2 | 4 | 2 |
2,549 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.w: A = None
self.txt = txt
f = A("f")
i = B("i")
e = B("e")
h = B("h")
f.x = h
i.r = h
i.w = f
e.r = h
e.w = f
h.r = e
h.w = f
assert e.w... | h" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.w: A = None
self.txt = txt
f = A("f")
i = B("i")
e = B("e")
h = B("h")
f.x = h
i.r = h
i.w = f
e.r = h
e.w = f
h.r = e
h.w = f
assert e.w... | e | f | h | f | h | x | x | x | h | f | h | f | e | x | x | x | 4 | 7 | 2 | 4 | 2 |
2,550 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.x: A = None
self.txt = txt
b = A("b")
g = B("g")
d = A("d")
j = A("j")
e = B("e")
b.v = j
g.w = e
g.x = j
d.v = j
j.v = b
e.w = g
e.x = b... | j" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.x: A = None
self.txt = txt
b = A("b")
g = B("g")
d = A("d")
j = A("j")
e = B("e")
b.v = j
g.w = e
g.x = j
d.v = j
j.v = b
e.w = g
e.x = b... | b | j | b | j | b | j | x | x | j | b | j | b | j | b | x | x | 5 | 7 | 2 | 5 | 4 |
2,551 | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
d = A("d")
g = B("g")
h = B("h")
c = B("c")
a = B("a")
i = A("i")
d.u = g
d.z = c
g.u = d
h.u = i
c.u = i
a.u ... | c" | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
d = A("d")
g = B("g")
h = B("h")
c = B("c")
a = B("a")
i = A("i")
d.u = g
d.z = c
g.u = d
h.u = i
c.u = i
a.u ... | c | i | g | d | c | x | x | x | c | d | g | i | c | x | x | x | 6 | 7 | 2 | 4 | 1 |
2,552 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.txt = txt
j = A("j")
e = B("e")
i = B("i")
g = A("g")
d = B("d")
h = A("h")
j.w = i
e.o = d
e.w = h
i.o = d
i.w = g
g.w ... | g" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.txt = txt
j = A("j")
e = B("e")
i = B("i")
g = A("g")
d = B("d")
h = A("h")
j.w = i
e.o = d
e.w = h
i.o = d
i.w = g
g.w ... | d | e | d | g | x | x | x | x | g | d | e | d | x | x | x | x | 6 | 9 | 2 | 3 | 1 |
2,553 | class A:
def __init__(self, txt: str):
self.o: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
e = A("e")
b = B("b")
d = B("d")
i = A("i")
h = B("h")
g = B("g")
e.o = i
e.y = b
b.v = e
d.v = e
i.o = e
i.y ... | g" | class A:
def __init__(self, txt: str):
self.o: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
e = A("e")
b = B("b")
d = B("d")
i = A("i")
h = B("h")
g = B("g")
e.o = i
e.y = b
b.v = e
d.v = e
i.o = e
i.y ... | g | i | g | i | g | x | x | x | g | i | g | i | g | x | x | x | 6 | 8 | 2 | 4 | 3 |
2,554 | 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.x: B = None
self.txt = txt
c = A("c")
f = B("f")
g = A("g")
a = B("a")
b = A("b")
j = B("j")
c.t = f
c.s = b
f.x = a
g.t = a
g.s = b
a.x ... | a" | 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.x: B = None
self.txt = txt
c = A("c")
f = B("f")
g = A("g")
a = B("a")
b = A("b")
j = B("j")
c.t = f
c.s = b
f.x = a
g.t = a
g.s = b
a.x ... | a | f | a | f | a | f | a | x | a | f | a | f | a | f | a | x | 6 | 9 | 2 | 6 | 5 |
2,555 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
j = A("j")
c = B("c")
f = A("f")
b = A("b")
g = B("g")
i = A("i")
j.p = c
c.s = g
f.p = g
b.p = c
g.s = c
i.p = c
assert g.s.s.s.txt ==... | c" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
j = A("j")
c = B("c")
f = A("f")
b = A("b")
g = B("g")
i = A("i")
j.p = c
c.s = g
f.p = g
b.p = c
g.s = c
i.p = c
assert g.s.s.s.txt ==... | g | c | g | c | x | x | x | x | c | g | c | g | x | x | x | x | 6 | 6 | 2 | 3 | 2 |
2,556 | class A:
def __init__(self, txt: str):
self.u: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
c = A("c")
d = B("d")
f = B("f")
h = B("h")
i = A("i")
g = A("g")
a = A("a")
c.u = a
c.v = d
d.p = a
f.p = g
h... | g" | class A:
def __init__(self, txt: str):
self.u: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
c = A("c")
d = B("d")
f = B("f")
h = B("h")
i = A("i")
g = A("g")
a = A("a")
c.u = a
c.v = d
d.p = a
f.p = g
h... | a | f | g | f | g | x | x | x | g | f | g | f | a | x | x | x | 7 | 11 | 2 | 4 | 2 |
2,557 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.y: A = None
self.txt = txt
f = A("f")
e = B("e")
d = A("d")
j = B("j")
b = B("b")
f.x = d
e.w = b
e.y = d
d.x = f
j.w = b
j.y = d
b.w = j... | d" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.y: A = None
self.txt = txt
f = A("f")
e = B("e")
d = A("d")
j = B("j")
b = B("b")
f.x = d
e.w = b
e.y = d
d.x = f
j.w = b
j.y = d
b.w = j... | f | d | f | d | x | x | x | x | d | f | d | f | x | x | x | x | 5 | 8 | 2 | 3 | 2 |
2,558 | 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.v: A = None
self.txt = txt
d = A("d")
c = B("c")
b = A("b")
g = B("g")
e = A("e")
d.r = b
d.q = b
c.v = d
b.r = d
b.q = d
g.v = b
e.r = d... | b" | 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.v: A = None
self.txt = txt
d = A("d")
c = B("c")
b = A("b")
g = B("g")
e = A("e")
d.r = b
d.q = b
c.v = d
b.r = d
b.q = d
g.v = b
e.r = d... | e | d | b | d | b | x | x | x | b | d | b | d | e | x | x | x | 5 | 5 | 2 | 4 | 2 |
2,559 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.p: A = None
self.txt = txt
j = A("j")
a = B("a")
c = B("c")
j.q = c
a.x = j
a.p = j
c.x = j
c.p = j
assert c.x.q.x.txt == " | j" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.p: A = None
self.txt = txt
j = A("j")
a = B("a")
c = B("c")
j.q = c
a.x = j
a.p = j
c.x = j
c.p = j
assert c.x.q.x.txt == "j" | c | j | c | j | x | x | x | x | j | c | j | c | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,560 | 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.txt = txt
c = A("c")
b = B("b")
a = B("a")
c.v = b
b.x = a
a.x = b
assert a.x.x.x.txt == " | 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.txt = txt
c = A("c")
b = B("b")
a = B("a")
c.v = b
b.x = a
a.x = b
assert a.x.x.x.txt == "b" | a | b | a | b | x | x | x | x | b | a | b | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
2,561 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
e = A("e")
j = B("j")
f = A("f")
a = A("a")
d = A("d")
b = B("b")
e.x = j
j.q = b
f.x = j
a.x = b
d.x = j
b.q = j
assert e.x.q.q.txt ==... | j" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
e = A("e")
j = B("j")
f = A("f")
a = A("a")
d = A("d")
b = B("b")
e.x = j
j.q = b
f.x = j
a.x = b
d.x = j
b.q = j
assert e.x.q.q.txt ==... | e | j | b | j | x | x | x | x | j | b | j | e | x | x | x | x | 6 | 6 | 2 | 3 | 1 |
2,562 | 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.t: A = None
self.txt = txt
i = A("i")
b = B("b")
h = A("h")
g = A("g")
f = B("f")
a = A("a")
i.v = f
b.o = i
b.t = h
h.v = b
g.v = b
f.o ... | f" | 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.t: A = None
self.txt = txt
i = A("i")
b = B("b")
h = A("h")
g = A("g")
f = B("f")
a = A("a")
i.v = f
b.o = i
b.t = h
h.v = b
g.v = b
f.o ... | a | f | a | f | x | x | x | x | f | a | f | a | x | x | x | x | 6 | 8 | 2 | 3 | 2 |
2,563 | 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.x: B = None
self.txt = txt
b = A("b")
a = B("a")
d = A("d")
f = B("f")
c = A("c")
e = B("e")
j = B("j")
b.t = e
b.s = c
a.x = f
d.t = a
d... | e" | 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.x: B = None
self.txt = txt
b = A("b")
a = B("a")
d = A("d")
f = B("f")
c = A("c")
e = B("e")
j = B("j")
b.t = e
b.s = c
a.x = f
d.t = a
d... | d | c | d | c | a | f | e | x | e | f | a | c | d | c | d | x | 7 | 10 | 2 | 6 | 2 |
2,564 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
b = A("b")
h = B("h")
d = A("d")
c = A("c")
b.o = h
h.t = d
d.o = h
c.o = h
assert b.o.t.o.t.txt == " | d" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
b = A("b")
h = B("h")
d = A("d")
c = A("c")
b.o = h
h.t = d
d.o = h
c.o = h
assert b.o.t.o.t.txt == "d" | b | h | d | h | d | x | x | x | d | h | d | h | b | x | x | x | 4 | 4 | 2 | 4 | 2 |
2,565 | class A:
def __init__(self, txt: str):
self.y: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.o: A = None
self.txt = txt
h = A("h")
j = B("j")
e = A("e")
i = B("i")
g = B("g")
c = A("c")
h.y = i
h.w = e
j.z... | h" | class A:
def __init__(self, txt: str):
self.y: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.o: A = None
self.txt = txt
h = A("h")
j = B("j")
e = A("e")
i = B("i")
g = B("g")
c = A("c")
h.y = i
h.w = e
j.z... | i | c | j | h | i | c | h | x | h | c | i | h | j | c | i | x | 6 | 10 | 2 | 6 | 3 |
2,566 | class A:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
b = A("b")
i = B("i")
g = B("g")
c = A("c")
j = A("j")
a = B("a")
d = B("d")
b.p = g
b.u = d
i.z = c
g.z = c
c... | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
b = A("b")
i = B("i")
g = B("g")
c = A("c")
j = A("j")
a = B("a")
d = B("d")
b.p = g
b.u = d
i.z = c
g.z = c
c... | b | g | c | g | c | a | x | x | a | c | g | c | g | b | x | x | 7 | 9 | 2 | 5 | 2 |
2,567 | class A:
def __init__(self, txt: str):
self.v: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.u: A = None
self.txt = txt
i = A("i")
f = B("f")
b = B("b")
g = A("g")
d = B("d")
e = A("e")
c = A("c")
i.v = c
... | g" | class A:
def __init__(self, txt: str):
self.v: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.u: A = None
self.txt = txt
i = A("i")
f = B("f")
b = B("b")
g = A("g")
d = B("d")
e = A("e")
c = A("c")
i.v = c
... | e | i | g | i | c | i | g | x | g | i | c | i | g | i | e | x | 7 | 12 | 2 | 6 | 3 |
2,568 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
a = A("a")
c = B("c")
i = A("i")
b = B("b")
h = A("h")
a.q = b
c.z = b
c.y = i
i.q = b
b.z = c
b.y = h
h.q = c... | b" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: A = None
self.txt = txt
a = A("a")
c = B("c")
i = A("i")
b = B("b")
h = A("h")
a.q = b
c.z = b
c.y = i
i.q = b
b.z = c
b.y = h
h.q = c... | i | b | h | c | i | b | x | x | b | i | c | h | b | i | x | x | 5 | 7 | 2 | 5 | 2 |
2,569 | class A:
def __init__(self, txt: str):
self.p: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
b = B("b")
f = A("f")
g = A("g")
c = B("c")
h = B("h")
d = A("d")
e.p = b
e.t = f
b.w = c
f.p = b
f... | c" | class A:
def __init__(self, txt: str):
self.p: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
b = B("b")
f = A("f")
g = A("g")
c = B("c")
h = B("h")
d = A("d")
e.p = b
e.t = f
b.w = c
f.p = b
f... | e | f | b | c | x | x | x | x | c | b | f | e | x | x | x | x | 7 | 11 | 2 | 3 | 0 |
2,570 | class A:
def __init__(self, txt: str):
self.p: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
g = A("g")
j = B("j")
b = A("b")
i = A("i")
d = B("d")
f = B("f")
h = A("h")
g.p = d
g.r = d
j.r = d
b.p = f
b... | j" | class A:
def __init__(self, txt: str):
self.p: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
g = A("g")
j = B("j")
b = A("b")
i = A("i")
d = B("d")
f = B("f")
h = A("h")
g.p = d
g.r = d
j.r = d
b.p = f
b... | d | j | d | j | d | j | d | j | j | d | j | d | j | d | j | d | 7 | 9 | 2 | 7 | 6 |
2,571 | 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.txt = txt
i = A("i")
j = B("j")
e = A("e")
h = A("h")
g = A("g")
b = A("b")
i.u = e
j.z = i
e.u = i
h.u = b
g.u = i
b.u = e
assert g.u.u.u.txt ==... | i" | 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.txt = txt
i = A("i")
j = B("j")
e = A("e")
h = A("h")
g = A("g")
b = A("b")
i.u = e
j.z = i
e.u = i
h.u = b
g.u = i
b.u = e
assert g.u.u.u.txt ==... | g | i | e | i | x | x | x | x | i | e | i | g | x | x | x | x | 6 | 6 | 2 | 3 | 1 |
2,572 | class A:
def __init__(self, txt: str):
self.x: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
e = A("e")
i = B("i")
g = B("g")
c = A("c")
h = B("h")
f = A("f")
b = A("b")
e.x = b
e.p = f
i.w = c
g.w = f
c... | b" | class A:
def __init__(self, txt: str):
self.x: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
e = A("e")
i = B("i")
g = B("g")
c = A("c")
h = B("h")
f = A("f")
b = A("b")
e.x = b
e.p = f
i.w = c
g.w = f
c... | b | f | e | b | x | x | x | x | b | e | f | b | x | x | x | x | 7 | 8 | 2 | 3 | 1 |
2,573 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
b = A("b")
j = B("j")
g = B("g")
c = A("c")
d = B("d")
f = A("f")
b.o = g
j.r = f
g.r = c
c.o = g
d.r = c
f.o = j
assert g.r.o.r.o.txt ... | g" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
b = A("b")
j = B("j")
g = B("g")
c = A("c")
d = B("d")
f = A("f")
b.o = g
j.r = f
g.r = c
c.o = g
d.r = c
f.o = j
assert g.r.o.r.o.txt ... | g | c | g | c | g | x | x | x | g | c | g | c | g | x | x | x | 6 | 6 | 2 | 4 | 3 |
2,574 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.o: A = None
self.txt = txt
f = A("f")
j = B("j")
h = B("h")
b = B("b")
g = A("g")
a = A("a")
e = B("e")
f.x = a
j.q = h
j.o = g
h.q = j
h... | f" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.o: A = None
self.txt = txt
f = A("f")
j = B("j")
h = B("h")
b = B("b")
g = A("g")
a = A("a")
e = B("e")
f.x = a
j.q = h
j.o = g
h.q = j
h... | e | g | f | a | g | f | x | x | f | g | a | f | g | e | x | x | 7 | 11 | 2 | 5 | 2 |
2,575 | class A:
def __init__(self, txt: str):
self.p: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.w: A = None
self.txt = txt
h = A("h")
a = B("a")
f = B("f")
d = B("d")
i = A("i")
c = A("c")
e = B("e")
h.p = f
... | e" | class A:
def __init__(self, txt: str):
self.p: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.w: A = None
self.txt = txt
h = A("h")
a = B("a")
f = B("f")
d = B("d")
i = A("i")
c = A("c")
e = B("e")
h.p = f
... | e | d | f | c | d | i | a | e | e | a | i | d | c | f | d | e | 7 | 13 | 2 | 7 | 2 |
2,576 | class A:
def __init__(self, txt: str):
self.w: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
h = A("h")
d = B("d")
a = B("a")
c = B("c")
b = A("b")
h.w = b
h.y = b
d.o = b
a.o = b
c.o = b
b.w = h
b.y = h... | b" | class A:
def __init__(self, txt: str):
self.w: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
h = A("h")
d = B("d")
a = B("a")
c = B("c")
b = A("b")
h.w = b
h.y = b
d.o = b
a.o = b
c.o = b
b.w = h
b.y = h... | a | b | h | b | x | x | x | x | b | h | b | a | x | x | x | x | 5 | 5 | 2 | 3 | 1 |
2,577 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: A = None
self.txt = txt
h = A("h")
e = B("e")
c = A("c")
a = B("a")
h.v = a
e.t = c
e.w = c
c.v = a
a.t = c
a.w = h
assert c.v.t.v.txt... | a" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: A = None
self.txt = txt
h = A("h")
e = B("e")
c = A("c")
a = B("a")
h.v = a
e.t = c
e.w = c
c.v = a
a.t = c
a.w = h
assert c.v.t.v.txt... | c | a | c | a | x | x | x | x | a | c | a | c | x | x | x | x | 4 | 5 | 2 | 3 | 2 |
2,578 | class A:
def __init__(self, txt: str):
self.q: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.t: A = None
self.txt = txt
i = A("i")
b = B("b")
d = A("d")
c = A("c")
h = B("h")
i.q = b
i.z = b
b.w = i
b.t = ... | i" | class A:
def __init__(self, txt: str):
self.q: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.t: A = None
self.txt = txt
i = A("i")
b = B("b")
d = A("d")
c = A("c")
h = B("h")
i.q = b
i.z = b
b.w = i
b.t = ... | h | d | b | i | x | x | x | x | i | b | d | h | x | x | x | x | 5 | 9 | 2 | 3 | 0 |
2,579 | class A:
def __init__(self, txt: str):
self.v: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
b = A("b")
g = B("g")
i = A("i")
f = B("f")
d = B("d")
a = B("a")
e = A("e")
b.v = g
b.w = e
g.u = d
i.v = f
i... | d" | class A:
def __init__(self, txt: str):
self.v: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
b = A("b")
g = B("g")
i = A("i")
f = B("f")
d = B("d")
a = B("a")
e = A("e")
b.v = g
b.w = e
g.u = d
i.v = f
i... | a | d | f | d | f | d | x | x | d | f | d | f | d | a | x | x | 7 | 10 | 2 | 5 | 3 |
2,580 | class A:
def __init__(self, txt: str):
self.v: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.o: B = None
self.txt = txt
a = A("a")
c = B("c")
h = B("h")
d = A("d")
e = B("e")
b = A("b")
f = A("f")
a.v = f
... | h" | class A:
def __init__(self, txt: str):
self.v: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.o: B = None
self.txt = txt
a = A("a")
c = B("c")
h = B("h")
d = A("d")
e = B("e")
b = A("b")
f = A("f")
a.v = f
... | c | h | c | h | x | x | x | x | h | c | h | c | x | x | x | x | 7 | 12 | 2 | 3 | 2 |
2,581 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.o: B = None
self.txt = txt
a = A("a")
j = B("j")
e = A("e")
b = A("b")
g = B("g")
d = A("d")
a.v = g
j.w = a
j.o = g
e.v = j
b.v = j
g.w ... | g" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.o: B = None
self.txt = txt
a = A("a")
j = B("j")
e = A("e")
b = A("b")
g = B("g")
d = A("d")
a.v = g
j.w = a
j.o = g
e.v = j
b.v = j
g.w ... | j | a | g | j | g | x | x | x | g | j | g | a | j | x | x | x | 6 | 8 | 2 | 4 | 2 |
2,582 | class A:
def __init__(self, txt: str):
self.y: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
d = A("d")
h = B("h")
j = A("j")
d.y = h
d.w = h
h.w = j
j.y = h
j.w = h
assert d.y.w.w.txt == " | h" | class A:
def __init__(self, txt: str):
self.y: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
d = A("d")
h = B("h")
j = A("j")
d.y = h
d.w = h
h.w = j
j.y = h
j.w = h
assert d.y.w.w.txt == "h" | d | h | j | h | x | x | x | x | h | j | h | d | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
2,583 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
b = B("b")
j = A("j")
a = A("a")
f = B("f")
d.v = a
b.z = d
j.v = d
a.v = j
f.z = d
assert j.v.v.v.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
b = B("b")
j = A("j")
a = A("a")
f = B("f")
d.v = a
b.z = d
j.v = d
a.v = j
f.z = d
assert j.v.v.v.v.txt == "d" | j | d | a | j | d | x | x | x | d | j | a | d | j | x | x | x | 5 | 5 | 2 | 4 | 2 |
2,584 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
f = A("f")
b = B("b")
a = B("a")
g = A("g")
f.r = a
b.q = a
a.q = b
g.r = b
assert a.q.q.q.txt == " | b" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
f = A("f")
b = B("b")
a = B("a")
g = A("g")
f.r = a
b.q = a
a.q = b
g.r = b
assert a.q.q.q.txt == "b" | a | b | a | b | x | x | x | x | b | a | b | a | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
2,585 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.u: A = None
self.txt = txt
h = A("h")
g = B("g")
d = B("d")
e = A("e")
j = B("j")
h.x = e
g.v = d
g.u = h
d.v = g
d.u = e
e.x = h
j.v = d... | e" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.u: A = None
self.txt = txt
h = A("h")
g = B("g")
d = B("d")
e = A("e")
j = B("j")
h.x = e
g.v = d
g.u = h
d.v = g
d.u = e
e.x = h
j.v = d... | d | g | d | e | x | x | x | x | e | d | g | d | x | x | x | x | 5 | 8 | 2 | 3 | 1 |
2,586 | class A:
def __init__(self, txt: str):
self.o: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
g = A("g")
f = B("f")
i = B("i")
a = B("a")
g.o = i
g.v = i
f.v = a
i.v = f
a.v = i
assert i.v.v.v.v.txt == " | f" | class A:
def __init__(self, txt: str):
self.o: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
g = A("g")
f = B("f")
i = B("i")
a = B("a")
g.o = i
g.v = i
f.v = a
i.v = f
a.v = i
assert i.v.v.v.v.txt == "f... | i | f | a | i | f | x | x | x | f | i | a | f | i | x | x | x | 4 | 4 | 2 | 4 | 2 |
2,587 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
h = A("h")
i = B("i")
g = A("g")
a = A("a")
e = B("e")
h.p = i
i.z = h
i.v = g
g.p = i
a.p = e
e.z = h
e.v = h... | h" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
h = A("h")
i = B("i")
g = A("g")
a = A("a")
e = B("e")
h.p = i
i.z = h
i.v = g
g.p = i
a.p = e
e.z = h
e.v = h... | i | h | i | h | i | h | x | x | h | i | h | i | h | i | x | x | 5 | 6 | 2 | 5 | 4 |
2,588 | 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.txt = txt
i = A("i")
h = B("h")
b = A("b")
a = A("a")
d = B("d")
i.p = a
h.u = d
b.p = a
a.p = i
d.u = h
assert d.u.u.u.u.txt == " | d" | 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.txt = txt
i = A("i")
h = B("h")
b = A("b")
a = A("a")
d = B("d")
i.p = a
h.u = d
b.p = a
a.p = i
d.u = h
assert d.u.u.u.u.txt == "d" | d | h | d | h | d | x | x | x | d | h | d | h | d | x | x | x | 5 | 5 | 2 | 4 | 3 |
2,589 | class A:
def __init__(self, txt: str):
self.u: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
b = A("b")
j = B("j")
h = A("h")
b.u = j
b.x = j
j.w = h
h.u = j
h.x = j
assert b.u.w.x.txt == " | j" | class A:
def __init__(self, txt: str):
self.u: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
b = A("b")
j = B("j")
h = A("h")
b.u = j
b.x = j
j.w = h
h.u = j
h.x = j
assert b.u.w.x.txt == "j" | b | j | h | j | x | x | x | x | j | h | j | b | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
2,590 | class A:
def __init__(self, txt: str):
self.s: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.s: B = None
self.txt = txt
b = A("b")
j = B("j")
c = B("c")
f = A("f")
b.s = j
b.o = f
j.v = c
j.s = c
c.v = j
c... | j" | class A:
def __init__(self, txt: str):
self.s: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.s: B = None
self.txt = txt
b = A("b")
j = B("j")
c = B("c")
f = A("f")
b.s = j
b.o = f
j.v = c
j.s = c
c.v = j
c... | j | c | j | c | j | x | x | x | j | c | j | c | j | x | x | x | 4 | 6 | 2 | 4 | 3 |
2,591 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.txt = txt
e = A("e")
a = B("a")
g = B("g")
d = A("d")
j = B("j")
e.q = g
a.q = j
a.z = e
g.q = j
g.z = e
d.q = j
j.q = a... | e" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.txt = txt
e = A("e")
a = B("a")
g = B("g")
d = A("d")
j = B("j")
e.q = g
a.q = j
a.z = e
g.q = j
g.z = e
d.q = j
j.q = a... | a | e | g | e | x | x | x | x | e | g | e | a | x | x | x | x | 5 | 8 | 2 | 3 | 1 |
2,592 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
b = A("b")
g = B("g")
c = A("c")
j = B("j")
b.t = g
g.t = j
c.t = g
j.t = g
assert g.t.t.t.txt == " | j" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
b = A("b")
g = B("g")
c = A("c")
j = B("j")
b.t = g
g.t = j
c.t = g
j.t = g
assert g.t.t.t.txt == "j" | g | j | g | j | x | x | x | x | j | g | j | g | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
2,593 | class A:
def __init__(self, txt: str):
self.z: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
g = A("g")
i = B("i")
a = A("a")
j = B("j")
g.z = j
g.t = j
i.q = g
a.z = j
a.t = i
j.q = g
assert a.z.q.z.txt... | j" | class A:
def __init__(self, txt: str):
self.z: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
g = A("g")
i = B("i")
a = A("a")
j = B("j")
g.z = j
g.t = j
i.q = g
a.z = j
a.t = i
j.q = g
assert a.z.q.z.txt... | a | j | g | j | x | x | x | x | j | g | j | a | x | x | x | x | 4 | 5 | 2 | 3 | 1 |
2,594 | class A:
def __init__(self, txt: str):
self.r: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
e = A("e")
f = B("f")
a = B("a")
h = B("h")
e.r = f
e.t = a
f.o = e
a.o = e
h.o = e
assert e.t.o.r.txt == " | f" | class A:
def __init__(self, txt: str):
self.r: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
e = A("e")
f = B("f")
a = B("a")
h = B("h")
e.r = f
e.t = a
f.o = e
a.o = e
h.o = e
assert e.t.o.r.txt == "f" | e | a | e | f | x | x | x | x | f | e | a | e | x | x | x | x | 4 | 5 | 2 | 3 | 1 |
2,595 | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
a = A("a")
g = B("g")
f = B("f")
b = B("b")
c = A("c")
a.u = f
a.z = c
g.x = c
f.x = a
b.x = c
c.u = b
c.z = a... | f" | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
a = A("a")
g = B("g")
f = B("f")
b = B("b")
c = A("c")
a.u = f
a.z = c
g.x = c
f.x = a
b.x = c
c.u = b
c.z = a... | g | c | a | f | a | f | x | x | f | a | f | a | c | g | x | x | 5 | 7 | 2 | 5 | 2 |
2,596 | class A:
def __init__(self, txt: str):
self.w: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
c = A("c")
b = B("b")
a = A("a")
d = A("d")
e = A("e")
j = B("j")
c.w = b
c.o = b
b.w = j
a.w = b
a.o = j
d.w ... | j" | class A:
def __init__(self, txt: str):
self.w: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
c = A("c")
b = B("b")
a = A("a")
d = A("d")
e = A("e")
j = B("j")
c.w = b
c.o = b
b.w = j
a.w = b
a.o = j
d.w ... | d | j | b | j | b | j | x | x | j | b | j | b | j | d | x | x | 6 | 8 | 2 | 5 | 3 |
2,597 | class A:
def __init__(self, txt: str):
self.y: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
d = A("d")
j = B("j")
f = A("f")
d.y = j
d.s = f
j.o = f
f.y = j
f.s = d
assert d.s.y.o.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
d = A("d")
j = B("j")
f = A("f")
d.y = j
d.s = f
j.o = f
f.y = j
f.s = d
assert d.s.y.o.txt == "f" | d | f | j | f | x | x | x | x | f | j | f | d | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
2,598 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.s: A = None
self.txt = txt
b = A("b")
a = B("a")
d = B("d")
i = A("i")
b.u = i
a.u = d
a.s = i
d.u = a
d.s = b
i.u = b
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.u: B = None
self.s: A = None
self.txt = txt
b = A("b")
a = B("a")
d = B("d")
i = A("i")
b.u = i
a.u = d
a.s = i
d.u = a
d.s = b
i.u = b
assert b.u.u.u.u.t... | b | i | b | i | b | x | x | x | b | i | b | i | b | x | x | x | 4 | 6 | 2 | 4 | 3 |
2,599 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
e = A("e")
i = B("i")
a = A("a")
f = A("f")
g = B("g")
c = B("c")
e.z = c
i.y = g
a.z = c
f.z = g
g.y = i
c.y = g
assert e.z.y.y.y.y.y.... | g" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
e = A("e")
i = B("i")
a = A("a")
f = A("f")
g = B("g")
c = B("c")
e.z = c
i.y = g
a.z = c
f.z = g
g.y = i
c.y = g
assert e.z.y.y.y.y.y.... | e | c | g | i | g | i | g | x | g | i | g | i | g | c | e | x | 6 | 6 | 2 | 6 | 3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.