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