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