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