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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4,600 | class A:
def __init__(self, txt: str):
self.u: 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")
a = B("a")
i.u = a
b.p = a
b.o = a
a.p = b
a.o = b
assert i.u.o.o.txt == " | a" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.o: B = None
self.txt = txt
i = A("i")
b = B("b")
a = B("a")
i.u = a
b.p = a
b.o = a
a.p = b
a.o = b
assert i.u.o.o.txt == "a" | i | a | b | a | x | x | x | x | a | b | a | i | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,601 | class A:
def __init__(self, txt: str):
self.v: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
j = A("j")
d = B("d")
f = B("f")
e = B("e")
j.v = e
j.t = e
d.s = j
f.s = j
e.s = j
assert f.s.t.s.txt == " | j" | class A:
def __init__(self, txt: str):
self.v: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
j = A("j")
d = B("d")
f = B("f")
e = B("e")
j.v = e
j.t = e
d.s = j
f.s = j
e.s = j
assert f.s.t.s.txt == "j" | f | j | e | j | x | x | x | x | j | e | j | f | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
4,602 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
g = B("g")
i = A("i")
c = A("c")
j = B("j")
h = B("h")
e.t = g
g.w = j
i.t = g
c.t = g
j.w = h
h.w = j
assert i.t.w.w.txt ==... | h" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
g = B("g")
i = A("i")
c = A("c")
j = B("j")
h = B("h")
e.t = g
g.w = j
i.t = g
c.t = g
j.w = h
h.w = j
assert i.t.w.w.txt ==... | i | g | j | h | x | x | x | x | h | j | g | i | x | x | x | x | 6 | 6 | 2 | 3 | 0 |
4,603 | 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.q: A = None
self.y: B = None
self.txt = txt
g = A("g")
c = B("c")
i = B("i")
a = A("a")
e = A("e")
g.w = c
g.o = a
c.q = a
c.y = ... | a" | 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.q: A = None
self.y: B = None
self.txt = txt
g = A("g")
c = B("c")
i = B("i")
a = A("a")
e = A("e")
g.w = c
g.o = a
c.q = a
c.y = ... | g | c | a | e | g | a | x | x | a | g | e | a | c | g | x | x | 5 | 10 | 2 | 5 | 2 |
4,604 | class A:
def __init__(self, txt: str):
self.v: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
f = A("f")
j = B("j")
i = A("i")
c = B("c")
f.v = j
f.t = c
j.r = f
i.v = j
i.t = j
c.r = i
assert j.r.t.r.t.t... | j" | class A:
def __init__(self, txt: str):
self.v: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
f = A("f")
j = B("j")
i = A("i")
c = B("c")
f.v = j
f.t = c
j.r = f
i.v = j
i.t = j
c.r = i
assert j.r.t.r.t.t... | j | f | c | i | j | x | x | x | j | i | c | f | j | x | x | x | 4 | 5 | 2 | 4 | 1 |
4,605 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.y: B = None
self.txt = txt
h = A("h")
d = B("d")
j = B("j")
c = A("c")
f = A("f")
b = B("b")
e = B("e")
h.x = c
d.r = j
d.y = b
j.r = b
j... | c" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.y: B = None
self.txt = txt
h = A("h")
d = B("d")
j = B("j")
c = A("c")
f = A("f")
b = B("b")
e = B("e")
h.x = c
d.r = j
d.y = b
j.r = b
j... | f | h | c | h | c | x | x | x | c | h | c | h | f | x | x | x | 7 | 11 | 2 | 4 | 2 |
4,606 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
j = A("j")
a = B("a")
f = A("f")
j.s = f
a.p = f
f.s = j
assert a.p.s.s.txt == " | f" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
j = A("j")
a = B("a")
f = A("f")
j.s = f
a.p = f
f.s = j
assert a.p.s.s.txt == "f" | a | f | j | f | x | x | x | x | f | j | f | a | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,607 | class A:
def __init__(self, txt: str):
self.t: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.x: A = None
self.txt = txt
e = A("e")
j = B("j")
f = B("f")
g = B("g")
d = B("d")
h = A("h")
e.t = f
e.q = d
j.y... | e" | class A:
def __init__(self, txt: str):
self.t: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.x: A = None
self.txt = txt
e = A("e")
j = B("j")
f = B("f")
g = B("g")
d = B("d")
h = A("h")
e.t = f
e.q = d
j.y... | e | f | h | j | e | x | x | x | e | j | h | f | e | x | x | x | 6 | 12 | 2 | 4 | 1 |
4,608 | class A:
def __init__(self, txt: str):
self.u: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
g = A("g")
a = B("a")
d = A("d")
c = B("c")
i = A("i")
h = A("h")
b = B("b")
g.u = d
g.p = c
a.s = i
d.u = i
d... | g" | class A:
def __init__(self, txt: str):
self.u: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
g = A("g")
a = B("a")
d = A("d")
c = B("c")
i = A("i")
h = A("h")
b = B("b")
g.u = d
g.p = c
a.s = i
d.u = i
d... | i | d | a | i | b | g | x | x | g | b | i | a | d | i | x | x | 7 | 11 | 2 | 5 | 1 |
4,609 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.txt = txt
a = A("a")
d = B("d")
b = A("b")
h = A("h")
j = A("j")
f = B("f")
e = B("e")
a.q = f
d.y = f
d.q = h
b.q = d
h... | h" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.txt = txt
a = A("a")
d = B("d")
b = A("b")
h = A("h")
j = A("j")
f = B("f")
e = B("e")
a.q = f
d.y = f
d.q = h
b.q = d
h... | d | f | h | f | h | f | e | h | h | e | f | h | f | h | f | d | 7 | 10 | 2 | 7 | 4 |
4,610 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.q: B = None
self.txt = txt
e = A("e")
j = B("j")
f = B("f")
d = A("d")
e.w = f
j.z = f
j.q = f
f.z = j
f.q = j
d.w = f
assert e.w.z.q.txt... | f" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.q: B = None
self.txt = txt
e = A("e")
j = B("j")
f = B("f")
d = A("d")
e.w = f
j.z = f
j.q = f
f.z = j
f.q = j
d.w = f
assert e.w.z.q.txt... | e | f | j | f | x | x | x | x | f | j | f | e | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
4,611 | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.y: A = None
self.txt = txt
e = A("e")
j = B("j")
c = B("c")
h = B("h")
g = A("g")
e.q = c
e.x = g
j.t = g
j.y = ... | j" | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.y: A = None
self.txt = txt
e = A("e")
j = B("j")
c = B("c")
h = B("h")
g = A("g")
e.q = c
e.x = g
j.t = g
j.y = ... | h | e | c | g | j | x | x | x | j | g | c | e | h | x | x | x | 5 | 9 | 2 | 4 | 0 |
4,612 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.r: A = None
self.txt = txt
g = A("g")
d = B("d")
a = B("a")
f = A("f")
g.u = f
d.w = a
d.r = g
a.w = d
a.r = f
f.u = g
assert g.u.u.u.txt... | f" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.r: A = None
self.txt = txt
g = A("g")
d = B("d")
a = B("a")
f = A("f")
g.u = f
d.w = a
d.r = g
a.w = d
a.r = f
f.u = g
assert g.u.u.u.txt... | g | f | g | f | x | x | x | x | f | g | f | g | x | x | x | x | 4 | 6 | 2 | 3 | 2 |
4,613 | 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.z: A = None
self.txt = txt
i = A("i")
f = B("f")
b = A("b")
e = B("e")
i.u = b
i.s = b
f.z = i
b.u = i
b.s = i
e.z = b
assert i.u.u.u.txt... | b" | 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.z: A = None
self.txt = txt
i = A("i")
f = B("f")
b = A("b")
e = B("e")
i.u = b
i.s = b
f.z = i
b.u = i
b.s = i
e.z = b
assert i.u.u.u.txt... | i | b | i | b | x | x | x | x | b | i | b | i | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
4,614 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
g = A("g")
a = B("a")
i = A("i")
f = B("f")
j = A("j")
e = A("e")
d = B("d")
g.x = j
a.o = f
i.x = e
f.o = d
j.x = g
e.x = g
d.o = f
as... | f" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
g = A("g")
a = B("a")
i = A("i")
f = B("f")
j = A("j")
e = A("e")
d = B("d")
g.x = j
a.o = f
i.x = e
f.o = d
j.x = g
e.x = g
d.o = f
as... | a | f | d | f | d | f | d | f | f | d | f | d | f | d | f | a | 7 | 7 | 2 | 7 | 5 |
4,615 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
g = A("g")
a = B("a")
j = A("j")
c = B("c")
f = A("f")
e = A("e")
g.p = c
a.q = c
j.p = a
c.q = a
f.p = a
e.p = c
assert e.p.q.q.q.q.q.... | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
g = A("g")
a = B("a")
j = A("j")
c = B("c")
f = A("f")
e = A("e")
g.p = c
a.q = c
j.p = a
c.q = a
f.p = a
e.p = c
assert e.p.q.q.q.q.q.... | e | c | a | c | a | c | a | x | a | c | a | c | a | c | e | x | 6 | 6 | 2 | 6 | 4 |
4,616 | class A:
def __init__(self, txt: str):
self.q: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
i = A("i")
b = B("b")
h = B("h")
e = A("e")
i.q = b
i.w = e
b.w = i
h.w = i
e.q = b
e.w = i
assert e.q.w.w.txt... | e" | class A:
def __init__(self, txt: str):
self.q: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
i = A("i")
b = B("b")
h = B("h")
e = A("e")
i.q = b
i.w = e
b.w = i
h.w = i
e.q = b
e.w = i
assert e.q.w.w.txt... | e | b | i | e | x | x | x | x | e | i | b | e | x | x | x | x | 4 | 6 | 2 | 3 | 1 |
4,617 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.x: A = None
self.txt = txt
b = A("b")
f = B("f")
d = A("d")
g = A("g")
c = B("c")
i = A("i")
b.o = f
f.v = c
f.x = b
d.o = c
g.o = f
c.v ... | f" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.x: A = None
self.txt = txt
b = A("b")
f = B("f")
d = A("d")
g = A("g")
c = B("c")
i = A("i")
b.o = f
f.v = c
f.x = b
d.o = c
g.o = f
c.v ... | f | c | g | f | c | f | x | x | f | c | f | g | c | f | x | x | 6 | 8 | 2 | 5 | 3 |
4,618 | 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.t: A = None
self.txt = txt
b = A("b")
j = B("j")
c = A("c")
i = A("i")
a = B("a")
g = A("g")
f = A("f")
b.v = i
j.w = a
j.t = f
c.v = g
i... | b" | 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.t: A = None
self.txt = txt
b = A("b")
j = B("j")
c = A("c")
i = A("i")
a = B("a")
g = A("g")
f = A("f")
b.v = i
j.w = a
j.t = f
c.v = g
i... | g | b | i | c | g | b | x | x | b | g | c | i | b | g | x | x | 7 | 9 | 2 | 5 | 2 |
4,619 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
b = A("b")
a = B("a")
h = B("h")
b.s = h
a.s = b
h.s = b
assert h.s.s.s.txt == " | b" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
b = A("b")
a = B("a")
h = B("h")
b.s = h
a.s = b
h.s = b
assert h.s.s.s.txt == "b" | h | b | h | b | x | x | x | x | b | h | b | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,620 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
b = A("b")
f = B("f")
j = B("j")
g = B("g")
d = A("d")
e = A("e")
b.p = j
f.y = b
j.y = d
g.y = e
d.p = f
e.p = j
assert b.p.y.p.y.p.tx... | j" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
b = A("b")
f = B("f")
j = B("j")
g = B("g")
d = A("d")
e = A("e")
b.p = j
f.y = b
j.y = d
g.y = e
d.p = f
e.p = j
assert b.p.y.p.y.p.tx... | b | j | d | f | b | j | x | x | j | b | f | d | j | b | x | x | 6 | 6 | 2 | 5 | 2 |
4,621 | class A:
def __init__(self, txt: str):
self.y: A = None
self.q: 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")
j = A("j")
g = B("g")
h.y = j
h.q = g
e.q = g
j.y = h
j.q = e
g.q = e
assert h.q.q.q.q.t... | e" | class A:
def __init__(self, txt: str):
self.y: A = None
self.q: 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")
j = A("j")
g = B("g")
h.y = j
h.q = g
e.q = g
j.y = h
j.q = e
g.q = e
assert h.q.q.q.q.t... | h | g | e | g | e | x | x | x | e | g | e | g | h | x | x | x | 4 | 6 | 2 | 4 | 2 |
4,622 | class A:
def __init__(self, txt: str):
self.t: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.p: B = None
self.txt = txt
b = A("b")
d = B("d")
h = B("h")
j = A("j")
i = B("i")
e = B("e")
g = A("g")
b.t = h
... | i" | class A:
def __init__(self, txt: str):
self.t: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.p: B = None
self.txt = txt
b = A("b")
d = B("d")
h = B("h")
j = A("j")
i = B("i")
e = B("e")
g = A("g")
b.t = h
... | d | h | e | i | x | x | x | x | i | e | h | d | x | x | x | x | 7 | 14 | 2 | 3 | 0 |
4,623 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.u: A = None
self.txt = txt
c = A("c")
i = B("i")
f = B("f")
c.u = f
i.o = f
i.u = c
f.o = i
f.u = c
assert f.u.u.u.txt == " | c" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.u: A = None
self.txt = txt
c = A("c")
i = B("i")
f = B("f")
c.u = f
i.o = f
i.u = c
f.o = i
f.u = c
assert f.u.u.u.txt == "c" | f | c | f | c | x | x | x | x | c | f | c | f | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
4,624 | class A:
def __init__(self, txt: str):
self.v: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
h = A("h")
a = B("a")
f = A("f")
h.v = f
h.x = a
a.r = h
f.v = h
f.x = a
assert h.x.r.x.txt == " | a" | class A:
def __init__(self, txt: str):
self.v: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
h = A("h")
a = B("a")
f = A("f")
h.v = f
h.x = a
a.r = h
f.v = h
f.x = a
assert h.x.r.x.txt == "a" | h | a | h | a | x | x | x | x | a | h | a | h | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
4,625 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.p: B = None
self.txt = txt
c = A("c")
a = B("a")
d = B("d")
h = A("h")
c.v = a
a.t = d
a.p = d
d.t = a
d.p = a
h.v = a
assert c.v.p.p.p.t... | d" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.p: B = None
self.txt = txt
c = A("c")
a = B("a")
d = B("d")
h = A("h")
c.v = a
a.t = d
a.p = d
d.t = a
d.p = a
h.v = a
assert c.v.p.p.p.t... | c | a | d | a | d | x | x | x | d | a | d | a | c | x | x | x | 4 | 4 | 2 | 4 | 2 |
4,626 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
f = A("f")
h = B("h")
j = A("j")
f.s = h
h.y = j
j.s = h
assert j.s.y.s.txt == " | h" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
f = A("f")
h = B("h")
j = A("j")
f.s = h
h.y = j
j.s = h
assert j.s.y.s.txt == "h" | j | h | j | h | x | x | x | x | h | j | h | j | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,627 | class A:
def __init__(self, txt: str):
self.o: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
d = A("d")
c = B("c")
g = A("g")
b = B("b")
d.o = c
d.x = g
c.t = b
g.o = c
g.x = d
b.t = c
assert c.t.t.t.txt... | b" | class A:
def __init__(self, txt: str):
self.o: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
d = A("d")
c = B("c")
g = A("g")
b = B("b")
d.o = c
d.x = g
c.t = b
g.o = c
g.x = d
b.t = c
assert c.t.t.t.txt... | c | b | c | b | x | x | x | x | b | c | b | c | x | x | x | x | 4 | 6 | 2 | 3 | 2 |
4,628 | class A:
def __init__(self, txt: str):
self.o: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
d = A("d")
a = B("a")
c = A("c")
g = A("g")
i = B("i")
f = A("f")
d.o = i
d.u = c
a.v = f
c.o = a
c.u = d
g.o ... | i" | class A:
def __init__(self, txt: str):
self.o: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
d = A("d")
a = B("a")
c = A("c")
g = A("g")
i = B("i")
f = A("f")
d.o = i
d.u = c
a.v = f
c.o = a
c.u = d
g.o ... | d | c | a | f | d | i | x | x | i | d | f | a | c | d | x | x | 6 | 10 | 2 | 5 | 1 |
4,629 | 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.p: B = None
self.txt = txt
i = A("i")
e = B("e")
d = B("d")
a = B("a")
g = A("g")
i.v = e
i.y = g
e.p = d
d.p = a
a.p = e
g.v = a
g.y = i... | 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.p: B = None
self.txt = txt
i = A("i")
e = B("e")
d = B("d")
a = B("a")
g = A("g")
i.v = e
i.y = g
e.p = d
d.p = a
a.p = e
g.v = a
g.y = i... | e | d | a | e | x | x | x | x | e | a | d | e | x | x | x | x | 5 | 7 | 2 | 3 | 1 |
4,630 | class A:
def __init__(self, txt: str):
self.t: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
g = B("g")
i = B("i")
j = A("j")
a = A("a")
d = B("d")
b = A("b")
f.t = g
f.o = b
g.q = b
i.q = j
j... | f" | class A:
def __init__(self, txt: str):
self.t: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
g = B("g")
i = B("i")
j = A("j")
a = A("a")
d = B("d")
b = A("b")
f.t = g
f.o = b
g.q = b
i.q = j
j... | b | f | b | f | x | x | x | x | f | b | f | b | x | x | x | x | 7 | 11 | 2 | 3 | 2 |
4,631 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
c = A("c")
e = B("e")
h = B("h")
f = B("f")
c.v = f
e.z = c
h.z = c
f.z = c
assert f.z.v.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
c = A("c")
e = B("e")
h = B("h")
f = B("f")
c.v = f
e.z = c
h.z = c
f.z = c
assert f.z.v.z.txt == "c" | f | c | f | c | x | x | x | x | c | f | c | f | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
4,632 | class A:
def __init__(self, txt: str):
self.y: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
j = A("j")
e = B("e")
f = A("f")
h = A("h")
a = B("a")
i = B("i")
g = A("g")
j.y = a
j.s = a
e.v = i
f.y = i
f... | a" | class A:
def __init__(self, txt: str):
self.y: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
j = A("j")
e = B("e")
f = A("f")
h = A("h")
a = B("a")
i = B("i")
g = A("g")
j.y = a
j.s = a
e.v = i
f.y = i
f... | g | i | a | i | a | i | a | x | a | i | a | i | a | i | g | x | 7 | 8 | 2 | 6 | 4 |
4,633 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.v: A = None
self.txt = txt
h = A("h")
j = B("j")
e = B("e")
g = B("g")
a = A("a")
h.r = e
j.s = h
j.v = h
e.s = a
e.v = a
g.s = h
g.v = h... | j" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.v: A = None
self.txt = txt
h = A("h")
j = B("j")
e = B("e")
g = B("g")
a = A("a")
h.r = e
j.s = h
j.v = h
e.s = a
e.v = a
g.s = h
g.v = h... | j | h | e | a | j | x | x | x | j | a | e | h | j | x | x | x | 5 | 5 | 2 | 4 | 1 |
4,634 | 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.y: A = None
self.txt = txt
b = A("b")
e = B("e")
c = A("c")
g = B("g")
h = A("h")
b.t = g
b.r = c
e.y = b
c.t = e
c.r = b
g.y = c
h.t = e... | b" | 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.y: A = None
self.txt = txt
b = A("b")
e = B("e")
c = A("c")
g = B("g")
h = A("h")
b.t = g
b.r = c
e.y = b
c.t = e
c.r = b
g.y = c
h.t = e... | c | b | g | c | b | x | x | x | b | c | g | b | c | x | x | x | 5 | 8 | 2 | 4 | 2 |
4,635 | 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.r: A = None
self.txt = txt
i = A("i")
j = B("j")
f = B("f")
e = A("e")
b = B("b")
h = A("h")
g = A("g")
i.r = h
i.q = g
j.r = g
f.r = e
e... | g" | 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.r: A = None
self.txt = txt
i = A("i")
j = B("j")
f = B("f")
e = A("e")
b = B("b")
h = A("h")
g = A("g")
i.r = h
i.q = g
j.r = g
f.r = e
e... | i | g | h | e | i | g | x | x | g | i | e | h | g | i | x | x | 7 | 9 | 2 | 5 | 2 |
4,636 | class A:
def __init__(self, txt: str):
self.u: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.r: A = None
self.txt = txt
h = A("h")
c = B("c")
j = B("j")
g = B("g")
f = B("f")
b = B("b")
d = A("d")
h.u = d
... | f" | class A:
def __init__(self, txt: str):
self.u: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.r: A = None
self.txt = txt
h = A("h")
c = B("c")
j = B("j")
g = B("g")
f = B("f")
b = B("b")
d = A("d")
h.u = d
... | b | d | h | b | d | f | x | x | f | d | b | h | d | b | x | x | 7 | 14 | 2 | 5 | 2 |
4,637 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
b = A("b")
e = B("e")
c = B("c")
j = A("j")
b.x = c
e.x = c
c.x = e
j.x = c
assert b.x.x.x.x.txt == " | e" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
b = A("b")
e = B("e")
c = B("c")
j = A("j")
b.x = c
e.x = c
c.x = e
j.x = c
assert b.x.x.x.x.txt == "e" | b | c | e | c | e | x | x | x | e | c | e | c | b | x | x | x | 4 | 4 | 2 | 4 | 2 |
4,638 | class A:
def __init__(self, txt: str):
self.z: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
i = A("i")
e = B("e")
d = A("d")
h = A("h")
a = B("a")
c = A("c")
j = B("j")
i.z = h
i.o = j
e.z = a
d.z = i
d... | a" | class A:
def __init__(self, txt: str):
self.z: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
i = A("i")
e = B("e")
d = A("d")
h = A("h")
a = B("a")
c = A("c")
j = B("j")
i.z = h
i.o = j
e.z = a
d.z = i
d... | j | e | a | e | a | x | x | x | a | e | a | e | j | x | x | x | 7 | 11 | 2 | 4 | 2 |
4,639 | class A:
def __init__(self, txt: str):
self.u: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.o: B = None
self.txt = txt
i = A("i")
d = B("d")
j = B("j")
b = B("b")
h = A("h")
a = B("a")
f = A("f")
i.u = f
... | f" | class A:
def __init__(self, txt: str):
self.u: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.o: B = None
self.txt = txt
i = A("i")
d = B("d")
j = B("j")
b = B("b")
h = A("h")
a = B("a")
f = A("f")
i.u = f
... | i | f | i | f | h | f | x | x | f | h | f | i | f | i | x | x | 7 | 12 | 2 | 5 | 3 |
4,640 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.u: A = None
self.txt = txt
j = A("j")
i = B("i")
a = B("a")
j.s = a
i.x = j
i.u = j
a.x = j
a.u = j
assert a.u.s.u.txt == " | j" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.u: A = None
self.txt = txt
j = A("j")
i = B("i")
a = B("a")
j.s = a
i.x = j
i.u = j
a.x = j
a.u = j
assert a.u.s.u.txt == "j" | a | j | a | j | x | x | x | x | j | a | j | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,641 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.q: B = None
self.txt = txt
g = A("g")
j = B("j")
e = A("e")
i = A("i")
d = A("d")
h = B("h")
g.v = e
j.y = d
j.q = h
e.v = d
i.v = d
d.v ... | d" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.q: B = None
self.txt = txt
g = A("g")
j = B("j")
e = A("e")
i = A("i")
d = A("d")
h = B("h")
g.v = e
j.y = d
j.q = h
e.v = d
i.v = d
d.v ... | j | d | e | d | x | x | x | x | d | e | d | j | x | x | x | x | 6 | 8 | 2 | 3 | 1 |
4,642 | class A:
def __init__(self, txt: str):
self.s: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.p: A = None
self.txt = txt
j = A("j")
f = B("f")
b = A("b")
e = A("e")
i = B("i")
j.s = b
j.p = b
f.o = e
f.p = ... | j" | class A:
def __init__(self, txt: str):
self.s: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.p: A = None
self.txt = txt
j = A("j")
f = B("f")
b = A("b")
e = A("e")
i = B("i")
j.s = b
j.p = b
f.o = e
f.p = ... | i | b | e | j | b | j | x | x | j | b | j | e | b | i | x | x | 5 | 6 | 2 | 5 | 2 |
4,643 | class A:
def __init__(self, txt: str):
self.y: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.r: B = None
self.txt = txt
f = A("f")
i = B("i")
j = A("j")
h = B("h")
b = A("b")
d = A("d")
e = B("e")
f.y = h
... | b" | class A:
def __init__(self, txt: str):
self.y: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.r: B = None
self.txt = txt
f = A("f")
i = B("i")
j = A("j")
h = B("h")
b = A("b")
d = A("d")
e = B("e")
f.y = h
... | f | d | b | e | b | x | x | x | b | e | b | d | f | x | x | x | 7 | 14 | 2 | 4 | 1 |
4,644 | class A:
def __init__(self, txt: str):
self.q: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
g = A("g")
b = B("b")
i = B("i")
j = A("j")
f = B("f")
a = A("a")
h = B("h")
g.q = i
g.y = j
b.o = a
i.o = g
j... | g" | class A:
def __init__(self, txt: str):
self.q: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
g = A("g")
b = B("b")
i = B("i")
j = A("j")
f = B("f")
a = A("a")
h = B("h")
g.q = i
g.y = j
b.o = a
i.o = g
j... | i | g | j | i | g | j | g | x | g | j | g | i | j | g | i | x | 7 | 10 | 2 | 6 | 4 |
4,645 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.z: A = None
self.txt = txt
a = A("a")
i = B("i")
b = A("b")
a.u = i
i.y = a
i.z = a
b.u = i
assert b.u.z.u.txt == " | i" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.z: A = None
self.txt = txt
a = A("a")
i = B("i")
b = A("b")
a.u = i
i.y = a
i.z = a
b.u = i
assert b.u.z.u.txt == "i" | b | i | a | i | x | x | x | x | i | a | i | b | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,646 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
c = A("c")
a = B("a")
e = B("e")
c.w = e
a.w = c
e.w = c
assert e.w.w.w.txt == " | c" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
c = A("c")
a = B("a")
e = B("e")
c.w = e
a.w = c
e.w = c
assert e.w.w.w.txt == "c" | e | c | e | c | x | x | x | x | c | e | c | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,647 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.y: B = None
self.txt = txt
f = A("f")
j = B("j")
a = B("a")
d = A("d")
i = A("i")
f.o = j
j.x = a
j.y = a
a.x = j
a.y = j
d.o = a
i.o = j... | a" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.y: B = None
self.txt = txt
f = A("f")
j = B("j")
a = B("a")
d = A("d")
i = A("i")
f.o = j
j.x = a
j.y = a
a.x = j
a.y = j
d.o = a
i.o = j... | a | j | a | j | a | x | x | x | a | j | a | j | a | x | x | x | 5 | 5 | 2 | 4 | 3 |
4,648 | class A:
def __init__(self, txt: str):
self.t: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.o: B = None
self.txt = txt
h = A("h")
a = B("a")
i = B("i")
e = B("e")
f = A("f")
d = A("d")
h.t = e
h.o = d
a.y... | e" | class A:
def __init__(self, txt: str):
self.t: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.o: B = None
self.txt = txt
h = A("h")
a = B("a")
i = B("i")
e = B("e")
f = A("f")
d = A("d")
h.t = e
h.o = d
a.y... | a | e | i | e | i | e | x | x | e | i | e | i | e | a | x | x | 6 | 12 | 2 | 5 | 3 |
4,649 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
g = A("g")
f = B("f")
i = B("i")
g.s = f
f.w = g
i.w = g
assert i.w.s.w.txt == " | g" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
g = A("g")
f = B("f")
i = B("i")
g.s = f
f.w = g
i.w = g
assert i.w.s.w.txt == "g" | i | g | f | g | x | x | x | x | g | f | g | i | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,650 | 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.u: B = None
self.q: B = None
self.txt = txt
b = A("b")
d = B("d")
e = A("e")
c = B("c")
f = A("f")
b.o = e
b.s = e
d.u = c
d.q = ... | d" | 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.u: B = None
self.q: B = None
self.txt = txt
b = A("b")
d = B("d")
e = A("e")
c = B("c")
f = A("f")
b.o = e
b.s = e
d.u = c
d.q = ... | c | d | c | d | c | d | x | x | d | c | d | c | d | c | x | x | 5 | 6 | 2 | 5 | 4 |
4,651 | class A:
def __init__(self, txt: str):
self.r: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.r: A = None
self.txt = txt
b = A("b")
g = B("g")
c = B("c")
a = A("a")
j = B("j")
d = B("d")
f = B("f")
b.r = a
... | a" | class A:
def __init__(self, txt: str):
self.r: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.r: A = None
self.txt = txt
b = A("b")
g = B("g")
c = B("c")
a = A("a")
j = B("j")
d = B("d")
f = B("f")
b.r = a
... | j | g | j | g | j | b | d | a | a | d | b | j | g | j | g | j | 7 | 14 | 2 | 7 | 3 |
4,652 | class A:
def __init__(self, txt: str):
self.r: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.q: B = None
self.txt = txt
d = A("d")
j = B("j")
a = A("a")
c = B("c")
h = A("h")
d.r = c
d.v = c
j.p = d
j.q = ... | c" | class A:
def __init__(self, txt: str):
self.r: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.q: B = None
self.txt = txt
d = A("d")
j = B("j")
a = A("a")
c = B("c")
h = A("h")
d.r = c
d.v = c
j.p = d
j.q = ... | d | c | j | d | c | x | x | x | c | d | j | c | d | x | x | x | 5 | 8 | 2 | 4 | 2 |
4,653 | class A:
def __init__(self, txt: str):
self.v: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.w: A = None
self.txt = txt
a = A("a")
b = B("b")
j = A("j")
h = B("h")
a.v = h
a.q = j
b.t = h
b.w = j
j.v = h
j... | a" | class A:
def __init__(self, txt: str):
self.v: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.w: A = None
self.txt = txt
a = A("a")
b = B("b")
j = A("j")
h = B("h")
a.v = h
a.q = j
b.t = h
b.w = j
j.v = h
j... | a | j | h | j | a | x | x | x | a | j | h | j | a | x | x | x | 4 | 8 | 2 | 4 | 2 |
4,654 | class A:
def __init__(self, txt: str):
self.s: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
a = A("a")
d = B("d")
i = A("i")
g = A("g")
c = B("c")
a.s = c
a.o = d
d.r = i
i.s = d
i.o = d
g.s = d
g.o = d... | i" | class A:
def __init__(self, txt: str):
self.s: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
a = A("a")
d = B("d")
i = A("i")
g = A("g")
c = B("c")
a.s = c
a.o = d
d.r = i
i.s = d
i.o = d
g.s = d
g.o = d... | d | i | d | i | x | x | x | x | i | d | i | d | x | x | x | x | 5 | 6 | 2 | 3 | 2 |
4,655 | class A:
def __init__(self, txt: str):
self.q: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.v: B = None
self.txt = txt
b = A("b")
a = B("a")
c = B("c")
j = B("j")
b.q = a
b.v = c
a.q = c
a.v = j
c.q = j
c... | c" | class A:
def __init__(self, txt: str):
self.q: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.v: B = None
self.txt = txt
b = A("b")
a = B("a")
c = B("c")
j = B("j")
b.q = a
b.v = c
a.q = c
a.v = j
c.q = j
c... | a | c | a | j | c | x | x | x | c | j | a | c | a | x | x | x | 4 | 7 | 2 | 4 | 2 |
4,656 | class A:
def __init__(self, txt: str):
self.r: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.w: B = None
self.txt = txt
g = A("g")
d = B("d")
a = B("a")
c = B("c")
j = A("j")
h = B("h")
e = B("e")
g.r = j
... | e" | class A:
def __init__(self, txt: str):
self.r: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.w: B = None
self.txt = txt
g = A("g")
d = B("d")
a = B("a")
c = B("c")
j = A("j")
h = B("h")
e = B("e")
g.r = j
... | g | j | g | c | d | j | h | e | e | h | j | d | c | g | j | g | 7 | 14 | 2 | 7 | 2 |
4,657 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.s: B = None
self.txt = txt
e = A("e")
g = B("g")
b = A("b")
j = B("j")
i = A("i")
h = A("h")
a = B("a")
e.p = b
g.q = e
g.s = j
b.p = h
j... | b" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.s: B = None
self.txt = txt
e = A("e")
g = B("g")
b = A("b")
j = B("j")
i = A("i")
h = A("h")
a = B("a")
e.p = b
g.q = e
g.s = j
b.p = h
j... | j | b | h | e | b | x | x | x | b | e | h | b | j | x | x | x | 7 | 10 | 2 | 4 | 1 |
4,658 | class A:
def __init__(self, txt: str):
self.q: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
d = A("d")
a = B("a")
g = A("g")
e = A("e")
h = B("h")
d.q = e
d.y = h
a.p = d
g.q = e
g.y = a
e.q = d
e.y = a... | d" | class A:
def __init__(self, txt: str):
self.q: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
d = A("d")
a = B("a")
g = A("g")
e = A("e")
h = B("h")
d.q = e
d.y = h
a.p = d
g.q = e
g.y = a
e.q = d
e.y = a... | g | e | d | e | d | x | x | x | d | e | d | e | g | x | x | x | 5 | 8 | 2 | 4 | 2 |
4,659 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
e = A("e")
h = B("h")
g = A("g")
e.t = h
h.x = e
g.t = h
assert e.t.x.t.txt == " | h" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
e = A("e")
h = B("h")
g = A("g")
e.t = h
h.x = e
g.t = h
assert e.t.x.t.txt == "h" | e | h | e | h | x | x | x | x | h | e | h | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,660 | 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.t: A = None
self.txt = txt
b = A("b")
g = B("g")
e = A("e")
c = A("c")
d = A("d")
b.t = c
b.q = e
g.t = d
e.t = b
e.q = d
c.t = e
c.q = d... | c" | 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.t: A = None
self.txt = txt
b = A("b")
g = B("g")
e = A("e")
c = A("c")
d = A("d")
b.t = c
b.q = e
g.t = d
e.t = b
e.q = d
c.t = e
c.q = d... | b | e | d | e | d | c | x | x | c | d | e | d | e | b | x | x | 5 | 9 | 2 | 5 | 2 |
4,661 | class A:
def __init__(self, txt: str):
self.z: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
h = A("h")
i = B("i")
a = A("a")
j = B("j")
b = A("b")
h.z = j
h.r = a
i.x = h
a.z = i
a.r = b
j.x = a
b.z = i... | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
h = A("h")
i = B("i")
a = A("a")
j = B("j")
b = A("b")
h.z = j
h.r = a
i.x = h
a.z = i
a.r = b
j.x = a
b.z = i... | a | i | h | j | a | x | x | x | a | j | h | i | a | x | x | x | 5 | 8 | 2 | 4 | 1 |
4,662 | class A:
def __init__(self, txt: str):
self.p: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.v: B = None
self.txt = txt
e = A("e")
d = B("d")
i = A("i")
g = B("g")
e.p = i
e.s = i
d.w = g
d.v = g
i.p = e
i... | e" | class A:
def __init__(self, txt: str):
self.p: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.v: B = None
self.txt = txt
e = A("e")
d = B("d")
i = A("i")
g = B("g")
e.p = i
e.s = i
d.w = g
d.v = g
i.p = e
i... | e | i | e | i | e | x | x | x | e | i | e | i | e | x | x | x | 4 | 4 | 2 | 4 | 3 |
4,663 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.t: A = None
self.txt = txt
f = A("f")
h = B("h")
g = A("g")
a = B("a")
b = B("b")
f.y = g
h.s = b
h.t = g
g.y = f
a.s = h
a.t = g
b.s = a... | f" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.t: A = None
self.txt = txt
f = A("f")
h = B("h")
g = A("g")
a = B("a")
b = B("b")
f.y = g
h.s = b
h.t = g
g.y = f
a.s = h
a.t = g
b.s = a... | g | f | g | f | g | f | x | x | f | g | f | g | f | g | x | x | 5 | 8 | 2 | 5 | 4 |
4,664 | 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
c = A("c")
f = B("f")
e = A("e")
b = A("b")
c.v = e
f.z = b
e.v = b
b.v = c
assert f.z.v.v.v.txt == " | b" | 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
c = A("c")
f = B("f")
e = A("e")
b = A("b")
c.v = e
f.z = b
e.v = b
b.v = c
assert f.z.v.v.v.txt == "b" | f | b | c | e | b | x | x | x | b | e | c | b | f | x | x | x | 4 | 4 | 2 | 4 | 1 |
4,665 | class A:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.u: A = None
self.txt = txt
b = A("b")
a = B("a")
f = A("f")
d = B("d")
c = A("c")
b.x = d
b.p = c
a.r = d
a.u = ... | f" | class A:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.u: A = None
self.txt = txt
b = A("b")
a = B("a")
f = A("f")
d = B("d")
c = A("c")
b.x = d
b.p = c
a.r = d
a.u = ... | c | f | d | a | c | f | x | x | f | c | a | d | f | c | x | x | 5 | 10 | 2 | 5 | 2 |
4,666 | 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.z: B = None
self.txt = txt
j = A("j")
b = B("b")
a = B("a")
i = B("i")
h = A("h")
f = A("f")
j.v = h
b.p = i
b.z = i
a.p = i
a.z = b
i.p ... | f" | 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.z: B = None
self.txt = txt
j = A("j")
b = B("b")
a = B("a")
i = B("i")
h = A("h")
f = A("f")
j.v = h
b.p = i
b.z = i
a.p = i
a.z = b
i.p ... | f | j | h | f | x | x | x | x | f | h | j | f | x | x | x | x | 6 | 7 | 2 | 3 | 1 |
4,667 | class A:
def __init__(self, txt: str):
self.w: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.q: A = None
self.txt = txt
i = A("i")
h = B("h")
d = B("d")
i.w = h
i.x = h
h.v = i
h.q = i
d.v = i
d.q = i
asse... | h" | class A:
def __init__(self, txt: str):
self.w: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.q: A = None
self.txt = txt
i = A("i")
h = B("h")
d = B("d")
i.w = h
i.x = h
h.v = i
h.q = i
d.v = i
d.q = i
asse... | i | h | i | h | x | x | x | x | h | i | h | i | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,668 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
e = A("e")
b = B("b")
c = A("c")
e.r = c
b.w = e
c.r = e
assert b.w.r.r.txt == " | e" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
e = A("e")
b = B("b")
c = A("c")
e.r = c
b.w = e
c.r = e
assert b.w.r.r.txt == "e" | b | e | c | e | x | x | x | x | e | c | e | b | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,669 | class A:
def __init__(self, txt: str):
self.t: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
f = A("f")
j = B("j")
d = A("d")
b = A("b")
g = A("g")
i = A("i")
h = A("h")
f.t = h
f.y = j
j.x = h
d.t = h
d... | h" | class A:
def __init__(self, txt: str):
self.t: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
f = A("f")
j = B("j")
d = A("d")
b = A("b")
g = A("g")
i = A("i")
h = A("h")
f.t = h
f.y = j
j.x = h
d.t = h
d... | i | d | h | j | h | f | j | h | h | j | f | h | j | h | d | i | 7 | 13 | 2 | 7 | 3 |
4,670 | class A:
def __init__(self, txt: str):
self.w: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
e = A("e")
g = B("g")
b = A("b")
e.w = g
e.s = b
g.u = b
b.w = g
b.s = e
assert e.w.u.w.txt == " | g" | class A:
def __init__(self, txt: str):
self.w: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
e = A("e")
g = B("g")
b = A("b")
e.w = g
e.s = b
g.u = b
b.w = g
b.s = e
assert e.w.u.w.txt == "g" | e | g | b | g | x | x | x | x | g | b | g | e | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
4,671 | class A:
def __init__(self, txt: str):
self.v: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
i = A("i")
e = B("e")
d = A("d")
i.v = d
i.o = d
e.u = i
d.v = i
d.o = i
assert i.o.o.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.v: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
i = A("i")
e = B("e")
d = A("d")
i.v = d
i.o = d
e.u = i
d.v = i
d.o = i
assert i.o.o.v.txt == "d" | i | d | i | d | x | x | x | x | d | i | d | i | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,672 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.y: B = None
self.txt = txt
h = A("h")
c = B("c")
e = A("e")
b = B("b")
d = A("d")
h.q = d
c.v = d
c.y = b
e.q = d
b.v = e
b.y = c
d.q = e... | d" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.y: B = None
self.txt = txt
h = A("h")
c = B("c")
e = A("e")
b = B("b")
d = A("d")
h.q = d
c.v = d
c.y = b
e.q = d
b.v = e
b.y = c
d.q = e... | h | d | e | d | x | x | x | x | d | e | d | h | x | x | x | x | 5 | 7 | 2 | 3 | 1 |
4,673 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
f = A("f")
a = B("a")
d = B("d")
g = B("g")
b = A("b")
f.x = d
a.r = f
d.r = f
g.r = b
b.x = g
assert g.r.x.r.x.txt == " | g" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
f = A("f")
a = B("a")
d = B("d")
g = B("g")
b = A("b")
f.x = d
a.r = f
d.r = f
g.r = b
b.x = g
assert g.r.x.r.x.txt == "g" | g | b | g | b | g | x | x | x | g | b | g | b | g | x | x | x | 5 | 5 | 2 | 4 | 3 |
4,674 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
g = A("g")
f = B("f")
d = A("d")
g.t = f
f.s = g
d.t = f
assert g.t.s.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.s: A = None
self.txt = txt
g = A("g")
f = B("f")
d = A("d")
g.t = f
f.s = g
d.t = f
assert g.t.s.t.txt == "f" | g | f | g | f | x | x | x | x | f | g | f | g | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,675 | 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.o: A = None
self.txt = txt
a = A("a")
j = B("j")
b = A("b")
i = B("i")
d = A("d")
a.p = i
a.t = b
j.o = a
b.p = j
b.t = d
i.o = b
d.p = j... | b" | 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.o: A = None
self.txt = txt
a = A("a")
j = B("j")
b = A("b")
i = B("i")
d = A("d")
a.p = i
a.t = b
j.o = a
b.p = j
b.t = d
i.o = b
d.p = j... | a | b | d | j | a | b | x | x | b | a | j | d | b | a | x | x | 5 | 8 | 2 | 5 | 2 |
4,676 | class A:
def __init__(self, txt: str):
self.r: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
d = B("d")
e = B("e")
h = A("h")
f.r = d
f.q = h
d.q = h
e.q = f
h.r = d
h.q = f
assert e.q.r.q.q.t... | f" | class A:
def __init__(self, txt: str):
self.r: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
d = B("d")
e = B("e")
h = A("h")
f.r = d
f.q = h
d.q = h
e.q = f
h.r = d
h.q = f
assert e.q.r.q.q.t... | e | f | d | h | f | x | x | x | f | h | d | f | e | x | x | x | 4 | 6 | 2 | 4 | 1 |
4,677 | class A:
def __init__(self, txt: str):
self.w: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.y: A = None
self.txt = txt
i = A("i")
b = B("b")
j = B("j")
i.w = b
i.t = b
b.u = i
b.y = i
j.u = i
j.y = i
asse... | i" | class A:
def __init__(self, txt: str):
self.w: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.y: A = None
self.txt = txt
i = A("i")
b = B("b")
j = B("j")
i.w = b
i.t = b
b.u = i
b.y = i
j.u = i
j.y = i
asse... | b | i | b | i | x | x | x | x | i | b | i | b | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,678 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
f = A("f")
c = B("c")
a = A("a")
h = A("h")
f.p = a
c.p = h
a.p = f
h.p = f
assert c.p.p.p.txt == " | a" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
f = A("f")
c = B("c")
a = A("a")
h = A("h")
f.p = a
c.p = h
a.p = f
h.p = f
assert c.p.p.p.txt == "a" | c | h | f | a | x | x | x | x | a | f | h | c | x | x | x | x | 4 | 4 | 2 | 3 | 0 |
4,679 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.v: A = None
self.txt = txt
h = A("h")
i = B("i")
a = B("a")
j = A("j")
e = A("e")
d = A("d")
h.q = i
i.r = a
i.v = d
a.r = i
a.v = d
j.q ... | i" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.v: A = None
self.txt = txt
h = A("h")
i = B("i")
a = B("a")
j = A("j")
e = A("e")
d = A("d")
h.q = i
i.r = a
i.v = d
a.r = i
a.v = d
j.q ... | d | a | d | a | d | a | i | x | i | a | d | a | d | a | d | x | 6 | 8 | 2 | 6 | 4 |
4,680 | 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.p: B = None
self.txt = txt
h = A("h")
f = B("f")
b = B("b")
e = B("e")
g = A("g")
h.x = b
f.u = h
f.p = e
b.u = g
b.p = e
e.u = g
e.p = f... | g" | 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.p: B = None
self.txt = txt
h = A("h")
f = B("f")
b = B("b")
e = B("e")
g = A("g")
h.x = b
f.u = h
f.p = e
b.u = g
b.p = e
e.u = g
e.p = f... | f | e | f | h | b | g | x | x | g | b | h | f | e | f | x | x | 5 | 8 | 2 | 5 | 1 |
4,681 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.z: B = None
self.txt = txt
e = A("e")
a = B("a")
i = B("i")
f = B("f")
g = B("g")
e.y = i
a.y = e
a.z = i
i.y = e
i.z = a
f.y = e
f.z = g... | i" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.z: B = None
self.txt = txt
e = A("e")
a = B("a")
i = B("i")
f = B("f")
g = B("g")
e.y = i
a.y = e
a.z = i
i.y = e
i.z = a
f.y = e
f.z = g... | f | g | e | i | x | x | x | x | i | e | g | f | x | x | x | x | 5 | 9 | 2 | 3 | 0 |
4,682 | 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.q: A = None
self.txt = txt
a = A("a")
i = B("i")
j = B("j")
b = B("b")
f = A("f")
h = A("h")
c = B("c")
a.v = b
i.t = f
i.q = f
j.t = h
j... | f" | 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.q: A = None
self.txt = txt
a = A("a")
i = B("i")
j = B("j")
b = B("b")
f = A("f")
h = A("h")
c = B("c")
a.v = b
i.t = f
i.q = f
j.t = h
j... | c | f | i | f | i | f | x | x | f | i | f | i | f | c | x | x | 7 | 10 | 2 | 5 | 3 |
4,683 | class A:
def __init__(self, txt: str):
self.p: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
a = A("a")
e = B("e")
g = B("g")
d = A("d")
h = B("h")
a.p = h
a.o = e
e.q = g
g.q = e
d.p = e
d.o = e
h.q = e... | e" | class A:
def __init__(self, txt: str):
self.p: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
a = A("a")
e = B("e")
g = B("g")
d = A("d")
h = B("h")
a.p = h
a.o = e
e.q = g
g.q = e
d.p = e
d.o = e
h.q = e... | g | e | g | e | g | e | x | x | e | g | e | g | e | g | x | x | 5 | 6 | 2 | 5 | 4 |
4,684 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
c = A("c")
j = B("j")
f = B("f")
c.p = f
j.r = c
f.r = c
assert f.r.p.r.txt == " | c" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
c = A("c")
j = B("j")
f = B("f")
c.p = f
j.r = c
f.r = c
assert f.r.p.r.txt == "c" | f | c | f | c | x | x | x | x | c | f | c | f | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,685 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.z: A = None
self.txt = txt
a = A("a")
h = B("h")
e = A("e")
f = B("f")
j = B("j")
c = B("c")
a.z = e
h.v = a
h.z = e
e.z = a
f.v = e
f.z ... | a" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.z: A = None
self.txt = txt
a = A("a")
h = B("h")
e = A("e")
f = B("f")
j = B("j")
c = B("c")
a.z = e
h.v = a
h.z = e
e.z = a
f.v = e
f.z ... | c | a | e | a | x | x | x | x | a | e | a | c | x | x | x | x | 6 | 9 | 2 | 3 | 1 |
4,686 | class A:
def __init__(self, txt: str):
self.p: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
a = A("a")
b = B("b")
g = B("g")
j = A("j")
c = A("c")
a.p = c
a.s = b
b.u = j
g.u = a
j.p = a
j.s = b
c.p = a... | a" | class A:
def __init__(self, txt: str):
self.p: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
a = A("a")
b = B("b")
g = B("g")
j = A("j")
c = A("c")
a.p = c
a.s = b
b.u = j
g.u = a
j.p = a
j.s = b
c.p = a... | b | j | a | c | a | x | x | x | a | c | a | j | b | x | x | x | 5 | 8 | 2 | 4 | 1 |
4,687 | class A:
def __init__(self, txt: str):
self.v: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
c = A("c")
a = B("a")
b = A("b")
h = B("h")
d = B("d")
i = A("i")
c.v = a
c.s = b
a.r... | b" | class A:
def __init__(self, txt: str):
self.v: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
c = A("c")
a = B("a")
b = A("b")
h = B("h")
d = B("d")
i = A("i")
c.v = a
c.s = b
a.r... | h | c | a | c | b | x | x | x | b | c | a | c | h | x | x | x | 6 | 12 | 2 | 4 | 1 |
4,688 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
a = A("a")
f = B("f")
i = B("i")
d = B("d")
c = A("c")
e = B("e")
a.q = c
f.v = d
i.v = f
d.v = f
c.q = a
e.v = d
assert c.q.q.q.q.q.q.... | c" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
a = A("a")
f = B("f")
i = B("i")
d = B("d")
c = A("c")
e = B("e")
a.q = c
f.v = d
i.v = f
d.v = f
c.q = a
e.v = d
assert c.q.q.q.q.q.q.... | c | a | c | a | c | a | c | x | c | a | c | a | c | a | c | x | 6 | 6 | 2 | 6 | 5 |
4,689 | 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.q: A = None
self.txt = txt
a = A("a")
g = B("g")
f = B("f")
d = A("d")
j = B("j")
a.v = f
g.w = d
g.q = d
f.w = a
f.q = a
d.v = j
j.w = a... | f" | 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.q: A = None
self.txt = txt
a = A("a")
g = B("g")
f = B("f")
d = A("d")
j = B("j")
a.v = f
g.w = d
g.q = d
f.w = a
f.q = a
d.v = j
j.w = a... | d | j | a | f | a | f | x | x | f | a | f | a | j | d | x | x | 5 | 5 | 2 | 5 | 2 |
4,690 | class A:
def __init__(self, txt: str):
self.v: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: B = None
self.txt = txt
j = A("j")
e = B("e")
h = A("h")
f = B("f")
g = A("g")
i = A("i")
b = A("b")
j.v = f
... | f" | class A:
def __init__(self, txt: str):
self.v: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: B = None
self.txt = txt
j = A("j")
e = B("e")
h = A("h")
f = B("f")
g = A("g")
i = A("i")
b = A("b")
j.v = f
... | j | f | e | f | e | f | e | f | f | e | f | e | f | e | f | j | 7 | 9 | 2 | 7 | 5 |
4,691 | class A:
def __init__(self, txt: str):
self.w: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.s: A = None
self.txt = txt
h = A("h")
e = B("e")
c = A("c")
d = B("d")
j = B("j")
i = B("i")
h.w = e
h.v = d
e.y... | d" | class A:
def __init__(self, txt: str):
self.w: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.s: A = None
self.txt = txt
h = A("h")
e = B("e")
c = A("c")
d = B("d")
j = B("j")
i = B("i")
h.w = e
h.v = d
e.y... | i | j | e | d | h | d | x | x | d | h | d | e | j | i | x | x | 6 | 12 | 2 | 5 | 1 |
4,692 | class A:
def __init__(self, txt: str):
self.z: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
b = A("b")
f = B("f")
c = B("c")
e = A("e")
b.z = e
b.o = c
f.y = c
c.y = f
e.z = b
e.o = c
assert c.y.y.y.y.t... | c" | class A:
def __init__(self, txt: str):
self.z: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
b = A("b")
f = B("f")
c = B("c")
e = A("e")
b.z = e
b.o = c
f.y = c
c.y = f
e.z = b
e.o = c
assert c.y.y.y.y.t... | c | f | c | f | c | x | x | x | c | f | c | f | c | x | x | x | 4 | 6 | 2 | 4 | 3 |
4,693 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.r: B = None
self.txt = txt
a = A("a")
f = B("f")
e = A("e")
c = A("c")
i = B("i")
g = B("g")
a.t = g
f.s = a
f.r = i
e.t = i
c.t = i
i.s ... | a" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.r: B = None
self.txt = txt
a = A("a")
f = B("f")
e = A("e")
c = A("c")
i = B("i")
g = B("g")
a.t = g
f.s = a
f.r = i
e.t = i
c.t = i
i.s ... | c | i | g | a | g | a | x | x | a | g | a | g | i | c | x | x | 6 | 9 | 2 | 5 | 2 |
4,694 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.r: B = None
self.txt = txt
d = A("d")
a = B("a")
e = A("e")
j = B("j")
i = A("i")
d.p = e
a.o = e
a.r = j
e.p = d
j.o = d
j.r = a
i.p = d... | e" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.r: B = None
self.txt = txt
d = A("d")
a = B("a")
e = A("e")
j = B("j")
i = A("i")
d.p = e
a.o = e
a.r = j
e.p = d
j.o = d
j.r = a
i.p = d... | a | j | a | e | d | e | x | x | e | d | e | a | j | a | x | x | 5 | 7 | 2 | 5 | 2 |
4,695 | class A:
def __init__(self, txt: str):
self.p: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.x: B = None
self.txt = txt
h = A("h")
i = B("i")
a = A("a")
g = A("g")
j = B("j")
d = B("d")
h.p = d
h.z = a
i.r... | d" | class A:
def __init__(self, txt: str):
self.p: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.x: B = None
self.txt = txt
h = A("h")
i = B("i")
a = A("a")
g = A("g")
j = B("j")
d = B("d")
h.p = d
h.z = a
i.r... | d | i | j | i | d | i | d | x | d | i | d | i | j | i | d | x | 6 | 10 | 2 | 6 | 4 |
4,696 | 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.w: B = None
self.txt = txt
i = A("i")
h = B("h")
f = B("f")
i.r = f
h.r = f
h.w = f
f.r = h
f.w = h
assert i.r.r.r.txt == " | f" | 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.w: B = None
self.txt = txt
i = A("i")
h = B("h")
f = B("f")
i.r = f
h.r = f
h.w = f
f.r = h
f.w = h
assert i.r.r.r.txt == "f" | i | f | h | f | x | x | x | x | f | h | f | i | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,697 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.q: B = None
self.txt = txt
d = A("d")
h = B("h")
j = B("j")
d.x = h
h.y = j
h.q = j
j.y = h
j.q = h
assert h.q.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.y: B = None
self.q: B = None
self.txt = txt
d = A("d")
h = B("h")
j = B("j")
d.x = h
h.y = j
h.q = j
j.y = h
j.q = h
assert h.q.q.q.txt == "j" | h | j | h | j | x | x | x | x | j | h | j | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,698 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
g = A("g")
f = B("f")
j = B("j")
c = B("c")
b = A("b")
d = A("d")
a = A("a")
g.v = a
f.r = b
j.r = b
c.r = b
b.v = a
d.v = a
a.v = g
as... | g" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
g = A("g")
f = B("f")
j = B("j")
c = B("c")
b = A("b")
d = A("d")
a = A("a")
g.v = a
f.r = b
j.r = b
c.r = b
b.v = a
d.v = a
a.v = g
as... | c | b | a | g | a | g | a | g | g | a | g | a | g | a | b | c | 7 | 7 | 2 | 7 | 4 |
4,699 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.w: A = None
self.txt = txt
b = A("b")
f = B("f")
d = B("d")
b.r = f
f.y = d
f.w = b
d.y = f
d.w = b
assert d.y.w.r.txt == " | f" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.w: A = None
self.txt = txt
b = A("b")
f = B("f")
d = B("d")
b.r = f
f.y = d
f.w = b
d.y = f
d.w = b
assert d.y.w.r.txt == "f" | d | f | b | f | x | x | x | x | f | b | f | d | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.