id int64 0 30k | prompt stringlengths 265 1.96k | answer stringclasses 10
values | pythoncode stringlengths 267 1.96k | depth0 stringclasses 10
values | depth1 stringclasses 10
values | depth2 stringclasses 10
values | depth3 stringclasses 10
values | depth4 stringclasses 11
values | depth5 stringclasses 11
values | depth6 stringclasses 11
values | depth7 stringclasses 11
values | depthn0 stringclasses 10
values | depthn1 stringclasses 10
values | depthn2 stringclasses 10
values | depthn3 stringclasses 10
values | depthn4 stringclasses 11
values | depthn5 stringclasses 11
values | depthn6 stringclasses 11
values | depthn7 stringclasses 11
values | num_nodes int64 3 7 | num_edges int64 3 30 | num_classes int64 2 7 | path_length int64 3 7 | num_cycle int64 0 6 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3,800 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
b = A("b")
j = B("j")
g = A("g")
e = A("e")
h = A("h")
b.t = j
j.t = b
g.t = j
e.t = j
h.t = j
assert j.t.t.t.t.txt == " | j" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
b = A("b")
j = B("j")
g = A("g")
e = A("e")
h = A("h")
b.t = j
j.t = b
g.t = j
e.t = j
h.t = j
assert j.t.t.t.t.txt == "j" | j | b | j | b | j | x | x | x | j | b | j | b | j | x | x | x | 5 | 5 | 2 | 4 | 3 |
3,801 | class A:
def __init__(self, txt: str):
self.y: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
c = A("c")
a = B("a")
i = A("i")
f = B("f")
b = B("b")
c.y = i
c.u = i
a.r = b
i.y = c
i.u = c
f.r = a
b.r = f... | c" | class A:
def __init__(self, txt: str):
self.y: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
c = A("c")
a = B("a")
i = A("i")
f = B("f")
b = B("b")
c.y = i
c.u = i
a.r = b
i.y = c
i.u = c
f.r = a
b.r = f... | i | c | i | c | x | x | x | x | c | i | c | i | x | x | x | x | 5 | 5 | 2 | 3 | 2 |
3,802 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.s: A = None
self.txt = txt
d = A("d")
g = B("g")
a = B("a")
f = A("f")
h = B("h")
d.t = a
g.p = a
g.s = f
a.p = h
a.s = f
f.t = h
h.p = g... | f" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.s: A = None
self.txt = txt
d = A("d")
g = B("g")
a = B("a")
f = A("f")
h = B("h")
d.t = a
g.p = a
g.s = f
a.p = h
a.s = f
f.t = h
h.p = g... | a | f | h | f | x | x | x | x | f | h | f | a | x | x | x | x | 5 | 8 | 2 | 3 | 1 |
3,803 | 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.r: A = None
self.txt = txt
f = A("f")
d = B("d")
a = B("a")
i = A("i")
j = A("j")
c = B("c")
g = A("g")
f.v = d
f.y = a
d.r = j
a.r = g
i... | j" | 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.r: A = None
self.txt = txt
f = A("f")
d = B("d")
a = B("a")
i = A("i")
j = A("j")
c = B("c")
g = A("g")
f.v = d
f.y = a
d.r = j
a.r = g
i... | i | c | g | c | g | d | j | x | j | d | g | c | g | c | i | x | 7 | 10 | 2 | 6 | 2 |
3,804 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
d = A("d")
a = B("a")
f = B("f")
j = B("j")
b = A("b")
e = B("e")
i = B("i")
d.s = a
a.t = j
f.t = e
j.t = e
b.s = f
e.t = j
i.t = f
as... | e" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
d = A("d")
a = B("a")
f = B("f")
j = B("j")
b = A("b")
e = B("e")
i = B("i")
d.s = a
a.t = j
f.t = e
j.t = e
b.s = f
e.t = j
i.t = f
as... | d | a | j | e | x | x | x | x | e | j | a | d | x | x | x | x | 7 | 7 | 2 | 3 | 0 |
3,805 | 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.o: B = None
self.u: B = None
self.txt = txt
a = A("a")
b = B("b")
i = B("i")
g = A("g")
a.q = b
a.v = b
b.o = i
b.u = i
i.o = b
i... | i" | 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.o: B = None
self.u: B = None
self.txt = txt
a = A("a")
b = B("b")
i = B("i")
g = A("g")
a.q = b
a.v = b
b.o = i
b.u = i
i.o = b
i... | a | b | i | b | i | x | x | x | i | b | i | b | a | x | x | x | 4 | 5 | 2 | 4 | 2 |
3,806 | class A:
def __init__(self, txt: str):
self.y: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.txt = txt
i = A("i")
d = B("d")
a = B("a")
e = B("e")
h = A("h")
i.y = h
i.o = a
d.u = e
d.q = ... | e" | class A:
def __init__(self, txt: str):
self.y: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.txt = txt
i = A("i")
d = B("d")
a = B("a")
e = B("e")
h = A("h")
i.y = h
i.o = a
d.u = e
d.q = ... | d | e | a | e | a | e | x | x | e | a | e | a | e | d | x | x | 5 | 7 | 2 | 5 | 3 |
3,807 | class A:
def __init__(self, txt: str):
self.x: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
b = B("b")
g = A("g")
f = A("f")
d = A("d")
e = B("e")
j.x = g
j.s = d
b.y = g
g.x = j
g.s = d
f.x ... | d" | class A:
def __init__(self, txt: str):
self.x: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
b = B("b")
g = A("g")
f = A("f")
d = A("d")
e = B("e")
j.x = g
j.s = d
b.y = g
g.x = j
g.s = d
f.x ... | g | j | g | j | d | x | x | x | d | j | g | j | g | x | x | x | 6 | 9 | 2 | 4 | 2 |
3,808 | class A:
def __init__(self, txt: str):
self.y: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.z: B = None
self.txt = txt
b = A("b")
f = B("f")
g = A("g")
h = B("h")
i = A("i")
a = B("a")
b.y = i
b.z = i
f.t... | i" | class A:
def __init__(self, txt: str):
self.y: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.z: B = None
self.txt = txt
b = A("b")
f = B("f")
g = A("g")
h = B("h")
i = A("i")
a = B("a")
b.y = i
b.z = i
f.t... | g | b | i | b | i | x | x | x | i | b | i | b | g | x | x | x | 6 | 9 | 2 | 4 | 2 |
3,809 | class A:
def __init__(self, txt: str):
self.s: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
b = A("b")
f = B("f")
g = B("g")
d = A("d")
b.s = d
b.y = d
f.x = d
g.x = d
d.s = b
d.y = b
assert f.x.s.s.s.t... | b" | class A:
def __init__(self, txt: str):
self.s: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
b = A("b")
f = B("f")
g = B("g")
d = A("d")
b.s = d
b.y = d
f.x = d
g.x = d
d.s = b
d.y = b
assert f.x.s.s.s.t... | f | d | b | d | b | x | x | x | b | d | b | d | f | x | x | x | 4 | 4 | 2 | 4 | 2 |
3,810 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.u: A = None
self.txt = txt
e = A("e")
f = B("f")
g = B("g")
c = A("c")
b = A("b")
e.t = b
f.x = b
f.u = c
g.x = c
g.u = c
c.t = b
b.t = e... | b" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.u: A = None
self.txt = txt
e = A("e")
f = B("f")
g = B("g")
c = A("c")
b = A("b")
e.t = b
f.x = b
f.u = c
g.x = c
g.u = c
c.t = b
b.t = e... | e | b | e | b | e | b | x | x | b | e | b | e | b | e | x | x | 5 | 6 | 2 | 5 | 4 |
3,811 | class A:
def __init__(self, txt: str):
self.t: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.u: A = None
self.txt = txt
d = A("d")
j = B("j")
c = A("c")
e = B("e")
h = B("h")
i = B("i")
d.t = c
d.x = h
j.t... | h" | class A:
def __init__(self, txt: str):
self.t: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.u: A = None
self.txt = txt
d = A("d")
j = B("j")
c = A("c")
e = B("e")
h = B("h")
i = B("i")
d.t = c
d.x = h
j.t... | e | c | e | c | d | h | x | x | h | d | c | e | c | e | x | x | 6 | 10 | 2 | 5 | 2 |
3,812 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
d = A("d")
a = B("a")
e = A("e")
f = B("f")
h = B("h")
d.u = e
a.t = d
e.u = d
f.t = e
h.t = d
assert a.t.u.u.txt == " | d" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
d = A("d")
a = B("a")
e = A("e")
f = B("f")
h = B("h")
d.u = e
a.t = d
e.u = d
f.t = e
h.t = d
assert a.t.u.u.txt == "d" | a | d | e | d | x | x | x | x | d | e | d | a | x | x | x | x | 5 | 5 | 2 | 3 | 1 |
3,813 | class A:
def __init__(self, txt: str):
self.u: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
j = A("j")
b = B("b")
i = A("i")
g = A("g")
e = B("e")
j.u = g
j.v = e
b.v = e
i.u = j
i.v = b
g.u = i
g.v = b... | b" | class A:
def __init__(self, txt: str):
self.u: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
j = A("j")
b = B("b")
i = A("i")
g = A("g")
e = B("e")
j.u = g
j.v = e
b.v = e
i.u = j
i.v = b
g.u = i
g.v = b... | i | b | e | b | e | b | x | x | b | e | b | e | b | i | x | x | 5 | 8 | 2 | 5 | 3 |
3,814 | class A:
def __init__(self, txt: str):
self.w: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.t: A = None
self.txt = txt
b = A("b")
i = B("i")
e = B("e")
g = A("g")
b.w = i
b.z = g
i.w = b
i.t = b
e.w = b
e... | b" | class A:
def __init__(self, txt: str):
self.w: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.t: A = None
self.txt = txt
b = A("b")
i = B("i")
e = B("e")
g = A("g")
b.w = i
b.z = g
i.w = b
i.t = b
e.w = b
e... | g | b | i | b | x | x | x | x | b | i | b | g | x | x | x | x | 4 | 7 | 2 | 3 | 1 |
3,815 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: A = None
self.txt = txt
a = A("a")
j = B("j")
g = B("g")
h = A("h")
d = B("d")
b = A("b")
e = A("e")
a.w = g
j.v = b
j.s = a
g.v = a
g... | a" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: A = None
self.txt = txt
a = A("a")
j = B("j")
g = B("g")
h = A("h")
d = B("d")
b = A("b")
e = A("e")
a.w = g
j.v = b
j.s = a
g.v = a
g... | g | a | g | a | g | a | g | a | a | g | a | g | a | g | a | g | 7 | 8 | 2 | 7 | 6 |
3,816 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
i = A("i")
d = B("d")
g = A("g")
b = A("b")
e = A("e")
c = A("c")
j = B("j")
i.p = c
d.w = j
g.p = e
b.p = e
e.p = i
c.p = b
j.w = d
as... | b" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
i = A("i")
d = B("d")
g = A("g")
b = A("b")
e = A("e")
c = A("c")
j = B("j")
i.p = c
d.w = j
g.p = e
b.p = e
e.p = i
c.p = b
j.w = d
as... | b | e | i | c | b | x | x | x | b | c | i | e | b | x | x | x | 7 | 7 | 2 | 4 | 1 |
3,817 | class A:
def __init__(self, txt: str):
self.y: B = None
self.z: 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")
c = A("c")
g.y = f
g.z = f
f.w = g
c.y = f
c.z = f
assert c.z.w.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: B = None
self.z: 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")
c = A("c")
g.y = f
g.z = f
f.w = g
c.y = f
c.z = f
assert c.z.w.z.txt == "f" | c | f | g | f | x | x | x | x | f | g | f | c | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
3,818 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.w: B = None
self.txt = txt
c = A("c")
b = B("b")
d = B("d")
a = A("a")
g = B("g")
c.o = a
b.r = c
b.w = g
d.r = a
d.w = b
a.o = c
g.r = c... | a" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.w: B = None
self.txt = txt
c = A("c")
b = B("b")
d = B("d")
a = A("a")
g = B("g")
c.o = a
b.r = c
b.w = g
d.r = a
d.w = b
a.o = c
g.r = c... | d | a | c | a | c | a | x | x | a | c | a | c | a | d | x | x | 5 | 8 | 2 | 5 | 3 |
3,819 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.p: A = None
self.txt = txt
b = A("b")
j = B("j")
h = B("h")
c = B("c")
d = A("d")
b.v = h
j.o = d
j.p = d
h.o = d
h.p = b
c.o = b
c.p = d... | h" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.p: A = None
self.txt = txt
b = A("b")
j = B("j")
h = B("h")
c = B("c")
d = A("d")
b.v = h
j.o = d
j.p = d
h.o = d
h.p = b
c.o = b
c.p = d... | c | d | h | b | h | x | x | x | h | b | h | d | c | x | x | x | 5 | 7 | 2 | 4 | 1 |
3,820 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.z: A = None
self.txt = txt
b = A("b")
c = B("c")
i = A("i")
e = A("e")
j = B("j")
h = B("h")
b.z = i
c.r = h
c.z = b
i.z = b
e.z = b
j.r ... | i" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.z: A = None
self.txt = txt
b = A("b")
c = B("c")
i = A("i")
e = A("e")
j = B("j")
h = B("h")
b.z = i
c.r = h
c.z = b
i.z = b
e.z = b
j.r ... | e | b | i | b | i | x | x | x | i | b | i | b | e | x | x | x | 6 | 9 | 2 | 4 | 2 |
3,821 | class A:
def __init__(self, txt: str):
self.z: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.x: B = None
self.txt = txt
a = A("a")
d = B("d")
b = A("b")
h = B("h")
a.z = h
a.t = b
d.q = b
d.x = h
b.z = h
b... | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.x: B = None
self.txt = txt
a = A("a")
d = B("d")
b = A("b")
h = B("h")
a.z = h
a.t = b
d.q = b
d.x = h
b.z = h
b... | h | a | h | a | x | x | x | x | a | h | a | h | x | x | x | x | 4 | 8 | 2 | 3 | 2 |
3,822 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.y: A = None
self.txt = txt
j = A("j")
g = B("g")
e = B("e")
f = B("f")
b = A("b")
c = B("c")
j.y = b
g.p = b
g.y = b
e.p = j
e.y = j
f.p ... | b" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.y: A = None
self.txt = txt
j = A("j")
g = B("g")
e = B("e")
f = B("f")
b = A("b")
c = B("c")
j.y = b
g.p = b
g.y = b
e.p = j
e.y = j
f.p ... | e | j | b | j | b | x | x | x | b | j | b | j | e | x | x | x | 6 | 7 | 2 | 4 | 2 |
3,823 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
i = A("i")
e = B("e")
h = A("h")
i.p = h
e.x = h
h.p = i
assert i.p.p.p.txt == " | h" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
i = A("i")
e = B("e")
h = A("h")
i.p = h
e.x = h
h.p = i
assert i.p.p.p.txt == "h" | i | h | i | h | x | x | x | x | h | i | h | i | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
3,824 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.s: A = None
self.txt = txt
b = A("b")
c = B("c")
i = B("i")
g = A("g")
b.x = g
c.t = b
c.s = g
i.t = b
i.s = g
g.x = b
assert i.t.x.x.txt... | b" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.s: A = None
self.txt = txt
b = A("b")
c = B("c")
i = B("i")
g = A("g")
b.x = g
c.t = b
c.s = g
i.t = b
i.s = g
g.x = b
assert i.t.x.x.txt... | i | b | g | b | x | x | x | x | b | g | b | i | x | x | x | x | 4 | 6 | 2 | 3 | 1 |
3,825 | 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.txt = txt
g = A("g")
i = B("i")
j = B("j")
b = B("b")
f = A("f")
d = B("d")
g.p = j
i.z = f
j.z = f
b.z = f
f.p = i
d.z = g
assert f.p.z.p.z.p.tx... | i" | 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.txt = txt
g = A("g")
i = B("i")
j = B("j")
b = B("b")
f = A("f")
d = B("d")
g.p = j
i.z = f
j.z = f
b.z = f
f.p = i
d.z = g
assert f.p.z.p.z.p.tx... | f | i | f | i | f | i | x | x | i | f | i | f | i | f | x | x | 6 | 6 | 2 | 5 | 4 |
3,826 | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
d = A("d")
e = B("e")
i = A("i")
c = B("c")
j = B("j")
d.y = c
d.q = i
e.t = j
i.y = c
i.q = d
c.t = j
j.t = c... | c" | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
d = A("d")
e = B("e")
i = A("i")
c = B("c")
j = B("j")
d.y = c
d.q = i
e.t = j
i.y = c
i.q = d
c.t = j
j.t = c... | i | c | j | c | j | c | x | x | c | j | c | j | c | i | x | x | 5 | 7 | 2 | 5 | 3 |
3,827 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.q: A = None
self.txt = txt
i = A("i")
b = B("b")
f = B("f")
g = A("g")
a = B("a")
i.x = f
b.p = i
b.q = g
f.p = g
f.q = i
g.x = a
a.p = g... | i" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.q: A = None
self.txt = txt
i = A("i")
b = B("b")
f = B("f")
g = A("g")
a = B("a")
i.x = f
b.p = i
b.q = g
f.p = g
f.q = i
g.x = a
a.p = g... | b | i | f | i | x | x | x | x | i | f | i | b | x | x | x | x | 5 | 7 | 2 | 3 | 1 |
3,828 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
d = A("d")
a = B("a")
i = A("i")
g = B("g")
j = B("j")
f = A("f")
d.y = i
a.q = d
i.y = f
g.q = d
j.q = f
f.y = i
assert f.y.y.y.y.txt ... | f" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
d = A("d")
a = B("a")
i = A("i")
g = B("g")
j = B("j")
f = A("f")
d.y = i
a.q = d
i.y = f
g.q = d
j.q = f
f.y = i
assert f.y.y.y.y.txt ... | f | i | f | i | f | x | x | x | f | i | f | i | f | x | x | x | 6 | 6 | 2 | 4 | 3 |
3,829 | class A:
def __init__(self, txt: str):
self.y: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: A = None
self.txt = txt
a = A("a")
j = B("j")
c = A("c")
b = B("b")
a.y = j
a.t = c
j.x = a
j.s = a
c.y = b
c... | j" | class A:
def __init__(self, txt: str):
self.y: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: A = None
self.txt = txt
a = A("a")
j = B("j")
c = A("c")
b = B("b")
a.y = j
a.t = c
j.x = a
j.s = a
c.y = b
c... | a | c | a | j | x | x | x | x | j | a | c | a | x | x | x | x | 4 | 6 | 2 | 3 | 1 |
3,830 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.w: A = None
self.txt = txt
h = A("h")
c = B("c")
b = B("b")
f = A("f")
h.t = c
c.q = f
c.w = h
b.q = f
b.w = f
f.t = b
assert c.w.t.q.txt... | f" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.w: A = None
self.txt = txt
h = A("h")
c = B("c")
b = B("b")
f = A("f")
h.t = c
c.q = f
c.w = h
b.q = f
b.w = f
f.t = b
assert c.w.t.q.txt... | c | h | c | f | x | x | x | x | f | c | h | c | x | x | x | x | 4 | 5 | 2 | 3 | 1 |
3,831 | class A:
def __init__(self, txt: str):
self.o: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.v: B = None
self.txt = txt
g = A("g")
i = B("i")
a = B("a")
j = A("j")
g.o = a
g.q = a
i.q = a
i.v = a
a.q = i
a... | i" | class A:
def __init__(self, txt: str):
self.o: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.v: B = None
self.txt = txt
g = A("g")
i = B("i")
a = B("a")
j = A("j")
g.o = a
g.q = a
i.q = a
i.v = a
a.q = i
a... | a | i | a | i | x | x | x | x | i | a | i | a | x | x | x | x | 4 | 5 | 2 | 3 | 2 |
3,832 | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
a = A("a")
e = B("e")
f = A("f")
d = B("d")
a.y = d
a.q = d
e.y = a
f.y = d
f.q = d
d.y = a
assert f.y.y.y.y.t... | a" | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
a = A("a")
e = B("e")
f = A("f")
d = B("d")
a.y = d
a.q = d
e.y = a
f.y = d
f.q = d
d.y = a
assert f.y.y.y.y.t... | f | d | a | d | a | x | x | x | a | d | a | d | f | x | x | x | 4 | 4 | 2 | 4 | 2 |
3,833 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
g = A("g")
j = B("j")
b = A("b")
g.v = b
j.v = b
b.v = g
assert g.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.v: A = None
self.txt = txt
g = A("g")
j = B("j")
b = A("b")
g.v = b
j.v = b
b.v = g
assert g.v.v.v.txt == "b" | g | b | g | b | x | x | x | x | b | g | b | g | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
3,834 | class A:
def __init__(self, txt: str):
self.t: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.t: B = None
self.txt = txt
d = A("d")
j = B("j")
f = A("f")
e = A("e")
c = B("c")
d.t = c
d.x = c
j.v = f
j.t = ... | j" | class A:
def __init__(self, txt: str):
self.t: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.t: B = None
self.txt = txt
d = A("d")
j = B("j")
f = A("f")
e = A("e")
c = B("c")
d.t = c
d.x = c
j.v = f
j.t = ... | f | c | d | c | j | x | x | x | j | c | d | c | f | x | x | x | 5 | 9 | 2 | 4 | 1 |
3,835 | class A:
def __init__(self, txt: str):
self.t: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
d = A("d")
b = B("b")
j = B("j")
e = B("e")
a = B("a")
c = A("c")
g = B("g")
d.t = b
d.p = j
b.v = j
j.v = b
e... | j" | class A:
def __init__(self, txt: str):
self.t: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
d = A("d")
b = B("b")
j = B("j")
e = B("e")
a = B("a")
c = A("c")
g = B("g")
d.t = b
d.p = j
b.v = j
j.v = b
e... | d | j | b | j | x | x | x | x | j | b | j | d | x | x | x | x | 7 | 9 | 2 | 3 | 1 |
3,836 | 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.q: A = None
self.txt = txt
e = A("e")
h = B("h")
d = B("d")
i = B("i")
g = A("g")
b = B("b")
f = A("f")
e.p = g
h.s = e
h.q = g
d.s = f
d... | f" | 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.q: A = None
self.txt = txt
e = A("e")
h = B("h")
d = B("d")
i = B("i")
g = A("g")
b = B("b")
f = A("f")
e.p = g
h.s = e
h.q = g
d.s = f
d... | e | g | f | g | f | x | x | x | f | g | f | g | e | x | x | x | 7 | 11 | 2 | 4 | 2 |
3,837 | 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.s: B = None
self.r: A = None
self.txt = txt
e = A("e")
a = B("a")
c = A("c")
g = B("g")
i = A("i")
h = A("h")
f = A("f")
e.v = g
... | g" | 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.s: B = None
self.r: A = None
self.txt = txt
e = A("e")
a = B("a")
c = A("c")
g = B("g")
i = A("i")
h = A("h")
f = A("f")
e.v = g
... | c | g | a | g | a | g | a | g | g | a | g | a | g | a | g | c | 7 | 12 | 2 | 7 | 5 |
3,838 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
j = A("j")
d = B("d")
g = B("g")
j.r = d
d.o = j
g.o = j
assert j.r.o.r.txt == " | d" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
j = A("j")
d = B("d")
g = B("g")
j.r = d
d.o = j
g.o = j
assert j.r.o.r.txt == "d" | j | d | j | d | x | x | x | x | d | j | d | j | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
3,839 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
c = B("c")
f = B("f")
e = B("e")
a.q = f
c.z = a
f.z = a
e.z = a
assert a.q.z.q.txt == " | f" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
c = B("c")
f = B("f")
e = B("e")
a.q = f
c.z = a
f.z = a
e.z = a
assert a.q.z.q.txt == "f" | a | f | a | f | x | x | x | x | f | a | f | a | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
3,840 | class A:
def __init__(self, txt: str):
self.v: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
b = A("b")
e = B("e")
i = B("i")
j = A("j")
c = B("c")
b.v = c
b.w = j
e.y = b
i.y = j
j.v = e
j.w = b
c.y = j... | c" | class A:
def __init__(self, txt: str):
self.v: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
b = A("b")
e = B("e")
i = B("i")
j = A("j")
c = B("c")
b.v = c
b.w = j
e.y = b
i.y = j
j.v = e
j.w = b
c.y = j... | c | j | b | j | b | c | x | x | c | b | j | b | j | c | x | x | 5 | 7 | 2 | 5 | 3 |
3,841 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.p: B = None
self.txt = txt
i = A("i")
f = B("f")
d = A("d")
g = B("g")
e = A("e")
b = A("b")
i.o = g
f.z = i
f.p = g
d.o = g
g.z = d
g.p ... | g" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.p: B = None
self.txt = txt
i = A("i")
f = B("f")
d = A("d")
g = B("g")
e = A("e")
b = A("b")
i.o = g
f.z = i
f.p = g
d.o = g
g.z = d
g.p ... | i | g | f | g | x | x | x | x | g | f | g | i | x | x | x | x | 6 | 8 | 2 | 3 | 1 |
3,842 | class A:
def __init__(self, txt: str):
self.t: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.u: A = None
self.txt = txt
e = A("e")
g = B("g")
d = B("d")
f = B("f")
a = A("a")
j = B("j")
e.t = a
e.s = a
g.o... | a" | class A:
def __init__(self, txt: str):
self.t: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.u: A = None
self.txt = txt
e = A("e")
g = B("g")
d = B("d")
f = B("f")
a = A("a")
j = B("j")
e.t = a
e.s = a
g.o... | g | a | e | a | e | a | x | x | a | e | a | e | a | g | x | x | 6 | 10 | 2 | 5 | 3 |
3,843 | class A:
def __init__(self, txt: str):
self.y: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
d = B("d")
f = B("f")
h = A("h")
b = B("b")
a.y = h
a.r = h
d.x = f
f.x = b
h.y = a
h.r = a
b.x = d... | h" | class A:
def __init__(self, txt: str):
self.y: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
d = B("d")
f = B("f")
h = A("h")
b = B("b")
a.y = h
a.r = h
d.x = f
f.x = b
h.y = a
h.r = a
b.x = d... | a | h | a | h | a | h | x | x | h | a | h | a | h | a | x | x | 5 | 5 | 2 | 5 | 4 |
3,844 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.z: B = None
self.txt = txt
d = A("d")
a = B("a")
f = A("f")
e = B("e")
g = A("g")
d.w = e
a.o = e
a.z = e
f.w = a
e.o = a
e.z = a
g.w = e... | e" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.z: B = None
self.txt = txt
d = A("d")
a = B("a")
f = A("f")
e = B("e")
g = A("g")
d.w = e
a.o = e
a.z = e
f.w = a
e.o = a
e.z = a
g.w = e... | d | e | a | e | a | e | x | x | e | a | e | a | e | d | x | x | 5 | 5 | 2 | 5 | 3 |
3,845 | class A:
def __init__(self, txt: str):
self.q: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.r: B = None
self.txt = txt
h = A("h")
f = B("f")
g = B("g")
j = A("j")
i = B("i")
d = A("d")
h.q = j
h.x = d
f.v... | d" | class A:
def __init__(self, txt: str):
self.q: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.r: B = None
self.txt = txt
h = A("h")
f = B("f")
g = B("g")
j = A("j")
i = B("i")
d = A("d")
h.q = j
h.x = d
f.v... | d | h | j | d | x | x | x | x | d | j | h | d | x | x | x | x | 6 | 11 | 2 | 3 | 1 |
3,846 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
b = A("b")
e = B("e")
i = B("i")
g = A("g")
j = B("j")
h = A("h")
b.q = j
e.w = j
i.w = j
g.q = i
j.w = i
h.q = j
assert j.w.w.w.w.w.w.... | j" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
b = A("b")
e = B("e")
i = B("i")
g = A("g")
j = B("j")
h = A("h")
b.q = j
e.w = j
i.w = j
g.q = i
j.w = i
h.q = j
assert j.w.w.w.w.w.w.... | j | i | j | i | j | i | j | x | j | i | j | i | j | i | j | x | 6 | 6 | 2 | 6 | 5 |
3,847 | class A:
def __init__(self, txt: str):
self.o: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
d = A("d")
c = B("c")
f = B("f")
i = A("i")
h = B("h")
d.o = c
d.w = c
c.t = i
f.t = d
i.o = c
i.w = h
h.t = i... | i" | class A:
def __init__(self, txt: str):
self.o: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
d = A("d")
c = B("c")
f = B("f")
i = A("i")
h = B("h")
d.o = c
d.w = c
c.t = i
f.t = d
i.o = c
i.w = h
h.t = i... | f | d | c | i | x | x | x | x | i | c | d | f | x | x | x | x | 5 | 6 | 2 | 3 | 0 |
3,848 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.r: A = None
self.txt = txt
b = A("b")
e = B("e")
g = B("g")
f = A("f")
b.z = e
e.v = f
e.r = b
g.v = f
g.r = f
f.z = g
assert f.z.v.z.txt... | g" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.r: A = None
self.txt = txt
b = A("b")
e = B("e")
g = B("g")
f = A("f")
b.z = e
e.v = f
e.r = b
g.v = f
g.r = f
f.z = g
assert f.z.v.z.txt... | f | g | f | g | x | x | x | x | g | f | g | f | x | x | x | x | 4 | 5 | 2 | 3 | 2 |
3,849 | 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.v: B = None
self.txt = txt
j = A("j")
b = B("b")
a = A("a")
h = B("h")
d = B("d")
j.z = b
j.q = h
b.v = h
a.z = b
a.q = b
h.v = d
d.v = b... | h" | 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.v: B = None
self.txt = txt
j = A("j")
b = B("b")
a = A("a")
h = B("h")
d = B("d")
j.z = b
j.q = h
b.v = h
a.z = b
a.q = b
h.v = d
d.v = b... | h | d | b | h | x | x | x | x | h | b | d | h | x | x | x | x | 5 | 6 | 2 | 3 | 1 |
3,850 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.q: A = None
self.txt = txt
d = A("d")
f = B("f")
e = A("e")
b = A("b")
d.p = e
f.v = b
f.q = b
e.p = d
b.p = e
assert e.p.p.p.p.txt == " | e" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.q: A = None
self.txt = txt
d = A("d")
f = B("f")
e = A("e")
b = A("b")
d.p = e
f.v = b
f.q = b
e.p = d
b.p = e
assert e.p.p.p.p.txt == "e... | e | d | e | d | e | x | x | x | e | d | e | d | e | x | x | x | 4 | 4 | 2 | 4 | 3 |
3,851 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.u: B = None
self.txt = txt
e = A("e")
c = B("c")
h = A("h")
d = B("d")
b = B("b")
g = A("g")
a = B("a")
e.q = h
c.r = d
c.u = b
h.q = g
d... | d" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.u: B = None
self.txt = txt
e = A("e")
c = B("c")
h = A("h")
d = B("d")
b = B("b")
g = A("g")
a = B("a")
e.q = h
c.r = d
c.u = b
h.q = g
d... | c | b | c | d | a | d | a | d | d | a | d | a | d | c | b | c | 7 | 10 | 2 | 7 | 4 |
3,852 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
h = A("h")
d = B("d")
g = B("g")
b = B("b")
h.x = d
d.s = h
g.s = h
b.s = h
assert b.s.x.s.txt == " | h" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
h = A("h")
d = B("d")
g = B("g")
b = B("b")
h.x = d
d.s = h
g.s = h
b.s = h
assert b.s.x.s.txt == "h" | b | h | d | h | x | x | x | x | h | d | h | b | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
3,853 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.p: A = None
self.txt = txt
j = A("j")
e = B("e")
i = B("i")
c = B("c")
a = B("a")
h = B("h")
j.u = c
e.s = j
e.p = j
i.s = j
i.p = j
c.s ... | c" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.p: A = None
self.txt = txt
j = A("j")
e = B("e")
i = B("i")
c = B("c")
a = B("a")
h = B("h")
j.u = c
e.s = j
e.p = j
i.s = j
i.p = j
c.s ... | h | j | c | j | c | j | c | x | c | j | c | j | c | j | h | x | 6 | 6 | 2 | 6 | 4 |
3,854 | 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.q: A = None
self.txt = txt
j = A("j")
c = B("c")
b = A("b")
d = B("d")
e = B("e")
f = A("f")
i = B("i")
j.t = c
c.z = j
c.q = f
b.t = e
d... | 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.q: A = None
self.txt = txt
j = A("j")
c = B("c")
b = A("b")
d = B("d")
e = B("e")
f = A("f")
i = B("i")
j.t = c
c.z = j
c.q = f
b.t = e
d... | c | f | i | j | x | x | x | x | j | i | f | c | x | x | x | x | 7 | 9 | 2 | 3 | 0 |
3,855 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.q: B = None
self.txt = txt
j = A("j")
b = B("b")
c = A("c")
f = B("f")
j.t = f
b.s = f
b.q = f
c.t = b
f.s = b
f.q = b
assert c.t.q.s.txt... | b" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.q: B = None
self.txt = txt
j = A("j")
b = B("b")
c = A("c")
f = B("f")
j.t = f
b.s = f
b.q = f
c.t = b
f.s = b
f.q = b
assert c.t.q.s.txt... | c | b | f | b | x | x | x | x | b | f | b | c | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
3,856 | class A:
def __init__(self, txt: str):
self.t: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.u: A = None
self.txt = txt
a = A("a")
e = B("e")
i = B("i")
b = A("b")
a.t = i
a.s = i
e.z = a
e.u = a
i.z = b
i... | e" | class A:
def __init__(self, txt: str):
self.t: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.u: A = None
self.txt = txt
a = A("a")
e = B("e")
i = B("i")
b = A("b")
a.t = i
a.s = i
e.z = a
e.u = a
i.z = b
i... | e | a | i | b | e | x | x | x | e | b | i | a | e | x | x | x | 4 | 4 | 2 | 4 | 1 |
3,857 | 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.y: B = None
self.txt = txt
c = A("c")
h = B("h")
d = A("d")
i = B("i")
j = A("j")
c.s = h
h.u = i
h.y = i
d.s = i
i.u = h
i.y = h
j.s = h... | i" | 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.y: B = None
self.txt = txt
c = A("c")
h = B("h")
d = A("d")
i = B("i")
j = A("j")
c.s = h
h.u = i
h.y = i
d.s = i
i.u = h
i.y = h
j.s = h... | j | h | i | h | i | x | x | x | i | h | i | h | j | x | x | x | 5 | 5 | 2 | 4 | 2 |
3,858 | class A:
def __init__(self, txt: str):
self.u: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: A = None
self.txt = txt
i = A("i")
c = B("c")
a = A("a")
b = B("b")
i.u = a
i.w = c
c.w = b
c.q = a
a.u = i
a... | b" | class A:
def __init__(self, txt: str):
self.u: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: A = None
self.txt = txt
i = A("i")
c = B("c")
a = A("a")
b = B("b")
i.u = a
i.w = c
c.w = b
c.q = a
a.u = i
a... | b | i | a | b | x | x | x | x | b | a | i | b | x | x | x | x | 4 | 8 | 2 | 3 | 1 |
3,859 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
j = A("j")
g = B("g")
d = B("d")
b = A("b")
j.t = b
g.u = j
d.u = b
b.t = j
assert b.t.t.t.t.txt == " | b" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
j = A("j")
g = B("g")
d = B("d")
b = A("b")
j.t = b
g.u = j
d.u = b
b.t = j
assert b.t.t.t.t.txt == "b" | b | j | b | j | b | x | x | x | b | j | b | j | b | x | x | x | 4 | 4 | 2 | 4 | 3 |
3,860 | 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.w: A = None
self.o: A = None
self.txt = txt
i = A("i")
g = B("g")
h = B("h")
f = A("f")
i.v = h
i.s = g
g.w = i
g.o = f
h.w = i
h... | h" | 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.w: A = None
self.o: A = None
self.txt = txt
i = A("i")
g = B("g")
h = B("h")
f = A("f")
i.v = h
i.s = g
g.w = i
g.o = f
h.w = i
h... | f | h | i | h | x | x | x | x | h | i | h | f | x | x | x | x | 4 | 6 | 2 | 3 | 1 |
3,861 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
g = A("g")
i = B("i")
f = A("f")
a = A("a")
j = B("j")
d = B("d")
b = A("b")
g.r = d
i.p = d
f.r = d
a.r = i
j.p = i
d.p = i
b.r = d
as... | i" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
g = A("g")
i = B("i")
f = A("f")
a = A("a")
j = B("j")
d = B("d")
b = A("b")
g.r = d
i.p = d
f.r = d
a.r = i
j.p = i
d.p = i
b.r = d
as... | i | d | i | d | i | x | x | x | i | d | i | d | i | x | x | x | 7 | 7 | 2 | 4 | 3 |
3,862 | class A:
def __init__(self, txt: str):
self.p: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
j = A("j")
c = B("c")
g = B("g")
d = A("d")
a = B("a")
j.p = c
j.u = d
c.v = d
g.v = j
d.p = a
d.u = j
a.v = d... | j" | class A:
def __init__(self, txt: str):
self.p: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
j = A("j")
c = B("c")
g = B("g")
d = A("d")
a = B("a")
j.p = c
j.u = d
c.v = d
g.v = j
d.p = a
d.u = j
a.v = d... | g | j | d | j | x | x | x | x | j | d | j | g | x | x | x | x | 5 | 7 | 2 | 3 | 1 |
3,863 | class A:
def __init__(self, txt: str):
self.z: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
b = A("b")
h = B("h")
g = B("g")
c = B("c")
b.z = g
b.t = h
h.z = b
g.z = b
c.z = b
assert h.z.t.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
b = A("b")
h = B("h")
g = B("g")
c = B("c")
b.z = g
b.t = h
h.z = b
g.z = b
c.z = b
assert h.z.t.z.txt == "b" | h | b | h | b | x | x | x | x | b | h | b | h | x | x | x | x | 4 | 5 | 2 | 3 | 2 |
3,864 | class A:
def __init__(self, txt: str):
self.q: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.u: A = None
self.txt = txt
f = A("f")
a = B("a")
g = A("g")
e = B("e")
b = B("b")
d = B("d")
c = A("c")
f.q = g
... | g" | class A:
def __init__(self, txt: str):
self.q: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.u: A = None
self.txt = txt
f = A("f")
a = B("a")
g = A("g")
e = B("e")
b = B("b")
d = B("d")
c = A("c")
f.q = g
... | g | c | g | c | g | x | x | x | g | c | g | c | g | x | x | x | 7 | 10 | 2 | 4 | 3 |
3,865 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.w: B = None
self.txt = txt
f = A("f")
a = B("a")
g = B("g")
j = A("j")
e = B("e")
c = B("c")
d = A("d")
f.s = d
a.p = c
a.w = e
g.p = c
g... | c" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.w: B = None
self.txt = txt
f = A("f")
a = B("a")
g = B("g")
j = A("j")
e = B("e")
c = B("c")
d = A("d")
f.s = d
a.p = c
a.w = e
g.p = c
g... | a | c | e | c | e | c | x | x | c | e | c | e | c | a | x | x | 7 | 10 | 2 | 5 | 3 |
3,866 | class A:
def __init__(self, txt: str):
self.s: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.x: A = None
self.txt = txt
h = A("h")
b = B("b")
d = A("d")
h.s = d
h.y = d
b.y = h
b.x = h
d.s = h
d.y = h
asse... | h" | class A:
def __init__(self, txt: str):
self.s: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.x: A = None
self.txt = txt
h = A("h")
b = B("b")
d = A("d")
h.s = d
h.y = d
b.y = h
b.x = h
d.s = h
d.y = h
asse... | d | h | d | h | x | x | x | x | h | d | h | d | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
3,867 | 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: B = None
self.r: B = None
self.txt = txt
b = A("b")
j = B("j")
c = B("c")
b.z = c
b.q = c
j.p = c
j.r = c
c.p = j
c.r = j
asse... | j" | 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: B = None
self.r: B = None
self.txt = txt
b = A("b")
j = B("j")
c = B("c")
b.z = c
b.q = c
j.p = c
j.r = c
c.p = j
c.r = j
asse... | c | j | c | j | x | x | x | x | j | c | j | c | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
3,868 | 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")
f = B("f")
b = A("b")
d = A("d")
c = A("c")
g = B("g")
a = B("a")
h.r = b
f.v = h
b.r = h
d.r = c
c.r = h
g.v = h
a.v = b
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")
f = B("f")
b = A("b")
d = A("d")
c = A("c")
g = B("g")
a = B("a")
h.r = b
f.v = h
b.r = h
d.r = c
c.r = h
g.v = h
a.v = b
as... | c | h | b | h | b | h | x | x | h | b | h | b | h | c | x | x | 7 | 7 | 2 | 5 | 3 |
3,869 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: 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")
a = A("a")
g.z = a
g.y = f
f.w = g
a.z = g
a.y = f
assert g.z.z.z.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: 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")
a = A("a")
g.z = a
g.y = f
f.w = g
a.z = g
a.y = f
assert g.z.z.z.txt == "a" | g | a | g | a | x | x | x | x | a | g | a | g | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
3,870 | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.u: A = None
self.txt = txt
g = A("g")
a = B("a")
c = B("c")
h = A("h")
i = A("i")
j = B("j")
g.y = c
g.q = i
a.r... | c" | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.u: A = None
self.txt = txt
g = A("g")
a = B("a")
c = B("c")
h = A("h")
i = A("i")
j = B("j")
g.y = c
g.q = i
a.r... | i | g | i | g | c | x | x | x | c | g | i | g | i | x | x | x | 6 | 12 | 2 | 4 | 2 |
3,871 | class A:
def __init__(self, txt: str):
self.w: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
a = A("a")
j = B("j")
e = A("e")
h = B("h")
a.w = e
a.v = j
j.u = a
e.w = a
e.v = h
h.u = e
assert a.w.v.u.txt... | e" | class A:
def __init__(self, txt: str):
self.w: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
a = A("a")
j = B("j")
e = A("e")
h = B("h")
a.w = e
a.v = j
j.u = a
e.w = a
e.v = h
h.u = e
assert a.w.v.u.txt... | a | e | h | e | x | x | x | x | e | h | e | a | x | x | x | x | 4 | 6 | 2 | 3 | 1 |
3,872 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.p: A = None
self.txt = txt
c = A("c")
i = B("i")
d = B("d")
a = B("a")
g = B("g")
c.o = a
i.v = c
i.p = c
d.v = c
d.p = c
a.v = c
a.p = c... | c" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.p: A = None
self.txt = txt
c = A("c")
i = B("i")
d = B("d")
a = B("a")
g = B("g")
c.o = a
i.v = c
i.p = c
d.v = c
d.p = c
a.v = c
a.p = c... | i | c | a | c | a | c | x | x | c | a | c | a | c | i | x | x | 5 | 5 | 2 | 5 | 3 |
3,873 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.q: A = None
self.txt = txt
h = A("h")
j = B("j")
a = B("a")
g = A("g")
i = A("i")
d = A("d")
e = A("e")
h.x = d
j.x = a
j.q = d
a.x = j
a... | g" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.q: A = None
self.txt = txt
h = A("h")
j = B("j")
a = B("a")
g = A("g")
i = A("i")
d = A("d")
e = A("e")
h.x = d
j.x = a
j.q = d
a.x = j
a... | g | i | g | i | g | x | x | x | g | i | g | i | g | x | x | x | 7 | 9 | 2 | 4 | 3 |
3,874 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
h = A("h")
c = B("c")
b = A("b")
j = A("j")
i = B("i")
h.s = j
c.z = b
c.v = b
b.s = h
j.s = h
i.z = h
i.v = h... | h" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
h = A("h")
c = B("c")
b = A("b")
j = A("j")
i = B("i")
h.s = j
c.z = b
c.v = b
b.s = h
j.s = h
i.z = h
i.v = h... | j | h | j | h | j | h | x | x | h | j | h | j | h | j | x | x | 5 | 5 | 2 | 5 | 4 |
3,875 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
f = B("f")
c = A("c")
a.q = f
f.z = a
c.q = f
assert a.q.z.q.txt == " | f" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
f = B("f")
c = A("c")
a.q = f
f.z = a
c.q = f
assert a.q.z.q.txt == "f" | a | f | a | f | x | x | x | x | f | a | f | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
3,876 | class A:
def __init__(self, txt: str):
self.o: A = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.v: A = None
self.txt = txt
e = A("e")
g = B("g")
i = A("i")
a = B("a")
e.o = i
e.w = i
g.u = e
g.v = i
i.o = e
i... | i" | class A:
def __init__(self, txt: str):
self.o: A = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.v: A = None
self.txt = txt
e = A("e")
g = B("g")
i = A("i")
a = B("a")
e.o = i
e.w = i
g.u = e
g.v = i
i.o = e
i... | i | e | i | e | i | x | x | x | i | e | i | e | i | x | x | x | 4 | 5 | 2 | 4 | 3 |
3,877 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
e = A("e")
d = B("d")
a = B("a")
f = A("f")
j = A("j")
e.q = a
d.q = a
a.q = d
f.q = a
j.q = d
assert d.q.q.q.txt == " | a" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
e = A("e")
d = B("d")
a = B("a")
f = A("f")
j = A("j")
e.q = a
d.q = a
a.q = d
f.q = a
j.q = d
assert d.q.q.q.txt == "a" | d | a | d | a | x | x | x | x | a | d | a | d | x | x | x | x | 5 | 5 | 2 | 3 | 2 |
3,878 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.x: A = None
self.txt = txt
a = A("a")
j = B("j")
c = A("c")
i = A("i")
g = B("g")
a.y = i
j.u = g
j.x = a
c.y = i
i.y = c
g.u = j
g.x = i... | i" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.x: A = None
self.txt = txt
a = A("a")
j = B("j")
c = A("c")
i = A("i")
g = B("g")
a.y = i
j.u = g
j.x = a
c.y = i
i.y = c
g.u = j
g.x = i... | j | a | i | c | i | x | x | x | i | c | i | a | j | x | x | x | 5 | 7 | 2 | 4 | 1 |
3,879 | class A:
def __init__(self, txt: str):
self.y: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
d = B("d")
e = B("e")
b = B("b")
j = A("j")
a.y = j
a.z = d
d.x = e
e.x = b
b.x = d
j.y = a
j.z = d... | d" | class A:
def __init__(self, txt: str):
self.y: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
d = B("d")
e = B("e")
b = B("b")
j = A("j")
a.y = j
a.z = d
d.x = e
e.x = b
b.x = d
j.y = a
j.z = d... | d | e | b | d | x | x | x | x | d | b | e | d | x | x | x | x | 5 | 7 | 2 | 3 | 1 |
3,880 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
a = A("a")
b = B("b")
i = B("i")
e = A("e")
a.z = e
b.w = i
i.w = b
e.z = a
assert b.w.w.w.w.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: B = None
self.txt = txt
a = A("a")
b = B("b")
i = B("i")
e = A("e")
a.z = e
b.w = i
i.w = b
e.z = a
assert b.w.w.w.w.txt == "b" | b | i | b | i | b | x | x | x | b | i | b | i | b | x | x | x | 4 | 4 | 2 | 4 | 3 |
3,881 | class A:
def __init__(self, txt: str):
self.u: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
h = A("h")
a = B("a")
g = A("g")
b = B("b")
f = A("f")
d = A("d")
h.u = b
h.o = g
a.y = g
g.u = a
g.o = f
b.y ... | g" | class A:
def __init__(self, txt: str):
self.u: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
h = A("h")
a = B("a")
g = A("g")
b = B("b")
f = A("f")
d = A("d")
h.u = b
h.o = g
a.y = g
g.u = a
g.o = f
b.y ... | b | g | a | g | a | g | x | x | g | a | g | a | g | b | x | x | 6 | 10 | 2 | 5 | 3 |
3,882 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
b = A("b")
e = B("e")
a = B("a")
i = A("i")
g = B("g")
b.y = i
e.o = i
a.o = i
i.y = b
g.o = i
assert i.y.y.y.txt == " | b" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
b = A("b")
e = B("e")
a = B("a")
i = A("i")
g = B("g")
b.y = i
e.o = i
a.o = i
i.y = b
g.o = i
assert i.y.y.y.txt == "b" | i | b | i | b | x | x | x | x | b | i | b | i | x | x | x | x | 5 | 5 | 2 | 3 | 2 |
3,883 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
a = A("a")
e = B("e")
i = B("i")
j = B("j")
c = B("c")
d = A("d")
a.q = c
e.x = a
i.x = a
j.x = a
c.x = a
d.q = e
assert c.x.q.x.q.x.tx... | a" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
a = A("a")
e = B("e")
i = B("i")
j = B("j")
c = B("c")
d = A("d")
a.q = c
e.x = a
i.x = a
j.x = a
c.x = a
d.q = e
assert c.x.q.x.q.x.tx... | c | a | c | a | c | a | x | x | a | c | a | c | a | c | x | x | 6 | 6 | 2 | 5 | 4 |
3,884 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.p: A = None
self.txt = txt
j = A("j")
g = B("g")
a = A("a")
d = A("d")
i = B("i")
j.t = a
g.w = a
g.p = d
a.t = d
d.t = a
i.w = j
i.p = d... | d" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.p: A = None
self.txt = txt
j = A("j")
g = B("g")
a = A("a")
d = A("d")
i = B("i")
j.t = a
g.w = a
g.p = d
a.t = d
d.t = a
i.w = j
i.p = d... | g | d | a | d | x | x | x | x | d | a | d | g | x | x | x | x | 5 | 7 | 2 | 3 | 1 |
3,885 | class A:
def __init__(self, txt: str):
self.r: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.t: B = None
self.txt = txt
d = A("d")
h = B("h")
g = A("g")
i = B("i")
d.r = g
d.x = g
h.s = d
h.t = i
g.r = d
g... | h" | class A:
def __init__(self, txt: str):
self.r: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.t: B = None
self.txt = txt
d = A("d")
h = B("h")
g = A("g")
i = B("i")
d.r = g
d.x = g
h.s = d
h.t = i
g.r = d
g... | i | h | i | h | x | x | x | x | h | i | h | i | x | x | x | x | 4 | 6 | 2 | 3 | 2 |
3,886 | class A:
def __init__(self, txt: str):
self.y: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.q: B = None
self.txt = txt
b = A("b")
j = B("j")
e = A("e")
g = B("g")
b.y = e
b.u = j
j.r = b
j.q = g
e.y = b
e... | g" | class A:
def __init__(self, txt: str):
self.y: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.q: B = None
self.txt = txt
b = A("b")
j = B("j")
e = A("e")
g = B("g")
b.y = e
b.u = j
j.r = b
j.q = g
e.y = b
e... | g | e | g | j | g | x | x | x | g | j | g | e | g | x | x | x | 4 | 8 | 2 | 4 | 2 |
3,887 | class A:
def __init__(self, txt: str):
self.y: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
h = A("h")
b = B("b")
i = B("i")
h.y = i
h.s = b
b.u = i
i.u = b
assert h.s.u.u.txt == " | b" | class A:
def __init__(self, txt: str):
self.y: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
h = A("h")
b = B("b")
i = B("i")
h.y = i
h.s = b
b.u = i
i.u = b
assert h.s.u.u.txt == "b" | h | b | i | b | x | x | x | x | b | i | b | h | x | x | x | x | 3 | 4 | 2 | 3 | 1 |
3,888 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.r: A = None
self.txt = txt
e = A("e")
i = B("i")
a = B("a")
g = B("g")
d = B("d")
b = B("b")
e.q = b
i.z = e
i.r = e
a.z = e
a.r = e
g.z ... | b" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.r: A = None
self.txt = txt
e = A("e")
i = B("i")
a = B("a")
g = B("g")
d = B("d")
b = B("b")
e.q = b
i.z = e
i.r = e
a.z = e
a.r = e
g.z ... | g | e | b | e | b | x | x | x | b | e | b | e | g | x | x | x | 6 | 6 | 2 | 4 | 2 |
3,889 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.p: A = None
self.txt = txt
a = A("a")
j = B("j")
b = B("b")
a.q = j
j.z = a
j.p = a
b.z = a
b.p = a
assert a.q.z.q.txt == " | j" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.p: A = None
self.txt = txt
a = A("a")
j = B("j")
b = B("b")
a.q = j
j.z = a
j.p = a
b.z = a
b.p = a
assert a.q.z.q.txt == "j" | a | j | a | j | x | x | x | x | j | a | j | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
3,890 | 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.w: A = None
self.txt = txt
a = A("a")
i = B("i")
j = B("j")
d = B("d")
a.x = i
i.u = a
i.w = a
j.u = a
j.w = a
d.u = a
d.w = a
assert a.x... | a" | 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.w: A = None
self.txt = txt
a = A("a")
i = B("i")
j = B("j")
d = B("d")
a.x = i
i.u = a
i.w = a
j.u = a
j.w = a
d.u = a
d.w = a
assert a.x... | a | i | a | i | a | x | x | x | a | i | a | i | a | x | x | x | 4 | 4 | 2 | 4 | 3 |
3,891 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
b = A("b")
g = B("g")
i = A("i")
b.s = i
g.z = b
i.s = b
assert b.s.s.s.txt == " | i" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
b = A("b")
g = B("g")
i = A("i")
b.s = i
g.z = b
i.s = b
assert b.s.s.s.txt == "i" | b | i | b | i | x | x | x | x | i | b | i | b | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
3,892 | 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.o: A = None
self.txt = txt
h = A("h")
c = B("c")
d = A("d")
g = B("g")
b = A("b")
f = A("f")
a = A("a")
h.w = d
h.p = g
c.o = a
d.w = f
d... | b" | 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.o: A = None
self.txt = txt
h = A("h")
c = B("c")
d = A("d")
g = B("g")
b = A("b")
f = A("f")
a = A("a")
h.w = d
h.p = g
c.o = a
d.w = f
d... | h | d | f | a | c | a | b | x | b | a | c | a | f | d | h | x | 7 | 12 | 2 | 6 | 1 |
3,893 | class A:
def __init__(self, txt: str):
self.z: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
i = A("i")
g = B("g")
j = B("j")
b = B("b")
h = A("h")
e = B("e")
i.z = g
i.x = h
g.z = h
j.z = i
b.z = i
h.z ... | h" | class A:
def __init__(self, txt: str):
self.z: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
i = A("i")
g = B("g")
j = B("j")
b = B("b")
h = A("h")
e = B("e")
i.z = g
i.x = h
g.z = h
j.z = i
b.z = i
h.z ... | i | h | j | i | h | i | h | x | h | i | h | i | j | h | i | x | 6 | 8 | 2 | 6 | 4 |
3,894 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.y: B = None
self.txt = txt
h = A("h")
i = B("i")
b = B("b")
g = A("g")
f = B("f")
h.t = g
i.p = b
i.y = f
b.p = f
b.y = i
g.t = h
f.p = i... | g" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.y: B = None
self.txt = txt
h = A("h")
i = B("i")
b = B("b")
g = A("g")
f = B("f")
h.t = g
i.p = b
i.y = f
b.p = f
b.y = i
g.t = h
f.p = i... | h | g | h | g | h | g | x | x | g | h | g | h | g | h | x | x | 5 | 8 | 2 | 5 | 4 |
3,895 | 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.u: A = None
self.x: A = None
self.txt = txt
d = A("d")
a = B("a")
c = B("c")
h = A("h")
b = B("b")
j = A("j")
f = B("f")
d.t = a
... | j" | 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.u: A = None
self.x: A = None
self.txt = txt
d = A("d")
a = B("a")
c = B("c")
h = A("h")
b = B("b")
j = A("j")
f = B("f")
d.t = a
... | d | a | d | b | j | x | x | x | j | b | d | a | d | x | x | x | 7 | 12 | 2 | 4 | 1 |
3,896 | class A:
def __init__(self, txt: str):
self.z: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
d = A("d")
a = B("a")
c = A("c")
b = A("b")
h = B("h")
d.z = a
d.r = a
a.z = b
a.y = ... | b" | class A:
def __init__(self, txt: str):
self.z: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
d = A("d")
a = B("a")
c = A("c")
b = A("b")
h = B("h")
d.z = a
d.r = a
a.z = b
a.y = ... | d | a | b | h | b | x | x | x | b | h | b | a | d | x | x | x | 5 | 8 | 2 | 4 | 1 |
3,897 | 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.p: B = None
self.o: A = None
self.txt = txt
i = A("i")
e = B("e")
g = A("g")
h = B("h")
d = A("d")
i.s = h
i.z = e
e.p = h
e.o = ... | h" | 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.p: B = None
self.o: A = None
self.txt = txt
i = A("i")
e = B("e")
g = A("g")
h = B("h")
d = A("d")
i.s = h
i.z = e
e.p = h
e.o = ... | d | e | i | h | x | x | x | x | h | i | e | d | x | x | x | x | 5 | 9 | 2 | 3 | 0 |
3,898 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.t: B = None
self.txt = txt
f = A("f")
b = B("b")
a = B("a")
c = A("c")
f.z = c
b.z = a
b.t = a
a.z = b
a.t = b
c.z = f
assert b.z.t.z.z.t... | b" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.t: B = None
self.txt = txt
f = A("f")
b = B("b")
a = B("a")
c = A("c")
f.z = c
b.z = a
b.t = a
a.z = b
a.t = b
c.z = f
assert b.z.t.z.z.t... | b | a | b | a | b | x | x | x | b | a | b | a | b | x | x | x | 4 | 4 | 2 | 4 | 3 |
3,899 | class A:
def __init__(self, txt: str):
self.o: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.p: B = None
self.txt = txt
a = A("a")
c = B("c")
e = A("e")
i = B("i")
g = B("g")
d = A("d")
a.o = e
a.p = d
c.y... | e" | class A:
def __init__(self, txt: str):
self.o: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.p: B = None
self.txt = txt
a = A("a")
c = B("c")
e = A("e")
i = B("i")
g = B("g")
d = A("d")
a.o = e
a.p = d
c.y... | e | a | d | e | x | x | x | x | e | d | a | e | x | x | x | x | 6 | 10 | 2 | 3 | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.