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