id int64 0 30k | prompt stringlengths 265 1.96k | answer stringclasses 10
values | pythoncode stringlengths 267 1.96k | depth0 stringclasses 10
values | depth1 stringclasses 10
values | depth2 stringclasses 10
values | depth3 stringclasses 10
values | depth4 stringclasses 11
values | depth5 stringclasses 11
values | depth6 stringclasses 11
values | depth7 stringclasses 11
values | depthn0 stringclasses 10
values | depthn1 stringclasses 10
values | depthn2 stringclasses 10
values | depthn3 stringclasses 10
values | depthn4 stringclasses 11
values | depthn5 stringclasses 11
values | depthn6 stringclasses 11
values | depthn7 stringclasses 11
values | num_nodes int64 3 7 | num_edges int64 3 30 | num_classes int64 2 7 | path_length int64 3 7 | num_cycle int64 0 6 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4,900 | class A:
def __init__(self, txt: str):
self.u: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
c = A("c")
g = B("g")
d = A("d")
i = B("i")
h = B("h")
a = A("a")
c.u = a
c.z = d
g.o = i
d.u = a
d.z = c
i.o ... | a" | class A:
def __init__(self, txt: str):
self.u: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
c = A("c")
g = B("g")
d = A("d")
i = B("i")
h = B("h")
a = A("a")
c.u = a
c.z = d
g.o = i
d.u = a
d.z = c
i.o ... | c | d | c | a | x | x | x | x | a | c | d | c | x | x | x | x | 6 | 9 | 2 | 3 | 1 |
4,901 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
a = A("a")
i = B("i")
c = B("c")
a.v = i
i.u = a
c.u = a
assert i.u.v.u.txt == " | a" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
a = A("a")
i = B("i")
c = B("c")
a.v = i
i.u = a
c.u = a
assert i.u.v.u.txt == "a" | i | a | i | a | x | x | x | x | a | i | a | i | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,902 | class A:
def __init__(self, txt: str):
self.p: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.z: A = None
self.txt = txt
a = A("a")
i = B("i")
e = B("e")
h = A("h")
a.p = h
a.x = e
i.o = a
i.z = a
e.o = a
e... | e" | class A:
def __init__(self, txt: str):
self.p: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.z: A = None
self.txt = txt
a = A("a")
i = B("i")
e = B("e")
h = A("h")
a.p = h
a.x = e
i.o = a
i.z = a
e.o = a
e... | a | e | a | e | x | x | x | x | e | a | e | a | x | x | x | x | 4 | 7 | 2 | 3 | 2 |
4,903 | 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.v: B = None
self.txt = txt
a = A("a")
g = B("g")
c = B("c")
b = B("b")
d = A("d")
f = B("f")
i = B("i")
a.p = d
g.x = a
g.v = c
c.x = d
c... | d" | 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.v: B = None
self.txt = txt
a = A("a")
g = B("g")
c = B("c")
b = B("b")
d = A("d")
f = B("f")
i = B("i")
a.p = d
g.x = a
g.v = c
c.x = d
c... | a | d | a | d | a | d | x | x | d | a | d | a | d | a | x | x | 7 | 12 | 2 | 5 | 4 |
4,904 | class A:
def __init__(self, txt: str):
self.r: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
a = A("a")
h = B("h")
j = B("j")
f = A("f")
a.r = j
a.t = h
h.r = a
h.u = a
j.r = a
j... | h" | class A:
def __init__(self, txt: str):
self.r: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
a = A("a")
h = B("h")
j = B("j")
f = A("f")
a.r = j
a.t = h
h.r = a
h.u = a
j.r = a
j... | a | h | a | h | x | x | x | x | h | a | h | a | x | x | x | x | 4 | 7 | 2 | 3 | 2 |
4,905 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.u: B = None
self.txt = txt
j = A("j")
e = B("e")
b = A("b")
i = B("i")
j.q = b
e.v = j
e.u = i
b.q = j
i.v = j
i.u = e
assert e.v.q.q.txt... | j" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.u: B = None
self.txt = txt
j = A("j")
e = B("e")
b = A("b")
i = B("i")
j.q = b
e.v = j
e.u = i
b.q = j
i.v = j
i.u = e
assert e.v.q.q.txt... | e | j | b | j | x | x | x | x | j | b | j | e | x | x | x | x | 4 | 6 | 2 | 3 | 1 |
4,906 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
e = A("e")
g = B("g")
a = B("a")
f = A("f")
c = A("c")
e.r = f
g.p = e
a.p = f
f.r = c
c.r = e
assert c.r.r.r.r.r.txt == " | f" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
e = A("e")
g = B("g")
a = B("a")
f = A("f")
c = A("c")
e.r = f
g.p = e
a.p = f
f.r = c
c.r = e
assert c.r.r.r.r.r.txt == "f" | c | e | f | c | e | f | x | x | f | e | c | f | e | c | x | x | 5 | 5 | 2 | 5 | 3 |
4,907 | class A:
def __init__(self, txt: str):
self.p: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.r: A = None
self.txt = txt
d = A("d")
a = B("a")
h = B("h")
j = A("j")
e = B("e")
d.p = j
d.r = e
a.o = j
a.r = ... | j" | class A:
def __init__(self, txt: str):
self.p: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.r: A = None
self.txt = txt
d = A("d")
a = B("a")
h = B("h")
j = A("j")
e = B("e")
d.p = j
d.r = e
a.o = j
a.r = ... | a | j | d | j | x | x | x | x | j | d | j | a | x | x | x | x | 5 | 9 | 2 | 3 | 1 |
4,908 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.q: A = None
self.txt = txt
d = A("d")
f = B("f")
e = B("e")
a = B("a")
c = B("c")
d.y = a
f.t = c
f.q = d
e.t = a
e.q = d
a.t = c
a.q = d... | a" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.q: A = None
self.txt = txt
d = A("d")
f = B("f")
e = B("e")
a = B("a")
c = B("c")
d.y = a
f.t = c
f.q = d
e.t = a
e.q = d
a.t = c
a.q = d... | f | c | a | d | a | x | x | x | a | d | a | c | f | x | x | x | 5 | 9 | 2 | 4 | 1 |
4,909 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
e = A("e")
f = B("f")
g = A("g")
b = B("b")
a = B("a")
i = B("i")
e.y = g
f.q = b
g.y = e
b.q = f
a.q = f
i.q = f
assert g.y.y.y.y.y.y.... | g" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
e = A("e")
f = B("f")
g = A("g")
b = B("b")
a = B("a")
i = B("i")
e.y = g
f.q = b
g.y = e
b.q = f
a.q = f
i.q = f
assert g.y.y.y.y.y.y.... | g | e | g | e | g | e | g | x | g | e | g | e | g | e | g | x | 6 | 6 | 2 | 6 | 5 |
4,910 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.r: B = None
self.txt = txt
b = A("b")
e = B("e")
c = A("c")
h = B("h")
i = A("i")
j = A("j")
d = B("d")
b.o = c
e.q = c
e.r = d
c.o = b
h... | c" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.r: B = None
self.txt = txt
b = A("b")
e = B("e")
c = A("c")
h = B("h")
i = A("i")
j = A("j")
d = B("d")
b.o = c
e.q = c
e.r = d
c.o = b
h... | b | c | b | c | b | c | x | x | c | b | c | b | c | b | x | x | 7 | 10 | 2 | 5 | 4 |
4,911 | 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.t: B = None
self.txt = txt
d = A("d")
f = B("f")
j = B("j")
d.r = f
d.q = f
f.t = j
j.t = f
assert j.t.t.t.txt == " | f" | 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.t: B = None
self.txt = txt
d = A("d")
f = B("f")
j = B("j")
d.r = f
d.q = f
f.t = j
j.t = f
assert j.t.t.t.txt == "f" | j | f | j | f | x | x | x | x | f | j | f | j | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,912 | class A:
def __init__(self, txt: str):
self.y: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
a = A("a")
c = B("c")
f = A("f")
j = A("j")
g = A("g")
e = A("e")
a.y = c
a.o = f
c.x = f
f.y = c
f.o = e
j.y ... | f" | class A:
def __init__(self, txt: str):
self.y: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
a = A("a")
c = B("c")
f = A("f")
j = A("j")
g = A("g")
e = A("e")
a.y = c
a.o = f
c.x = f
f.y = c
f.o = e
j.y ... | g | f | e | g | f | x | x | x | f | g | e | f | g | x | x | x | 6 | 11 | 2 | 4 | 2 |
4,913 | class A:
def __init__(self, txt: str):
self.r: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.v: B = None
self.txt = txt
i = A("i")
a = B("a")
j = A("j")
h = A("h")
c = B("c")
b = A("b")
g = A("g")
i.r = g
... | a" | class A:
def __init__(self, txt: str):
self.r: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.v: B = None
self.txt = txt
i = A("i")
a = B("a")
j = A("j")
h = A("h")
c = B("c")
b = A("b")
g = A("g")
i.r = g
... | c | i | c | a | x | x | x | x | a | c | i | c | x | x | x | x | 7 | 14 | 2 | 3 | 1 |
4,914 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.u: B = None
self.txt = txt
i = A("i")
g = B("g")
c = A("c")
f = A("f")
j = B("j")
i.x = c
g.w = j
g.u = j
c.x = i
f.x = i
j.w = g
j.u = g... | g" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.u: B = None
self.txt = txt
i = A("i")
g = B("g")
c = A("c")
f = A("f")
j = B("j")
i.x = c
g.w = j
g.u = j
c.x = i
f.x = i
j.w = g
j.u = g... | j | g | j | g | j | g | x | x | g | j | g | j | g | j | x | x | 5 | 5 | 2 | 5 | 4 |
4,915 | 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.q: A = None
self.txt = txt
d = A("d")
j = B("j")
c = B("c")
b = B("b")
a = A("a")
e = A("e")
d.t = b
d.q = j
j.q = d
c.q = d
b.q = e
a.t ... | b" | 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.q: A = None
self.txt = txt
d = A("d")
j = B("j")
c = B("c")
b = B("b")
a = A("a")
e = A("e")
d.t = b
d.q = j
j.q = d
c.q = d
b.q = e
a.t ... | j | d | b | e | c | d | b | x | b | d | c | e | b | d | j | x | 6 | 7 | 2 | 6 | 2 |
4,916 | 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.p: B = None
self.txt = txt
e = A("e")
j = B("j")
b = B("b")
d = B("d")
i = A("i")
g = B("g")
c = A("c")
e.v = j
j.y = d
j.p = d
b.y = j
b... | d" | 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.p: B = None
self.txt = txt
e = A("e")
j = B("j")
b = B("b")
d = B("d")
i = A("i")
g = B("g")
c = A("c")
e.v = j
j.y = d
j.p = d
b.y = j
b... | g | b | d | g | j | d | x | x | d | j | g | d | b | g | x | x | 7 | 10 | 2 | 5 | 2 |
4,917 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.v: B = None
self.txt = txt
d = A("d")
f = B("f")
j = B("j")
g = A("g")
c = A("c")
b = B("b")
d.r = g
f.u = b
f.v = b
j.u = f
j.v = f
g.r ... | f" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.v: B = None
self.txt = txt
d = A("d")
f = B("f")
j = B("j")
g = A("g")
c = A("c")
b = B("b")
d.r = g
f.u = b
f.v = b
j.u = f
j.v = f
g.r ... | b | f | b | j | f | x | x | x | f | j | b | f | b | x | x | x | 6 | 7 | 2 | 4 | 2 |
4,918 | class A:
def __init__(self, txt: str):
self.y: 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
h = A("h")
g = B("g")
d = B("d")
c = B("c")
a = A("a")
h.y = a
h.w = c
g.w = d
g.q = ... | h" | class A:
def __init__(self, txt: str):
self.y: 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
h = A("h")
g = B("g")
d = B("d")
c = B("c")
a = A("a")
h.y = a
h.w = c
g.w = d
g.q = ... | g | d | c | g | d | h | x | x | h | d | g | c | d | g | x | x | 5 | 10 | 2 | 5 | 2 |
4,919 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: A = None
self.txt = txt
a = A("a")
f = B("f")
i = B("i")
a.y = f
f.w = i
f.q = a
i.w = f
i.q = a
assert i.q.y.q.txt == " | a" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: A = None
self.txt = txt
a = A("a")
f = B("f")
i = B("i")
a.y = f
f.w = i
f.q = a
i.w = f
i.q = a
assert i.q.y.q.txt == "a" | i | a | f | a | x | x | x | x | a | f | a | i | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
4,920 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.v: A = None
self.txt = txt
a = A("a")
i = B("i")
f = A("f")
j = B("j")
a.y = i
i.w = j
i.v = f
f.y = j
j.w = i
j.v = a
assert i.v.y.w.w.t... | j" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.v: A = None
self.txt = txt
a = A("a")
i = B("i")
f = A("f")
j = B("j")
a.y = i
i.w = j
i.v = f
f.y = j
j.w = i
j.v = a
assert i.v.y.w.w.t... | i | f | j | i | j | x | x | x | j | i | j | f | i | x | x | x | 4 | 6 | 2 | 4 | 2 |
4,921 | class A:
def __init__(self, txt: str):
self.q: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.r: B = None
self.txt = txt
e = A("e")
a = B("a")
f = A("f")
g = B("g")
d = B("d")
c = A("c")
e.q = c
e.p = f
a.s... | e" | class A:
def __init__(self, txt: str):
self.q: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.r: B = None
self.txt = txt
e = A("e")
a = B("a")
f = A("f")
g = B("g")
d = B("d")
c = A("c")
e.q = c
e.p = f
a.s... | f | e | f | e | x | x | x | x | e | f | e | f | x | x | x | x | 6 | 9 | 2 | 3 | 2 |
4,922 | class A:
def __init__(self, txt: str):
self.o: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.w: A = None
self.txt = txt
h = A("h")
b = B("b")
f = B("f")
h.o = f
h.v = b
b.p = h
b.w = h
f.p = h
f.w = h
asse... | h" | class A:
def __init__(self, txt: str):
self.o: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.w: A = None
self.txt = txt
h = A("h")
b = B("b")
f = B("f")
h.o = f
h.v = b
b.p = h
b.w = h
f.p = h
f.w = h
asse... | f | h | f | h | x | x | x | x | h | f | h | f | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
4,923 | class A:
def __init__(self, txt: str):
self.q: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
a = B("a")
i = A("i")
j.q = i
j.r = a
a.y = j
i.q = j
i.r = a
assert j.r.y.q.txt == " | i" | class A:
def __init__(self, txt: str):
self.q: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
a = B("a")
i = A("i")
j.q = i
j.r = a
a.y = j
i.q = j
i.r = a
assert j.r.y.q.txt == "i" | j | a | j | i | x | x | x | x | i | j | a | j | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
4,924 | class A:
def __init__(self, txt: str):
self.u: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
d = A("d")
g = B("g")
j = B("j")
h = A("h")
d.u = g
d.p = h
g.v = j
j.v = g
h.u = g
h.p = d
assert j.v.v.v.txt... | g" | class A:
def __init__(self, txt: str):
self.u: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
d = A("d")
g = B("g")
j = B("j")
h = A("h")
d.u = g
d.p = h
g.v = j
j.v = g
h.u = g
h.p = d
assert j.v.v.v.txt... | j | g | j | g | x | x | x | x | g | j | g | j | x | x | x | x | 4 | 6 | 2 | 3 | 2 |
4,925 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
d = A("d")
j = B("j")
f = A("f")
d.q = f
j.x = d
f.q = d
assert j.x.q.q.txt == " | d" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
d = A("d")
j = B("j")
f = A("f")
d.q = f
j.x = d
f.q = d
assert j.x.q.q.txt == "d" | j | d | f | d | x | x | x | x | d | f | d | j | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,926 | class A:
def __init__(self, txt: str):
self.s: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
c = A("c")
h = B("h")
g = A("g")
b = A("b")
f = B("f")
d = B("d")
e = A("e")
c.s = b
c.o = f
h.r = f
g.s = b
g... | d" | class A:
def __init__(self, txt: str):
self.s: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
c = A("c")
h = B("h")
g = A("g")
b = A("b")
f = B("f")
d = B("d")
e = A("e")
c.s = b
c.o = f
h.r = f
g.s = b
g... | h | f | d | h | f | d | x | x | d | f | h | d | f | h | x | x | 7 | 11 | 2 | 5 | 3 |
4,927 | 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")
f = B("f")
c = A("c")
h.z = f
f.u = h
c.z = f
assert h.z.u.z.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")
f = B("f")
c = A("c")
h.z = f
f.u = h
c.z = f
assert h.z.u.z.txt == "f" | h | f | h | f | x | x | x | x | f | h | f | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,928 | class A:
def __init__(self, txt: str):
self.x: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
j = A("j")
c = B("c")
g = B("g")
h = A("h")
e = B("e")
i = B("i")
f = A("f")
j.x = i
j.y = f
c.u = e
g.u = e
h... | i" | class A:
def __init__(self, txt: str):
self.x: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
j = A("j")
c = B("c")
g = B("g")
h = A("h")
e = B("e")
i = B("i")
f = A("f")
j.x = i
j.y = f
c.u = e
g.u = e
h... | f | h | e | i | g | e | i | x | i | e | g | i | e | h | f | x | 7 | 10 | 2 | 6 | 2 |
4,929 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
c = A("c")
d = B("d")
h = A("h")
b = B("b")
c.p = b
d.t = b
h.p = d
b.t = d
assert h.p.t.t.t.txt == " | b" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
c = A("c")
d = B("d")
h = A("h")
b = B("b")
c.p = b
d.t = b
h.p = d
b.t = d
assert h.p.t.t.t.txt == "b" | h | d | b | d | b | x | x | x | b | d | b | d | h | x | x | x | 4 | 4 | 2 | 4 | 2 |
4,930 | 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.p: B = None
self.txt = txt
c = A("c")
f = B("f")
e = B("e")
c.w = f
f.q = e
f.p = e
e.q = f
e.p = f
assert f.q.q.p.txt == " | 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.p: B = None
self.txt = txt
c = A("c")
f = B("f")
e = B("e")
c.w = f
f.q = e
f.p = e
e.q = f
e.p = f
assert f.q.q.p.txt == "e" | f | e | f | e | x | x | x | x | e | f | e | f | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,931 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
d = A("d")
i = B("i")
b = A("b")
f = B("f")
j = A("j")
d.p = b
i.v = f
b.p = j
f.v = i
j.p = b
assert b.p.p.p.p.txt == " | b" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
d = A("d")
i = B("i")
b = A("b")
f = B("f")
j = A("j")
d.p = b
i.v = f
b.p = j
f.v = i
j.p = b
assert b.p.p.p.p.txt == "b" | b | j | b | j | b | x | x | x | b | j | b | j | b | x | x | x | 5 | 5 | 2 | 4 | 3 |
4,932 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.r: A = None
self.txt = txt
j = A("j")
h = B("h")
i = A("i")
c = B("c")
g = B("g")
a = B("a")
j.p = i
h.t = i
h.r = i
i.p = j
c.t = j
c.r ... | i" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.r: A = None
self.txt = txt
j = A("j")
h = B("h")
i = A("i")
c = B("c")
g = B("g")
a = B("a")
j.p = i
h.t = i
h.r = i
i.p = j
c.t = j
c.r ... | g | i | j | i | j | i | x | x | i | j | i | j | i | g | x | x | 6 | 8 | 2 | 5 | 3 |
4,933 | 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.txt = txt
g = A("g")
i = B("i")
e = B("e")
g.q = e
i.z = e
e.z = i
assert g.q.z.z.txt == " | e" | 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.txt = txt
g = A("g")
i = B("i")
e = B("e")
g.q = e
i.z = e
e.z = i
assert g.q.z.z.txt == "e" | g | e | i | e | x | x | x | x | e | i | e | g | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,934 | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.y: B = None
self.txt = txt
d = A("d")
a = B("a")
h = B("h")
b = A("b")
j = B("j")
g = A("g")
i = A("i")
d.z = a
... | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.y: B = None
self.txt = txt
d = A("d")
a = B("a")
h = B("h")
b = A("b")
j = B("j")
g = A("g")
i = A("i")
d.z = a
... | j | h | i | a | x | x | x | x | a | i | h | j | x | x | x | x | 7 | 13 | 2 | 3 | 0 |
4,935 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.t: B = None
self.txt = txt
f = A("f")
h = B("h")
c = A("c")
g = A("g")
a = B("a")
d = B("d")
f.y = g
h.y = g
h.t = a
c.y = f
g.y = f
a.y ... | g" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.t: B = None
self.txt = txt
f = A("f")
h = B("h")
c = A("c")
g = A("g")
a = B("a")
d = B("d")
f.y = g
h.y = g
h.t = a
c.y = f
g.y = f
a.y ... | a | d | g | f | g | x | x | x | g | f | g | d | a | x | x | x | 6 | 9 | 2 | 4 | 1 |
4,936 | class A:
def __init__(self, txt: str):
self.r: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
d = A("d")
b = B("b")
a = A("a")
d.r = b
d.s = b
b.q = a
a.r = b
a.s = b
assert b.q.r.q.txt == " | a" | class A:
def __init__(self, txt: str):
self.r: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
d = A("d")
b = B("b")
a = A("a")
d.r = b
d.s = b
b.q = a
a.r = b
a.s = b
assert b.q.r.q.txt == "a" | b | a | b | a | x | x | x | x | a | b | a | b | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,937 | class A:
def __init__(self, txt: str):
self.x: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.w: B = None
self.txt = txt
i = A("i")
g = B("g")
b = A("b")
f = B("f")
c = B("c")
i.x = b
i.v = g
g.o = c
g.w = ... | g" | class A:
def __init__(self, txt: str):
self.x: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.w: B = None
self.txt = txt
i = A("i")
g = B("g")
b = A("b")
f = B("f")
c = B("c")
i.x = b
i.v = g
g.o = c
g.w = ... | c | g | c | g | x | x | x | x | g | c | g | c | x | x | x | x | 5 | 10 | 2 | 3 | 2 |
4,938 | 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.s: A = None
self.txt = txt
a = A("a")
g = B("g")
j = A("j")
a.v = g
g.o = j
g.s = j
j.v = g
assert a.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.o: A = None
self.s: A = None
self.txt = txt
a = A("a")
g = B("g")
j = A("j")
a.v = g
g.o = j
g.s = j
j.v = g
assert a.v.s.v.txt == "g" | a | g | j | g | x | x | x | x | g | j | g | a | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,939 | class A:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.q: B = None
self.txt = txt
e = A("e")
a = B("a")
d = A("d")
b = B("b")
i = B("i")
e.s = d
e.q = d
a.y = b
a.q = ... | e" | class A:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.q: B = None
self.txt = txt
e = A("e")
a = B("a")
d = A("d")
b = B("b")
i = B("i")
e.s = d
e.q = d
a.y = b
a.q = ... | d | e | d | e | x | x | x | x | e | d | e | d | x | x | x | x | 5 | 5 | 2 | 3 | 2 |
4,940 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
e = A("e")
j = B("j")
c = B("c")
g = B("g")
e.o = j
j.p = c
c.p = g
g.p = c
assert c.p.p.p.txt == " | g" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
e = A("e")
j = B("j")
c = B("c")
g = B("g")
e.o = j
j.p = c
c.p = g
g.p = c
assert c.p.p.p.txt == "g" | c | g | c | g | x | x | x | x | g | c | g | c | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
4,941 | 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.q: A = None
self.txt = txt
h = A("h")
b = B("b")
j = B("j")
i = A("i")
g = B("g")
c = B("c")
h.x = c
b.s = i
b.q = h
j.s = h
j.q = i
i.x ... | c" | 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.q: A = None
self.txt = txt
h = A("h")
b = B("b")
j = B("j")
i = A("i")
g = B("g")
c = B("c")
h.x = c
b.s = i
b.q = h
j.s = h
j.q = i
i.x ... | c | h | c | i | c | x | x | x | c | i | c | h | c | x | x | x | 6 | 9 | 2 | 4 | 2 |
4,942 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
g = A("g")
e = B("e")
i = A("i")
a = B("a")
g.t = a
e.v = g
i.t = e
a.v = g
assert g.t.v.t.txt == " | a" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
g = A("g")
e = B("e")
i = A("i")
a = B("a")
g.t = a
e.v = g
i.t = e
a.v = g
assert g.t.v.t.txt == "a" | g | a | g | a | x | x | x | x | a | g | a | g | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
4,943 | class A:
def __init__(self, txt: str):
self.z: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.x: B = None
self.txt = txt
h = A("h")
d = B("d")
e = B("e")
j = B("j")
a = A("a")
i = B("i")
f = A("f")
h.z = f
... | i" | class A:
def __init__(self, txt: str):
self.z: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.x: B = None
self.txt = txt
h = A("h")
d = B("d")
e = B("e")
j = B("j")
a = A("a")
i = B("i")
f = A("f")
h.z = f
... | e | j | i | e | j | i | x | x | i | j | e | i | j | e | x | x | 7 | 12 | 2 | 5 | 3 |
4,944 | class A:
def __init__(self, txt: str):
self.x: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.u: A = None
self.txt = txt
c = A("c")
e = B("e")
b = A("b")
h = B("h")
d = B("d")
c.x = b
c.u = e
e.x = d
e.u = ... | h" | class A:
def __init__(self, txt: str):
self.x: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.u: A = None
self.txt = txt
c = A("c")
e = B("e")
b = A("b")
h = B("h")
d = B("d")
c.x = b
c.u = e
e.x = d
e.u = ... | h | b | h | b | h | x | x | x | h | b | h | b | h | x | x | x | 5 | 10 | 2 | 4 | 3 |
4,945 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
d = A("d")
g = B("g")
e = B("e")
j = B("j")
d.x = g
g.q = d
e.q = d
j.q = d
assert j.q.x.q.x.txt == " | g" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
d = A("d")
g = B("g")
e = B("e")
j = B("j")
d.x = g
g.q = d
e.q = d
j.q = d
assert j.q.x.q.x.txt == "g" | j | d | g | d | g | x | x | x | g | d | g | d | j | x | x | x | 4 | 4 | 2 | 4 | 2 |
4,946 | class A:
def __init__(self, txt: str):
self.u: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
g = A("g")
j = B("j")
d = B("d")
f = A("f")
e = A("e")
b = B("b")
g.u = j
g.w = j
j.y = f
d.y = g
f.u = b
f.w ... | d" | class A:
def __init__(self, txt: str):
self.u: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
g = A("g")
j = B("j")
d = B("d")
f = A("f")
e = A("e")
b = B("b")
g.u = j
g.w = j
j.y = f
d.y = g
f.u = b
f.w ... | d | g | j | f | b | f | d | x | d | f | b | f | j | g | d | x | 6 | 8 | 2 | 6 | 2 |
4,947 | class A:
def __init__(self, txt: str):
self.t: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
h = B("h")
e = B("e")
g = A("g")
a.t = g
a.v = g
h.x = e
e.x = h
g.t = a
g.v = a
assert h.x.x.x.x.t... | h" | class A:
def __init__(self, txt: str):
self.t: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
h = B("h")
e = B("e")
g = A("g")
a.t = g
a.v = g
h.x = e
e.x = h
g.t = a
g.v = a
assert h.x.x.x.x.t... | h | e | h | e | h | x | x | x | h | e | h | e | h | x | x | x | 4 | 4 | 2 | 4 | 3 |
4,948 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.w: B = None
self.txt = txt
e = A("e")
c = B("c")
a = A("a")
i = B("i")
e.q = a
c.y = i
c.w = i
a.q = e
i.y = c
i.w = c
assert c.w.y.w.txt... | i" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.w: B = None
self.txt = txt
e = A("e")
c = B("c")
a = A("a")
i = B("i")
e.q = a
c.y = i
c.w = i
a.q = e
i.y = c
i.w = c
assert c.w.y.w.txt... | c | i | c | i | x | x | x | x | i | c | i | c | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
4,949 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.u: B = None
self.txt = txt
a = A("a")
e = B("e")
d = B("d")
f = A("f")
c = B("c")
a.x = f
e.s = c
e.u = d
d.s = e
d.u = c
f.x = a
c.s = d... | d" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.u: B = None
self.txt = txt
a = A("a")
e = B("e")
d = B("d")
f = A("f")
c = B("c")
a.x = f
e.s = c
e.u = d
d.s = e
d.u = c
f.x = a
c.s = d... | e | c | d | c | d | x | x | x | d | c | d | c | e | x | x | x | 5 | 7 | 2 | 4 | 2 |
4,950 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
i = A("i")
e = B("e")
b = B("b")
d = B("d")
i.o = d
e.s = b
b.s = d
d.s = b
assert e.s.s.s.s.txt == " | d" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
i = A("i")
e = B("e")
b = B("b")
d = B("d")
i.o = d
e.s = b
b.s = d
d.s = b
assert e.s.s.s.s.txt == "d" | e | b | d | b | d | x | x | x | d | b | d | b | e | x | x | x | 4 | 4 | 2 | 4 | 2 |
4,951 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.q: A = None
self.txt = txt
b = A("b")
f = B("f")
h = B("h")
i = B("i")
g = A("g")
b.q = h
f.t = b
f.q = g
h.t = g
h.q = b
i.t = g
i.q = g... | b" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.q: A = None
self.txt = txt
b = A("b")
f = B("f")
h = B("h")
i = B("i")
g = A("g")
b.q = h
f.t = b
f.q = g
h.t = g
h.q = b
i.t = g
i.q = g... | h | b | h | g | h | b | x | x | b | h | g | h | b | h | x | x | 5 | 7 | 2 | 5 | 3 |
4,952 | class A:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
h = A("h")
e = B("e")
d = B("d")
i = B("i")
g = A("g")
h.p = e
h.u = i
e.v = g
d.v = h
i.v = h
g.p = d
g.u = i... | e" | class A:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
h = A("h")
e = B("e")
d = B("d")
i = B("i")
g = A("g")
h.p = e
h.u = i
e.v = g
d.v = h
i.v = h
g.p = d
g.u = i... | g | d | h | e | x | x | x | x | e | h | d | g | x | x | x | x | 5 | 7 | 2 | 3 | 0 |
4,953 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
g = A("g")
j = B("j")
a = B("a")
d = A("d")
h = B("h")
e = B("e")
c = A("c")
g.z = e
j.w = e
a.w = j
d.z = a
h.w = a
e.w = a
c.z = e
as... | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
g = A("g")
j = B("j")
a = B("a")
d = A("d")
h = B("h")
e = B("e")
c = A("c")
g.z = e
j.w = e
a.w = j
d.z = a
h.w = a
e.w = a
c.z = e
as... | d | a | j | e | a | j | e | a | a | e | j | a | e | j | a | d | 7 | 7 | 2 | 7 | 4 |
4,954 | 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.y: A = None
self.txt = txt
a = A("a")
e = B("e")
j = A("j")
i = A("i")
a.o = e
a.x = e
e.y = i
j.o = e
j.x = e
i.o = e
i.x = e
assert a.o... | i" | 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.y: A = None
self.txt = txt
a = A("a")
e = B("e")
j = A("j")
i = A("i")
a.o = e
a.x = e
e.y = i
j.o = e
j.x = e
i.o = e
i.x = e
assert a.o... | a | e | i | e | i | x | x | x | i | e | i | e | a | x | x | x | 4 | 4 | 2 | 4 | 2 |
4,955 | 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.q: B = None
self.txt = txt
a = A("a")
j = B("j")
h = B("h")
a.z = h
a.o = j
j.q = h
h.q = j
assert a.o.q.q.txt == " | j" | 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.q: B = None
self.txt = txt
a = A("a")
j = B("j")
h = B("h")
a.z = h
a.o = j
j.q = h
h.q = j
assert a.o.q.q.txt == "j" | a | j | h | j | x | x | x | x | j | h | j | a | x | x | x | x | 3 | 4 | 2 | 3 | 1 |
4,956 | 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
g = A("g")
j = B("j")
e = B("e")
g.w = e
j.u = g
e.u = g
assert g.w.u.w.txt == " | e" | 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
g = A("g")
j = B("j")
e = B("e")
g.w = e
j.u = g
e.u = g
assert g.w.u.w.txt == "e" | g | e | g | e | x | x | x | x | e | g | e | g | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,957 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.x: A = None
self.txt = txt
i = A("i")
h = B("h")
j = B("j")
f = A("f")
b = B("b")
c = A("c")
i.t = b
h.y = c
h.x = f
j.y = i
j.x = c
f.t ... | j" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.x: A = None
self.txt = txt
i = A("i")
h = B("h")
j = B("j")
f = A("f")
b = B("b")
c = A("c")
i.t = b
h.y = c
h.x = f
j.y = i
j.x = c
f.t ... | c | j | c | j | x | x | x | x | j | c | j | c | x | x | x | x | 6 | 9 | 2 | 3 | 2 |
4,958 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
d = A("d")
b = B("b")
j = B("j")
d.z = j
b.z = j
j.z = b
assert d.z.z.z.txt == " | j" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
d = A("d")
b = B("b")
j = B("j")
d.z = j
b.z = j
j.z = b
assert d.z.z.z.txt == "j" | d | j | b | j | x | x | x | x | j | b | j | d | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,959 | class A:
def __init__(self, txt: str):
self.u: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.t: B = None
self.txt = txt
g = A("g")
e = B("e")
c = B("c")
i = B("i")
a = A("a")
g.u = a
g.o = a
e.r = c
e.t = ... | e" | class A:
def __init__(self, txt: str):
self.u: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.t: B = None
self.txt = txt
g = A("g")
e = B("e")
c = B("c")
i = B("i")
a = A("a")
g.u = a
g.o = a
e.r = c
e.t = ... | c | e | i | e | c | e | x | x | e | c | e | i | e | c | x | x | 5 | 8 | 2 | 5 | 3 |
4,960 | class A:
def __init__(self, txt: str):
self.q: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
f = A("f")
j = B("j")
g = A("g")
h = A("h")
d = B("d")
f.q = g
f.p = g
j.x = f
g.q = h
g.p = f
h.q = g
h.p = g... | g" | class A:
def __init__(self, txt: str):
self.q: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
f = A("f")
j = B("j")
g = A("g")
h = A("h")
d = B("d")
f.q = g
f.p = g
j.x = f
g.q = h
g.p = f
h.q = g
h.p = g... | d | g | h | g | f | g | x | x | g | f | g | h | g | d | x | x | 5 | 6 | 2 | 5 | 2 |
4,961 | 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.t: A = None
self.v: A = None
self.txt = txt
h = A("h")
c = B("c")
a = B("a")
i = B("i")
e = B("e")
j = A("j")
h.r = c
h.q = c
c.t... | h" | 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.t: A = None
self.v: A = None
self.txt = txt
h = A("h")
c = B("c")
a = B("a")
i = B("i")
e = B("e")
j = A("j")
h.r = c
h.q = c
c.t... | e | h | c | h | x | x | x | x | h | c | h | e | x | x | x | x | 6 | 10 | 2 | 3 | 1 |
4,962 | class A:
def __init__(self, txt: str):
self.x: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.o: B = None
self.txt = txt
j = A("j")
i = B("i")
a = A("a")
b = B("b")
f = A("f")
h = A("h")
c = B("c")
j.x = f
... | f" | class A:
def __init__(self, txt: str):
self.x: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.o: B = None
self.txt = txt
j = A("j")
i = B("i")
a = A("a")
b = B("b")
f = A("f")
h = A("h")
c = B("c")
j.x = f
... | b | c | b | c | b | j | f | x | f | j | b | c | b | c | b | x | 7 | 11 | 2 | 6 | 3 |
4,963 | class A:
def __init__(self, txt: str):
self.w: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.o: A = None
self.txt = txt
d = A("d")
h = B("h")
f = A("f")
i = B("i")
d.w = h
d.y = f
h.q = f
h.o = d
f.w = i
f... | i" | class A:
def __init__(self, txt: str):
self.w: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.o: A = None
self.txt = txt
d = A("d")
h = B("h")
f = A("f")
i = B("i")
d.w = h
d.y = f
h.q = f
h.o = d
f.w = i
f... | h | d | f | i | x | x | x | x | i | f | d | h | x | x | x | x | 4 | 7 | 2 | 3 | 0 |
4,964 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.y: B = None
self.txt = txt
e = A("e")
b = B("b")
d = B("d")
c = A("c")
a = A("a")
j = A("j")
e.y = j
b.p = d
b.y = d
d.p = b
d.y = b
c.y ... | j" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.y: B = None
self.txt = txt
e = A("e")
b = B("b")
d = B("d")
c = A("c")
a = A("a")
j = A("j")
e.y = j
b.p = d
b.y = d
d.p = b
d.y = b
c.y ... | c | a | j | a | j | a | j | x | j | a | j | a | j | a | c | x | 6 | 6 | 2 | 6 | 4 |
4,965 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.o: B = None
self.txt = txt
f = A("f")
d = B("d")
a = B("a")
i = B("i")
c = B("c")
b = B("b")
f.s = a
d.y = c
d.o = b
a.y = i
a.o = b
i.y ... | b" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.o: B = None
self.txt = txt
f = A("f")
d = B("d")
a = B("a")
i = B("i")
c = B("c")
b = B("b")
f.s = a
d.y = c
d.o = b
a.y = i
a.o = b
i.y ... | i | c | a | b | d | b | x | x | b | d | b | a | c | i | x | x | 6 | 10 | 2 | 5 | 1 |
4,966 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
e = A("e")
f = B("f")
i = A("i")
a = B("a")
g = A("g")
d = A("d")
e.v = d
f.u = a
i.v = d
a.u = f
g.v = d
d.v = i
assert i.v.v.v.txt ==... | d" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
e = A("e")
f = B("f")
i = A("i")
a = B("a")
g = A("g")
d = A("d")
e.v = d
f.u = a
i.v = d
a.u = f
g.v = d
d.v = i
assert i.v.v.v.txt ==... | i | d | i | d | x | x | x | x | d | i | d | i | x | x | x | x | 6 | 6 | 2 | 3 | 2 |
4,967 | class A:
def __init__(self, txt: str):
self.o: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
j = A("j")
a = B("a")
f = A("f")
e = A("e")
c = B("c")
j.o = a
j.s = e
a.w = c
f.o = c
f.s = e
e.o = c
e.s = j... | a" | class A:
def __init__(self, txt: str):
self.o: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
j = A("j")
a = B("a")
f = A("f")
e = A("e")
c = B("c")
j.o = a
j.s = e
a.w = c
f.o = c
f.s = e
e.o = c
e.s = j... | c | a | c | a | c | a | x | x | a | c | a | c | a | c | x | x | 5 | 8 | 2 | 5 | 4 |
4,968 | class A:
def __init__(self, txt: str):
self.z: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.r: B = None
self.txt = txt
a = A("a")
b = B("b")
i = A("i")
j = B("j")
a.z = i
a.r = i
b.v = a
b.r = j
i.z = a
i... | a" | class A:
def __init__(self, txt: str):
self.z: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.r: B = None
self.txt = txt
a = A("a")
b = B("b")
i = A("i")
j = B("j")
a.z = i
a.r = i
b.v = a
b.r = j
i.z = a
i... | j | b | j | b | a | x | x | x | a | b | j | b | j | x | x | x | 4 | 6 | 2 | 4 | 2 |
4,969 | class A:
def __init__(self, txt: str):
self.w: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.y: B = None
self.txt = txt
i = A("i")
c = B("c")
e = B("e")
b = A("b")
g = B("g")
d = B("d")
i.w = b
i.r = c
c.x... | e" | class A:
def __init__(self, txt: str):
self.w: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.y: B = None
self.txt = txt
i = A("i")
c = B("c")
e = B("e")
b = A("b")
g = B("g")
d = B("d")
i.w = b
i.r = c
c.x... | b | i | c | e | d | e | x | x | e | d | e | c | i | b | x | x | 6 | 12 | 2 | 5 | 1 |
4,970 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
j = A("j")
h = B("h")
c = A("c")
i = B("i")
e = B("e")
d = B("d")
j.p = c
h.z = d
c.p = j
i.z = d
e.z = d
d.z = h
assert j.p.p.p.p.p.tx... | c" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
j = A("j")
h = B("h")
c = A("c")
i = B("i")
e = B("e")
d = B("d")
j.p = c
h.z = d
c.p = j
i.z = d
e.z = d
d.z = h
assert j.p.p.p.p.p.tx... | j | c | j | c | j | c | x | x | c | j | c | j | c | j | x | x | 6 | 6 | 2 | 5 | 4 |
4,971 | 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.u: B = None
self.txt = txt
i = A("i")
d = B("d")
b = B("b")
h = A("h")
i.t = d
d.q = i
d.u = b
b.q = h
b.u = d
h.t = d
assert d.u.u.q.t.t... | d" | 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.u: B = None
self.txt = txt
i = A("i")
d = B("d")
b = B("b")
h = A("h")
i.t = d
d.q = i
d.u = b
b.q = h
b.u = d
h.t = d
assert d.u.u.q.t.t... | d | b | d | i | d | x | x | x | d | i | d | b | d | x | x | x | 4 | 6 | 2 | 4 | 2 |
4,972 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
a = A("a")
b = B("b")
f = B("f")
a.v = f
b.q = a
f.q = a
assert a.v.q.v.txt == " | f" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
a = A("a")
b = B("b")
f = B("f")
a.v = f
b.q = a
f.q = a
assert a.v.q.v.txt == "f" | a | f | a | f | x | x | x | x | f | a | f | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,973 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.y: A = None
self.txt = txt
d = A("d")
g = B("g")
c = B("c")
e = A("e")
f = A("f")
d.w = g
g.u = c
g.y = e
c.u = g
c.y = f
e.w = c
f.w = c... | g" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.y: A = None
self.txt = txt
d = A("d")
g = B("g")
c = B("c")
e = A("e")
f = A("f")
d.w = g
g.u = c
g.y = e
c.u = g
c.y = f
e.w = c
f.w = c... | d | g | c | g | x | x | x | x | g | c | g | d | x | x | x | x | 5 | 7 | 2 | 3 | 1 |
4,974 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.txt = txt
c = A("c")
a = B("a")
d = B("d")
e = A("e")
i = B("i")
h = B("h")
g = A("g")
c.r = e
a.x = e
a.o = d
d.x = e
d... | e" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.txt = txt
c = A("c")
a = B("a")
d = B("d")
e = A("e")
i = B("i")
h = B("h")
g = A("g")
c.r = e
a.x = e
a.o = d
d.x = e
d... | i | a | d | h | c | e | g | e | e | g | e | c | h | d | a | i | 7 | 11 | 2 | 7 | 1 |
4,975 | class A:
def __init__(self, txt: str):
self.z: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
c = A("c")
j = B("j")
f = B("f")
a = B("a")
b = B("b")
d = A("d")
c.z = d
c.q = d
j.v = a
f.v = b
a.v = j
b.v ... | d" | class A:
def __init__(self, txt: str):
self.z: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
c = A("c")
j = B("j")
f = B("f")
a = B("a")
b = B("b")
d = A("d")
c.z = d
c.q = d
j.v = a
f.v = b
a.v = j
b.v ... | c | d | c | d | c | d | x | x | d | c | d | c | d | c | x | x | 6 | 6 | 2 | 5 | 4 |
4,976 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.r: A = None
self.txt = txt
d = A("d")
b = B("b")
h = B("h")
c = B("c")
d.w = b
b.y = h
b.r = d
h.y = b
h.r = d
c.y = b
c.r = d
assert b.r... | h" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.r: A = None
self.txt = txt
d = A("d")
b = B("b")
h = B("h")
c = B("c")
d.w = b
b.y = h
b.r = d
h.y = b
h.r = d
c.y = b
c.r = d
assert b.r... | b | d | b | h | x | x | x | x | h | b | d | b | x | x | x | x | 4 | 7 | 2 | 3 | 1 |
4,977 | class A:
def __init__(self, txt: str):
self.o: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
i = B("i")
a = A("a")
c.o = i
c.s = a
i.s = c
a.o = i
a.s = c
assert c.o.s.s.txt == " | a" | class A:
def __init__(self, txt: str):
self.o: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
i = B("i")
a = A("a")
c.o = i
c.s = a
i.s = c
a.o = i
a.s = c
assert c.o.s.s.txt == "a" | c | i | c | a | x | x | x | x | a | c | i | c | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
4,978 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.y: B = None
self.txt = txt
c = A("c")
a = B("a")
d = B("d")
h = B("h")
c.x = a
a.w = c
a.y = d
d.w = c
d.y = h
h.w = c
h.y = d
assert a.y... | d" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.y: B = None
self.txt = txt
c = A("c")
a = B("a")
d = B("d")
h = B("h")
c.x = a
a.w = c
a.y = d
d.w = c
d.y = h
h.w = c
h.y = d
assert a.y... | a | d | h | d | x | x | x | x | d | h | d | a | x | x | x | x | 4 | 7 | 2 | 3 | 1 |
4,979 | 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.v: A = None
self.txt = txt
c = A("c")
d = B("d")
a = A("a")
c.w = a
c.v = d
d.v = c
a.w = c
a.v = d
assert d.v.w.w.txt == " | c" | 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.v: A = None
self.txt = txt
c = A("c")
d = B("d")
a = A("a")
c.w = a
c.v = d
d.v = c
a.w = c
a.v = d
assert d.v.w.w.txt == "c" | d | c | a | c | x | x | x | x | c | a | c | d | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
4,980 | 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.y: B = None
self.txt = txt
b = A("b")
f = B("f")
i = B("i")
b.x = f
f.o = i
f.y = i
i.o = f
i.y = f
assert i.y.y.o.txt == " | f" | 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.y: B = None
self.txt = txt
b = A("b")
f = B("f")
i = B("i")
b.x = f
f.o = i
f.y = i
i.o = f
i.y = f
assert i.y.y.o.txt == "f" | i | f | i | f | x | x | x | x | f | i | f | i | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,981 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.w: B = None
self.txt = txt
g = A("g")
i = B("i")
c = B("c")
e = A("e")
j = B("j")
b = B("b")
g.w = e
i.s = g
i.w = c
c.s = e
c.w = j
e.w ... | g" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.w: B = None
self.txt = txt
g = A("g")
i = B("i")
c = B("c")
e = A("e")
j = B("j")
b = B("b")
g.w = e
i.s = g
i.w = c
c.s = e
c.w = j
e.w ... | j | e | g | e | g | e | g | x | g | e | g | e | g | e | j | x | 6 | 10 | 2 | 6 | 4 |
4,982 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.q: A = None
self.txt = txt
i = A("i")
c = B("c")
h = A("h")
d = A("d")
e = A("e")
j = A("j")
f = A("f")
i.w = c
c.r = e
c.q = j
h.w = c
d... | j" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.q: A = None
self.txt = txt
i = A("i")
c = B("c")
h = A("h")
d = A("d")
e = A("e")
j = A("j")
f = A("f")
i.w = c
c.r = e
c.q = j
h.w = c
d... | h | c | e | c | e | c | j | x | j | c | e | c | e | c | h | x | 7 | 8 | 2 | 6 | 3 |
4,983 | 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.w: B = None
self.txt = txt
b = A("b")
c = B("c")
j = A("j")
h = A("h")
e = A("e")
a = B("a")
d = A("d")
b.p = a
b.u = e
c.w = a
j.p = a
j... | c" | 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.w: B = None
self.txt = txt
b = A("b")
c = B("c")
j = A("j")
h = A("h")
e = A("e")
a = B("a")
d = A("d")
b.p = a
b.u = e
c.w = a
j.p = a
j... | d | e | d | c | a | c | x | x | c | a | c | d | e | d | x | x | 7 | 12 | 2 | 5 | 2 |
4,984 | 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.y: A = None
self.txt = txt
g = A("g")
a = B("a")
f = B("f")
h = A("h")
j = A("j")
g.v = a
g.s = a
a.y = g
f.y = h
h.v = f
h.s = a
j.v = f... | g" | 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.y: A = None
self.txt = txt
g = A("g")
a = B("a")
f = B("f")
h = A("h")
j = A("j")
g.v = a
g.s = a
a.y = g
f.y = h
h.v = f
h.s = a
j.v = f... | h | a | g | a | g | x | x | x | g | a | g | a | h | x | x | x | 5 | 6 | 2 | 4 | 2 |
4,985 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.w: A = None
self.txt = txt
e = A("e")
g = B("g")
d = B("d")
i = B("i")
a = A("a")
j = A("j")
f = A("f")
e.y = d
g.z = d
g.w = j
d.z = g
d... | j" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.w: A = None
self.txt = txt
e = A("e")
g = B("g")
d = B("d")
i = B("i")
a = A("a")
j = A("j")
f = A("f")
e.y = d
g.z = d
g.w = j
d.z = g
d... | d | g | j | i | g | j | x | x | j | g | i | j | g | d | x | x | 7 | 10 | 2 | 5 | 2 |
4,986 | class A:
def __init__(self, txt: str):
self.p: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.x: B = None
self.txt = txt
i = A("i")
a = B("a")
b = B("b")
i.p = b
i.t = b
a.u = i
a.x = b
b.u = i
b.x = a
asse... | b" | class A:
def __init__(self, txt: str):
self.p: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.x: B = None
self.txt = txt
i = A("i")
a = B("a")
b = B("b")
i.p = b
i.t = b
a.u = i
a.x = b
b.u = i
b.x = a
asse... | i | b | i | b | x | x | x | x | b | i | b | i | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
4,987 | 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.txt = txt
h = A("h")
b = B("b")
c = A("c")
e = A("e")
i = B("i")
f = B("f")
h.y = c
b.p = e
c.y = e
e.y = h
i.p = h
f.p = h
assert b.p.y.y.y.txt ... | e" | 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.txt = txt
h = A("h")
b = B("b")
c = A("c")
e = A("e")
i = B("i")
f = B("f")
h.y = c
b.p = e
c.y = e
e.y = h
i.p = h
f.p = h
assert b.p.y.y.y.txt ... | b | e | h | c | e | x | x | x | e | c | h | e | b | x | x | x | 6 | 6 | 2 | 4 | 1 |
4,988 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.v: B = None
self.txt = txt
i = A("i")
g = B("g")
a = A("a")
b = A("b")
c = B("c")
j = A("j")
h = B("h")
i.r = a
g.y = b
g.v = h
a.r = i
b... | i" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.v: B = None
self.txt = txt
i = A("i")
g = B("g")
a = A("a")
b = A("b")
c = B("c")
j = A("j")
h = B("h")
i.r = a
g.y = b
g.v = h
a.r = i
b... | h | i | a | i | x | x | x | x | i | a | i | h | x | x | x | x | 7 | 10 | 2 | 3 | 1 |
4,989 | 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.z: B = None
self.txt = txt
d = A("d")
h = B("h")
i = A("i")
j = B("j")
f = B("f")
g = A("g")
c = A("c")
d.w = c
d.v = h
h.z = f
i.w = g
i... | f" | 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.z: B = None
self.txt = txt
d = A("d")
h = B("h")
i = A("i")
j = B("j")
f = B("f")
g = A("g")
c = A("c")
d.w = c
d.v = h
h.z = f
i.w = g
i... | g | f | h | f | h | f | h | f | f | h | f | h | f | h | f | g | 7 | 11 | 2 | 7 | 5 |
4,990 | class A:
def __init__(self, txt: str):
self.z: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.o: A = None
self.txt = txt
f = A("f")
h = B("h")
a = B("a")
j = B("j")
g = A("g")
f.z = g
f.s = g
h.v = f
h.o = ... | g" | class A:
def __init__(self, txt: str):
self.z: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.o: A = None
self.txt = txt
f = A("f")
h = B("h")
a = B("a")
j = B("j")
g = A("g")
f.z = g
f.s = g
h.v = f
h.o = ... | f | g | f | g | x | x | x | x | g | f | g | f | x | x | x | x | 5 | 8 | 2 | 3 | 2 |
4,991 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
g = A("g")
c = B("c")
f = B("f")
a = A("a")
d = B("d")
g.v = a
c.t = f
f.t = d
a.v = g
d.t = f
assert f.t.t.t.txt == " | d" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
g = A("g")
c = B("c")
f = B("f")
a = A("a")
d = B("d")
g.v = a
c.t = f
f.t = d
a.v = g
d.t = f
assert f.t.t.t.txt == "d" | f | d | f | d | x | x | x | x | d | f | d | f | x | x | x | x | 5 | 5 | 2 | 3 | 2 |
4,992 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.z: B = None
self.txt = txt
e = A("e")
g = B("g")
d = A("d")
c = B("c")
i = B("i")
f = B("f")
a = B("a")
e.u = f
g.o = a
g.z = a
d.u = a
c... | a" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.z: B = None
self.txt = txt
e = A("e")
g = B("g")
d = A("d")
c = B("c")
i = B("i")
f = B("f")
a = B("a")
e.u = f
g.o = a
g.z = a
d.u = a
c... | d | a | g | a | g | a | g | a | a | g | a | g | a | g | a | d | 7 | 10 | 2 | 7 | 5 |
4,993 | class A:
def __init__(self, txt: str):
self.p: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.y: B = None
self.txt = txt
d = A("d")
e = B("e")
g = B("g")
a = B("a")
j = A("j")
f = A("f")
d.p = j
d.s = e
e.w... | a" | class A:
def __init__(self, txt: str):
self.p: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.y: B = None
self.txt = txt
d = A("d")
e = B("e")
g = B("g")
a = B("a")
j = A("j")
f = A("f")
d.p = j
d.s = e
e.w... | d | j | a | e | a | e | a | x | a | e | a | e | a | j | d | x | 6 | 9 | 2 | 6 | 3 |
4,994 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.t: A = None
self.txt = txt
g = A("g")
b = B("b")
f = A("f")
d = A("d")
j = B("j")
c = A("c")
e = B("e")
g.w = c
b.p = f
b.t = d
f.w = d
d... | d" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.t: A = None
self.txt = txt
g = A("g")
b = B("b")
f = A("f")
d = A("d")
j = B("j")
c = A("c")
e = B("e")
g.w = c
b.p = f
b.t = d
f.w = d
d... | g | c | f | d | x | x | x | x | d | f | c | g | x | x | x | x | 7 | 10 | 2 | 3 | 0 |
4,995 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.x: A = None
self.txt = txt
j = A("j")
a = B("a")
h = B("h")
f = A("f")
e = A("e")
b = B("b")
c = A("c")
j.s = c
a.u = j
a.x = c
h.u = c
h... | c" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.x: A = None
self.txt = txt
j = A("j")
a = B("a")
h = B("h")
f = A("f")
e = A("e")
b = B("b")
c = A("c")
j.s = c
a.u = j
a.x = c
h.u = c
h... | c | f | e | c | f | e | c | x | c | e | f | c | e | f | c | x | 7 | 9 | 2 | 6 | 4 |
4,996 | class A:
def __init__(self, txt: str):
self.s: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.s: A = None
self.txt = txt
e = A("e")
i = B("i")
g = A("g")
e.s = g
e.x = g
i.r = g
i.s = e
g.s = e
g.x = e
asse... | g" | class A:
def __init__(self, txt: str):
self.s: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.s: A = None
self.txt = txt
e = A("e")
i = B("i")
g = A("g")
e.s = g
e.x = g
i.r = g
i.s = e
g.s = e
g.x = e
asse... | e | g | e | g | x | x | x | x | g | e | g | e | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
4,997 | class A:
def __init__(self, txt: str):
self.v: A = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.z: B = None
self.txt = txt
j = A("j")
f = B("f")
h = B("h")
a = B("a")
e = A("e")
j.v = e
j.w = e
f.v = e
f.z = ... | e" | class A:
def __init__(self, txt: str):
self.v: A = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.z: B = None
self.txt = txt
j = A("j")
f = B("f")
h = B("h")
a = B("a")
e = A("e")
j.v = e
j.w = e
f.v = e
f.z = ... | f | e | j | e | j | e | x | x | e | j | e | j | e | f | x | x | 5 | 8 | 2 | 5 | 3 |
4,998 | 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.s: A = None
self.txt = txt
c = A("c")
h = B("h")
g = A("g")
j = B("j")
b = A("b")
c.u = g
c.w = j
h.s = g
g.u = b
g.w = h
j.s = c
b.u = c... | c" | 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.s: A = None
self.txt = txt
c = A("c")
h = B("h")
g = A("g")
j = B("j")
b = A("b")
c.u = g
c.w = j
h.s = g
g.u = b
g.w = h
j.s = c
b.u = c... | b | j | c | j | c | x | x | x | c | j | c | j | b | x | x | x | 5 | 8 | 2 | 4 | 2 |
4,999 | 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.p: A = None
self.v: A = None
self.txt = txt
i = A("i")
j = B("j")
c = A("c")
i.x = j
i.s = j
j.p = i
j.v = c
c.x = j
c.s = j
asse... | i" | 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.p: A = None
self.v: A = None
self.txt = txt
i = A("i")
j = B("j")
c = A("c")
i.x = j
i.s = j
j.p = i
j.v = c
c.x = j
c.s = j
asse... | j | c | j | i | x | x | x | x | i | j | c | j | x | x | x | x | 3 | 4 | 2 | 3 | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.