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,300 | class A:
def __init__(self, txt: str):
self.y: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.txt = txt
a = A("a")
d = B("d")
e = A("e")
c = B("c")
b = A("b")
f = A("f")
i = A("i")
a.y = d
... | b" | class A:
def __init__(self, txt: str):
self.y: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.txt = txt
a = A("a")
d = B("d")
e = A("e")
c = B("c")
b = A("b")
f = A("f")
i = A("i")
a.y = d
... | a | d | c | a | e | c | d | b | b | d | c | e | a | c | d | a | 7 | 14 | 2 | 7 | 3 |
1,301 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.y: A = None
self.txt = txt
a = A("a")
j = B("j")
d = B("d")
h = A("h")
e = A("e")
f = B("f")
b = B("b")
a.t = f
j.q = b
j.y = e
d.q = j
d... | j" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.y: A = None
self.txt = txt
a = A("a")
j = B("j")
d = B("d")
h = A("h")
e = A("e")
f = B("f")
b = B("b")
a.t = f
j.q = b
j.y = e
d.q = j
d... | e | j | e | j | e | j | x | x | j | e | j | e | j | e | x | x | 7 | 11 | 2 | 5 | 4 |
1,302 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
b = A("b")
e = B("e")
a = A("a")
i = B("i")
g = B("g")
b.u = e
e.r = i
a.u = i
i.r = g
g.r = e
assert a.u.r.r.r.r.txt == " | g" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
b = A("b")
e = B("e")
a = A("a")
i = B("i")
g = B("g")
b.u = e
e.r = i
a.u = i
i.r = g
g.r = e
assert a.u.r.r.r.r.txt == "g" | a | i | g | e | i | g | x | x | g | i | e | g | i | a | x | x | 5 | 5 | 2 | 5 | 2 |
1,303 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.q: A = None
self.txt = txt
e = A("e")
c = B("c")
i = A("i")
g = B("g")
b = B("b")
h = A("h")
d = A("d")
e.q = g
c.p = d
c.q = h
i.q = g
g... | e" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.q: A = None
self.txt = txt
e = A("e")
c = B("c")
i = A("i")
g = B("g")
b = B("b")
h = A("h")
d = A("d")
e.q = g
c.p = d
c.q = h
i.q = g
g... | i | g | e | g | e | x | x | x | e | g | e | g | i | x | x | x | 7 | 10 | 2 | 4 | 2 |
1,304 | class A:
def __init__(self, txt: str):
self.r: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
g = A("g")
b = B("b")
c = B("c")
h = A("h")
g.r = h
g.o = c
b.v = c
c.v = b
h.r = g
h.o = b
assert c.v.v.v.txt... | b" | class A:
def __init__(self, txt: str):
self.r: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
g = A("g")
b = B("b")
c = B("c")
h = A("h")
g.r = h
g.o = c
b.v = c
c.v = b
h.r = g
h.o = b
assert c.v.v.v.txt... | c | b | c | b | x | x | x | x | b | c | b | c | x | x | x | x | 4 | 6 | 2 | 3 | 2 |
1,305 | class A:
def __init__(self, txt: str):
self.r: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
c = A("c")
j = B("j")
a = A("a")
c.r = j
c.y = a
j.q = a
a.r = j
a.y = c
assert j.q.r.q.txt == " | a" | class A:
def __init__(self, txt: str):
self.r: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
c = A("c")
j = B("j")
a = A("a")
c.r = j
c.y = a
j.q = a
a.r = j
a.y = c
assert j.q.r.q.txt == "a" | j | a | j | a | x | x | x | x | a | j | a | j | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
1,306 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
b = A("b")
e = B("e")
f = B("f")
d = A("d")
h = B("h")
c = B("c")
g = B("g")
b.x = d
e.y = g
f.y = e
d.x = b
h.y = e
c.y = e
g.y = h
as... | g" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
b = A("b")
e = B("e")
f = B("f")
d = A("d")
h = B("h")
c = B("c")
g = B("g")
b.x = d
e.y = g
f.y = e
d.x = b
h.y = e
c.y = e
g.y = h
as... | h | e | g | h | e | g | x | x | g | e | h | g | e | h | x | x | 7 | 7 | 2 | 5 | 3 |
1,307 | class A:
def __init__(self, txt: str):
self.s: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.q: B = None
self.txt = txt
e = A("e")
i = B("i")
f = A("f")
j = A("j")
g = B("g")
a = A("a")
e.s = j
e.t = j
i.p... | i" | class A:
def __init__(self, txt: str):
self.s: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.q: B = None
self.txt = txt
e = A("e")
i = B("i")
f = A("f")
j = A("j")
g = B("g")
a = A("a")
e.s = j
e.t = j
i.p... | i | g | i | g | i | x | x | x | i | g | i | g | i | x | x | x | 6 | 8 | 2 | 4 | 3 |
1,308 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
e = A("e")
j = B("j")
c = A("c")
e.t = j
j.t = c
c.t = j
assert j.t.t.t.txt == " | c" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
e = A("e")
j = B("j")
c = A("c")
e.t = j
j.t = c
c.t = j
assert j.t.t.t.txt == "c" | j | c | j | c | x | x | x | x | c | j | c | j | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
1,309 | class A:
def __init__(self, txt: str):
self.u: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
e = A("e")
j = B("j")
a = A("a")
g = B("g")
c = A("c")
b = A("b")
d = B("d")
e.u = b
e.o = d
j.v = a
a.u = b
a... | a" | class A:
def __init__(self, txt: str):
self.u: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
e = A("e")
j = B("j")
a = A("a")
g = B("g")
c = A("c")
b = A("b")
d = B("d")
e.u = b
e.o = d
j.v = a
a.u = b
a... | j | a | j | a | b | g | a | x | a | g | b | a | j | a | j | x | 7 | 11 | 2 | 6 | 3 |
1,310 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
h = A("h")
d = B("d")
b = B("b")
a = A("a")
i = A("i")
h.v = b
d.z = i
b.z = a
a.v = d
i.v = b
assert a.v.z.v.z.txt == " | a" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
h = A("h")
d = B("d")
b = B("b")
a = A("a")
i = A("i")
h.v = b
d.z = i
b.z = a
a.v = d
i.v = b
assert a.v.z.v.z.txt == "a" | a | d | i | b | a | x | x | x | a | b | i | d | a | x | x | x | 5 | 5 | 2 | 4 | 1 |
1,311 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
c = A("c")
i = B("i")
a = B("a")
c.q = a
i.u = c
a.u = c
assert a.u.q.u.txt == " | c" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
c = A("c")
i = B("i")
a = B("a")
c.q = a
i.u = c
a.u = c
assert a.u.q.u.txt == "c" | a | c | a | c | x | x | x | x | c | a | c | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
1,312 | class A:
def __init__(self, txt: str):
self.r: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.o: A = None
self.txt = txt
e = A("e")
a = B("a")
c = B("c")
e.r = a
e.w = c
a.r = e
a.o = e
c.r = e
c.o = e
asse... | e" | class A:
def __init__(self, txt: str):
self.r: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.o: A = None
self.txt = txt
e = A("e")
a = B("a")
c = B("c")
e.r = a
e.w = c
a.r = e
a.o = e
c.r = e
c.o = e
asse... | c | e | c | e | x | x | x | x | e | c | e | c | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
1,313 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
g = A("g")
f = B("f")
a = A("a")
b = B("b")
g.p = b
f.p = a
a.p = f
b.p = g
assert g.p.p.p.txt == " | b" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
g = A("g")
f = B("f")
a = A("a")
b = B("b")
g.p = b
f.p = a
a.p = f
b.p = g
assert g.p.p.p.txt == "b" | g | b | g | b | x | x | x | x | b | g | b | g | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
1,314 | class A:
def __init__(self, txt: str):
self.z: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.s: A = None
self.txt = txt
h = A("h")
e = B("e")
f = B("f")
j = A("j")
h.z = e
h.o = j
e.w = f
e.s = h
f.w = e
f... | h" | class A:
def __init__(self, txt: str):
self.z: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.s: A = None
self.txt = txt
h = A("h")
e = B("e")
f = B("f")
j = A("j")
h.z = e
h.o = j
e.w = f
e.s = h
f.w = e
f... | j | h | e | h | x | x | x | x | h | e | h | j | x | x | x | x | 4 | 8 | 2 | 3 | 1 |
1,315 | class A:
def __init__(self, txt: str):
self.y: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.x: B = None
self.txt = txt
b = A("b")
c = B("c")
g = B("g")
e = A("e")
d = A("d")
a = A("a")
j = B("j")
b.y = g
... | c" | class A:
def __init__(self, txt: str):
self.y: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.x: B = None
self.txt = txt
b = A("b")
c = B("c")
g = B("g")
e = A("e")
d = A("d")
a = A("a")
j = B("j")
b.y = g
... | e | g | j | c | x | x | x | x | c | j | g | e | x | x | x | x | 7 | 13 | 2 | 3 | 0 |
1,316 | 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.u: B = None
self.txt = txt
c = A("c")
d = B("d")
h = B("h")
a = A("a")
i = A("i")
f = B("f")
c.z = d
d.t = a
d.u = f
h.t = i
h.u = d
a.z ... | f" | 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.u: B = None
self.txt = txt
c = A("c")
d = B("d")
h = B("h")
a = A("a")
i = A("i")
f = B("f")
c.z = d
d.t = a
d.u = f
h.t = i
h.u = d
a.z ... | i | h | i | h | d | f | x | x | f | d | h | i | h | i | x | x | 6 | 9 | 2 | 5 | 2 |
1,317 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.s: B = None
self.txt = txt
j = A("j")
f = B("f")
e = B("e")
h = A("h")
g = B("g")
b = A("b")
c = B("c")
j.w = h
f.t = h
f.s = c
e.t = j
e... | j" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.s: B = None
self.txt = txt
j = A("j")
f = B("f")
e = B("e")
h = A("h")
g = B("g")
b = A("b")
c = B("c")
j.w = h
f.t = h
f.s = c
e.t = j
e... | e | j | h | j | h | j | h | j | j | h | j | h | j | h | j | e | 7 | 11 | 2 | 7 | 5 |
1,318 | 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.o: A = None
self.txt = txt
b = A("b")
g = B("g")
j = A("j")
i = B("i")
b.o = j
g.t = i
g.o = j
j.o = b
i.t = g
i.o = j
assert i.o.o.o.o.t... | b" | 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.o: A = None
self.txt = txt
b = A("b")
g = B("g")
j = A("j")
i = B("i")
b.o = j
g.t = i
g.o = j
j.o = b
i.t = g
i.o = j
assert i.o.o.o.o.t... | i | j | b | j | b | x | x | x | b | j | b | j | i | x | x | x | 4 | 6 | 2 | 4 | 2 |
1,319 | class A:
def __init__(self, txt: str):
self.p: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.r: B = None
self.txt = txt
f = A("f")
d = B("d")
h = A("h")
c = B("c")
i = B("i")
b = A("b")
f.p = c
f.t = b
d.v... | d" | class A:
def __init__(self, txt: str):
self.p: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.r: B = None
self.txt = txt
f = A("f")
d = B("d")
h = A("h")
c = B("c")
i = B("i")
b = A("b")
f.p = c
f.t = b
d.v... | b | h | i | d | x | x | x | x | d | i | h | b | x | x | x | x | 6 | 10 | 2 | 3 | 0 |
1,320 | class A:
def __init__(self, txt: str):
self.x: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
a = B("a")
c = B("c")
h = B("h")
e = B("e")
i = A("i")
f = A("f")
j.x = h
j.v = i
a.y = f
c.y = f
h... | h" | class A:
def __init__(self, txt: str):
self.x: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
a = B("a")
c = B("c")
h = B("h")
e = B("e")
i = A("i")
f = A("f")
j.x = h
j.v = i
a.y = f
c.y = f
h... | f | a | f | j | h | i | j | h | h | j | i | h | j | f | a | f | 7 | 10 | 2 | 7 | 3 |
1,321 | class A:
def __init__(self, txt: str):
self.w: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
h = A("h")
e = B("e")
g = A("g")
a = A("a")
h.w = e
h.u = e
e.x = a
g.w = e
g.u = e
a.w = e
a.u = e
assert g.w... | a" | class A:
def __init__(self, txt: str):
self.w: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
h = A("h")
e = B("e")
g = A("g")
a = A("a")
h.w = e
h.u = e
e.x = a
g.w = e
g.u = e
a.w = e
a.u = e
assert g.w... | g | e | a | e | a | x | x | x | a | e | a | e | g | x | x | x | 4 | 4 | 2 | 4 | 2 |
1,322 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.r: A = None
self.txt = txt
d = A("d")
j = B("j")
e = B("e")
i = B("i")
b = B("b")
d.s = b
j.t = d
j.r = d
e.t = d
e.r = d
i.t = d
i.r = d... | d" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.r: A = None
self.txt = txt
d = A("d")
j = B("j")
e = B("e")
i = B("i")
b = B("b")
d.s = b
j.t = d
j.r = d
e.t = d
e.r = d
i.t = d
i.r = d... | j | d | b | d | b | d | x | x | d | b | d | b | d | j | x | x | 5 | 5 | 2 | 5 | 3 |
1,323 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
i = B("i")
g = B("g")
h = A("h")
d = B("d")
e.s = h
i.w = g
g.w = i
h.s = e
d.w = g
assert g.w.w.w.w.txt == " | g" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
i = B("i")
g = B("g")
h = A("h")
d = B("d")
e.s = h
i.w = g
g.w = i
h.s = e
d.w = g
assert g.w.w.w.w.txt == "g" | g | i | g | i | g | x | x | x | g | i | g | i | g | x | x | x | 5 | 5 | 2 | 4 | 3 |
1,324 | class A:
def __init__(self, txt: str):
self.p: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: B = None
self.txt = txt
b = A("b")
i = B("i")
j = B("j")
f = A("f")
g = A("g")
h = B("h")
a = A("a")
b.p = f
... | f" | class A:
def __init__(self, txt: str):
self.p: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: B = None
self.txt = txt
b = A("b")
i = B("i")
j = B("j")
f = A("f")
g = A("g")
h = B("h")
a = A("a")
b.p = f
... | g | i | b | f | x | x | x | x | f | b | i | g | x | x | x | x | 7 | 14 | 2 | 3 | 0 |
1,325 | 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.p: A = None
self.o: A = None
self.txt = txt
i = A("i")
h = B("h")
f = A("f")
c = A("c")
e = B("e")
i.y = e
i.p = e
h.p = i
h.o = ... | e" | 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.p: A = None
self.o: A = None
self.txt = txt
i = A("i")
h = B("h")
f = A("f")
c = A("c")
e = B("e")
i.y = e
i.p = e
h.p = i
h.o = ... | c | e | c | h | i | e | x | x | e | i | h | c | e | c | x | x | 5 | 7 | 2 | 5 | 2 |
1,326 | class A:
def __init__(self, txt: str):
self.w: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
b = A("b")
g = B("g")
j = A("j")
e = B("e")
a = B("a")
h = A("h")
b.w = h
b.p = j
g.q = j
j.w = h
j.p = b
e.q ... | b" | class A:
def __init__(self, txt: str):
self.w: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
b = A("b")
g = B("g")
j = A("j")
e = B("e")
a = B("a")
h = A("h")
b.w = h
b.p = j
g.q = j
j.w = h
j.p = b
e.q ... | a | b | h | j | h | j | b | x | b | j | h | j | h | b | a | x | 6 | 8 | 2 | 6 | 3 |
1,327 | class A:
def __init__(self, txt: str):
self.r: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
i = A("i")
d = B("d")
a = A("a")
i.r = a
i.p = a
d.s = a
a.r = i
a.p = i
assert i.r.r.p.txt == " | a" | class A:
def __init__(self, txt: str):
self.r: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
i = A("i")
d = B("d")
a = A("a")
i.r = a
i.p = a
d.s = a
a.r = i
a.p = i
assert i.r.r.p.txt == "a" | i | a | i | a | x | x | x | x | a | i | a | i | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
1,328 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
g = A("g")
e = B("e")
h = A("h")
c = B("c")
j = A("j")
d = A("d")
g.t = c
e.x = c
h.t = c
c.x = e
j.t = c
d.t = e
assert h.t.x.x.x.txt ... | e" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
g = A("g")
e = B("e")
h = A("h")
c = B("c")
j = A("j")
d = A("d")
g.t = c
e.x = c
h.t = c
c.x = e
j.t = c
d.t = e
assert h.t.x.x.x.txt ... | h | c | e | c | e | x | x | x | e | c | e | c | h | x | x | x | 6 | 6 | 2 | 4 | 2 |
1,329 | 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.s: A = None
self.txt = txt
g = A("g")
h = B("h")
c = B("c")
d = A("d")
j = A("j")
i = B("i")
a = B("a")
g.x = a
h.p = d
h.s = g
c.p = g
c... | a" | 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.s: A = None
self.txt = txt
g = A("g")
h = B("h")
c = B("c")
d = A("d")
j = A("j")
i = B("i")
a = B("a")
g.x = a
h.p = d
h.s = g
c.p = g
c... | d | a | d | a | x | x | x | x | a | d | a | d | x | x | x | x | 7 | 10 | 2 | 3 | 2 |
1,330 | class A:
def __init__(self, txt: str):
self.u: A = None
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
f = A("f")
i = B("i")
c = A("c")
h = A("h")
g = A("g")
f.u = c
f.r = i
i.v = g
i.x = ... | f" | class A:
def __init__(self, txt: str):
self.u: A = None
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
f = A("f")
i = B("i")
c = A("c")
h = A("h")
g = A("g")
f.u = c
f.r = i
i.v = g
i.x = ... | c | i | g | i | f | x | x | x | f | i | g | i | c | x | x | x | 5 | 10 | 2 | 4 | 1 |
1,331 | 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.y: B = None
self.o: B = None
self.txt = txt
a = A("a")
h = B("h")
e = B("e")
g = A("g")
a.r = e
a.y = e
h.y = e
h.o = e
e.y = h
e... | e" | 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.y: B = None
self.o: B = None
self.txt = txt
a = A("a")
h = B("h")
e = B("e")
g = A("g")
a.r = e
a.y = e
h.y = e
h.o = e
e.y = h
e... | h | e | h | e | x | x | x | x | e | h | e | h | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
1,332 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.w: B = None
self.txt = txt
f = A("f")
e = B("e")
h = A("h")
c = B("c")
g = A("g")
a = A("a")
b = A("b")
f.u = g
e.q = g
e.w = c
h.u = b
c... | a" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.w: B = None
self.txt = txt
f = A("f")
e = B("e")
h = A("h")
c = B("c")
g = A("g")
a = A("a")
b = A("b")
f.u = g
e.q = g
e.w = c
h.u = b
c... | e | c | e | g | a | x | x | x | a | g | e | c | e | x | x | x | 7 | 9 | 2 | 4 | 1 |
1,333 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.z: A = None
self.txt = txt
e = A("e")
d = B("d")
i = A("i")
e.z = d
d.y = e
d.z = i
i.z = d
assert d.z.z.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.z: A = None
self.txt = txt
e = A("e")
d = B("d")
i = A("i")
e.z = d
d.y = e
d.z = i
i.z = d
assert d.z.z.y.txt == "e" | d | i | d | e | x | x | x | x | e | d | i | d | x | x | x | x | 3 | 4 | 2 | 3 | 1 |
1,334 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
d = A("d")
h = B("h")
j = B("j")
d.s = j
h.r = d
j.r = d
assert d.s.r.s.txt == " | j" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
d = A("d")
h = B("h")
j = B("j")
d.s = j
h.r = d
j.r = d
assert d.s.r.s.txt == "j" | d | j | d | j | x | x | x | x | j | d | j | d | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
1,335 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
g = A("g")
h = B("h")
c = B("c")
g.t = c
h.z = c
c.z = h
assert g.t.z.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
g = A("g")
h = B("h")
c = B("c")
g.t = c
h.z = c
c.z = h
assert g.t.z.z.txt == "c" | g | c | h | c | x | x | x | x | c | h | c | g | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
1,336 | class A:
def __init__(self, txt: str):
self.x: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.z: A = None
self.txt = txt
c = A("c")
i = B("i")
d = A("d")
a = B("a")
e = B("e")
c.x = d
c.s = a
i.o = d
i.z = ... | e" | class A:
def __init__(self, txt: str):
self.x: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.z: A = None
self.txt = txt
c = A("c")
i = B("i")
d = A("d")
a = B("a")
e = B("e")
c.x = d
c.s = a
i.o = d
i.z = ... | i | d | c | d | e | x | x | x | e | d | c | d | i | x | x | x | 5 | 10 | 2 | 4 | 1 |
1,337 | class A:
def __init__(self, txt: str):
self.z: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
e = A("e")
h = B("h")
d = A("d")
i = B("i")
f = B("f")
c = A("c")
e.z = d
e.x = c
h.s = c
d.z = e
d.x = c
i.s ... | d" | class A:
def __init__(self, txt: str):
self.z: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
e = A("e")
h = B("h")
d = A("d")
i = B("i")
f = B("f")
c = A("c")
e.z = d
e.x = c
h.s = c
d.z = e
d.x = c
i.s ... | h | c | d | c | d | x | x | x | d | c | d | c | h | x | x | x | 6 | 8 | 2 | 4 | 2 |
1,338 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
h = A("h")
e = B("e")
a = B("a")
g = A("g")
f = B("f")
h.y = g
e.o = h
a.o = g
g.y = h
f.o = g
assert e.o.y.y.y.txt == " | g" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
h = A("h")
e = B("e")
a = B("a")
g = A("g")
f = B("f")
h.y = g
e.o = h
a.o = g
g.y = h
f.o = g
assert e.o.y.y.y.txt == "g" | e | h | g | h | g | x | x | x | g | h | g | h | e | x | x | x | 5 | 5 | 2 | 4 | 2 |
1,339 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
i = A("i")
d = B("d")
a = B("a")
e = A("e")
g = A("g")
i.u = g
d.s = a
a.s = d
e.u = g
g.u = e
assert e.u.u.u.u.u.txt == " | g" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
i = A("i")
d = B("d")
a = B("a")
e = A("e")
g = A("g")
i.u = g
d.s = a
a.s = d
e.u = g
g.u = e
assert e.u.u.u.u.u.txt == "g" | e | g | e | g | e | g | x | x | g | e | g | e | g | e | x | x | 5 | 5 | 2 | 5 | 4 |
1,340 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
f = A("f")
i = B("i")
d = A("d")
b = B("b")
h = B("h")
g = B("g")
c = A("c")
f.o = d
i.w = c
d.o = f
b.w = c
h.w = c
g.w = f
c.o = d
as... | f" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
f = A("f")
i = B("i")
d = A("d")
b = B("b")
h = B("h")
g = B("g")
c = A("c")
f.o = d
i.w = c
d.o = f
b.w = c
h.w = c
g.w = f
c.o = d
as... | c | d | f | d | f | d | f | x | f | d | f | d | f | d | c | x | 7 | 7 | 2 | 6 | 4 |
1,341 | class A:
def __init__(self, txt: str):
self.r: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.r: A = None
self.txt = txt
h = A("h")
d = B("d")
g = B("g")
f = B("f")
b = A("b")
i = B("i")
h.r = i
h.t = b
d.v... | i" | class A:
def __init__(self, txt: str):
self.r: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.r: A = None
self.txt = txt
h = A("h")
d = B("d")
g = B("g")
f = B("f")
b = A("b")
i = B("i")
h.r = i
h.t = b
d.v... | f | b | h | b | d | h | i | x | i | h | d | b | h | b | f | x | 6 | 9 | 2 | 6 | 2 |
1,342 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.s: B = None
self.txt = txt
i = A("i")
e = B("e")
j = B("j")
g = A("g")
b = A("b")
h = A("h")
a = B("a")
i.r = j
e.w = a
e.s = a
j.w = e
j... | e" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.s: B = None
self.txt = txt
i = A("i")
e = B("e")
j = B("j")
g = A("g")
b = A("b")
h = A("h")
a = B("a")
i.r = j
e.w = a
e.s = a
j.w = e
j... | i | j | a | e | a | j | a | e | e | a | j | a | e | a | j | i | 7 | 9 | 2 | 7 | 4 |
1,343 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.w: B = None
self.txt = txt
i = A("i")
a = B("a")
g = B("g")
c = A("c")
e = A("e")
j = A("j")
f = A("f")
i.w = g
a.t = g
a.w = g
g.t = a
g... | a" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.w: B = None
self.txt = txt
i = A("i")
a = B("a")
g = B("g")
c = A("c")
e = A("e")
j = A("j")
f = A("f")
i.w = g
a.t = g
a.w = g
g.t = a
g... | e | a | g | a | g | a | g | a | a | g | a | g | a | g | a | e | 7 | 7 | 2 | 7 | 5 |
1,344 | class A:
def __init__(self, txt: str):
self.r: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.z: B = None
self.txt = txt
d = A("d")
c = B("c")
f = B("f")
j = B("j")
h = A("h")
g = B("g")
d.r = h
d.y = c
c.x... | g" | class A:
def __init__(self, txt: str):
self.r: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.z: B = None
self.txt = txt
d = A("d")
c = B("c")
f = B("f")
j = B("j")
h = A("h")
g = B("g")
d.r = h
d.y = c
c.x... | g | f | c | g | x | x | x | x | g | c | f | g | x | x | x | x | 6 | 10 | 2 | 3 | 1 |
1,345 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
i = A("i")
e = B("e")
g = A("g")
a = A("a")
j = B("j")
d = B("d")
i.u = a
e.s = i
g.u = i
a.u = g
j.s = i
d.s = i
assert i.u.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.s: A = None
self.txt = txt
i = A("i")
e = B("e")
g = A("g")
a = A("a")
j = B("j")
d = B("d")
i.u = a
e.s = i
g.u = i
a.u = g
j.s = i
d.s = i
assert i.u.u.u.u.txt ... | i | a | g | i | a | x | x | x | a | i | g | a | i | x | x | x | 6 | 6 | 2 | 4 | 2 |
1,346 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
c = A("c")
a = B("a")
i = A("i")
c.x = a
a.u = c
i.x = a
assert c.x.u.x.txt == " | a" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
c = A("c")
a = B("a")
i = A("i")
c.x = a
a.u = c
i.x = a
assert c.x.u.x.txt == "a" | c | a | c | a | x | x | x | x | a | c | a | c | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
1,347 | class A:
def __init__(self, txt: str):
self.y: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
h = A("h")
g = B("g")
d = A("d")
c = A("c")
h.y = g
h.w = d
g.z = d
d.y = g
d.w = c
c.y = g
c.w = d
assert h.w... | g" | class A:
def __init__(self, txt: str):
self.y: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
h = A("h")
g = B("g")
d = A("d")
c = A("c")
h.y = g
h.w = d
g.z = d
d.y = g
d.w = c
c.y = g
c.w = d
assert h.w... | h | d | c | d | g | x | x | x | g | d | c | d | h | x | x | x | 4 | 7 | 2 | 4 | 1 |
1,348 | class A:
def __init__(self, txt: str):
self.y: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.s: A = None
self.txt = txt
b = A("b")
e = B("e")
c = A("c")
h = A("h")
a = B("a")
b.y = c
b.x = h
e.r = a
e.s = ... | c" | class A:
def __init__(self, txt: str):
self.y: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.s: A = None
self.txt = txt
b = A("b")
e = B("e")
c = A("c")
h = A("h")
a = B("a")
b.y = c
b.x = h
e.r = a
e.s = ... | b | c | h | c | x | x | x | x | c | h | c | b | x | x | x | x | 5 | 10 | 2 | 3 | 1 |
1,349 | class A:
def __init__(self, txt: str):
self.y: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
b = A("b")
c = B("c")
e = B("e")
i = B("i")
g = A("g")
a = B("a")
b.y = g
b.z = a
c.r = b
e.r = b
i.r = g
g.y ... | g" | class A:
def __init__(self, txt: str):
self.y: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
b = A("b")
c = B("c")
e = B("e")
i = B("i")
g = A("g")
a = B("a")
b.y = g
b.z = a
c.r = b
e.r = b
i.r = g
g.y ... | g | e | b | g | x | x | x | x | g | b | e | g | x | x | x | x | 6 | 8 | 2 | 3 | 1 |
1,350 | class A:
def __init__(self, txt: str):
self.w: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.t: A = None
self.txt = txt
h = A("h")
a = B("a")
b = B("b")
f = A("f")
i = B("i")
c = A("c")
h.w = b
h.o = f
a.s... | f" | class A:
def __init__(self, txt: str):
self.w: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.t: A = None
self.txt = txt
h = A("h")
a = B("a")
b = B("b")
f = A("f")
i = B("i")
c = A("c")
h.w = b
h.o = f
a.s... | a | f | h | f | x | x | x | x | f | h | f | a | x | x | x | x | 6 | 12 | 2 | 3 | 1 |
1,351 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
i = A("i")
g = B("g")
e = A("e")
i.u = g
g.x = i
e.u = g
assert e.u.x.u.txt == " | g" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
i = A("i")
g = B("g")
e = A("e")
i.u = g
g.x = i
e.u = g
assert e.u.x.u.txt == "g" | e | g | i | g | x | x | x | x | g | i | g | e | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
1,352 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.q: A = None
self.txt = txt
d = A("d")
i = B("i")
c = B("c")
e = A("e")
b = A("b")
a = A("a")
f = B("f")
d.v = e
i.x = c
i.q = b
c.x = f
c... | e" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.q: A = None
self.txt = txt
d = A("d")
i = B("i")
c = B("c")
e = A("e")
b = A("b")
a = A("a")
f = B("f")
d.v = e
i.x = c
i.q = b
c.x = f
c... | b | d | e | d | e | d | e | x | e | d | e | d | e | d | b | x | 7 | 10 | 2 | 6 | 4 |
1,353 | class A:
def __init__(self, txt: str):
self.s: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
j = A("j")
h = B("h")
c = B("c")
i = B("i")
g = B("g")
d = A("d")
a = A("a")
j.s = g
j.x = a
h.z = j
c.z = j
i... | g" | class A:
def __init__(self, txt: str):
self.s: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
j = A("j")
h = B("h")
c = B("c")
i = B("i")
g = B("g")
d = A("d")
a = A("a")
j.s = g
j.x = a
h.z = j
c.z = j
i... | j | g | a | d | g | x | x | x | g | d | a | g | j | x | x | x | 7 | 10 | 2 | 4 | 1 |
1,354 | class A:
def __init__(self, txt: str):
self.u: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
i = A("i")
d = B("d")
g = B("g")
h = A("h")
j = A("j")
b = B("b")
c = A("c")
i.u = g
i.t = h
d.q = j
g.q = j
h... | j" | class A:
def __init__(self, txt: str):
self.u: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
i = A("i")
d = B("d")
g = B("g")
h = A("h")
j = A("j")
b = B("b")
c = A("c")
i.u = g
i.t = h
d.q = j
g.q = j
h... | b | i | g | j | x | x | x | x | j | g | i | b | x | x | x | x | 7 | 11 | 2 | 3 | 0 |
1,355 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.t: B = None
self.txt = txt
i = A("i")
e = B("e")
b = B("b")
i.v = b
e.p = i
e.t = b
b.p = i
b.t = e
assert b.t.t.t.txt == " | e" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.t: B = None
self.txt = txt
i = A("i")
e = B("e")
b = B("b")
i.v = b
e.p = i
e.t = b
b.p = i
b.t = e
assert b.t.t.t.txt == "e" | b | e | b | e | x | x | x | x | e | b | e | b | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
1,356 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
c = A("c")
d = B("d")
b = A("b")
c.r = d
d.u = b
b.r = d
assert b.r.u.r.txt == " | d" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
c = A("c")
d = B("d")
b = A("b")
c.r = d
d.u = b
b.r = d
assert b.r.u.r.txt == "d" | b | d | b | d | x | x | x | x | d | b | d | b | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
1,357 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
h = A("h")
d = B("d")
j = A("j")
g = B("g")
c = A("c")
b = A("b")
h.o = d
d.u = g
j.o = g
g.u = d
c.o = d
b.o = g
assert h.o.u.u.u.txt ... | g" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
h = A("h")
d = B("d")
j = A("j")
g = B("g")
c = A("c")
b = A("b")
h.o = d
d.u = g
j.o = g
g.u = d
c.o = d
b.o = g
assert h.o.u.u.u.txt ... | h | d | g | d | g | x | x | x | g | d | g | d | h | x | x | x | 6 | 6 | 2 | 4 | 2 |
1,358 | 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.z: B = None
self.w: A = None
self.txt = txt
i = A("i")
j = B("j")
d = A("d")
c = B("c")
a = B("a")
g = A("g")
h = B("h")
i.p = a
... | 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.z: B = None
self.w: A = None
self.txt = txt
i = A("i")
j = B("j")
d = A("d")
c = B("c")
a = B("a")
g = A("g")
h = B("h")
i.p = a
... | a | c | d | h | d | h | x | x | h | d | h | d | c | a | x | x | 7 | 14 | 2 | 5 | 2 |
1,359 | class A:
def __init__(self, txt: str):
self.s: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
d = A("d")
a = B("a")
i = A("i")
j = A("j")
e = B("e")
h = B("h")
f = A("f")
d.s = a
d.z = a
a.x = i
i.s = e
i... | a" | class A:
def __init__(self, txt: str):
self.s: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
d = A("d")
a = B("a")
i = A("i")
j = A("j")
e = B("e")
h = B("h")
f = A("f")
d.s = a
d.z = a
a.x = i
i.s = e
i... | f | e | d | a | i | e | d | a | a | d | e | i | a | d | e | f | 7 | 10 | 2 | 7 | 3 |
1,360 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.u: A = None
self.txt = txt
g = A("g")
a = B("a")
f = B("f")
g.s = f
a.r = f
a.u = g
f.r = a
f.u = g
assert g.s.r.u.txt == " | g" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.u: A = None
self.txt = txt
g = A("g")
a = B("a")
f = B("f")
g.s = f
a.r = f
a.u = g
f.r = a
f.u = g
assert g.s.r.u.txt == "g" | g | f | a | g | x | x | x | x | g | a | f | g | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
1,361 | 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
h = A("h")
j = B("j")
d = B("d")
b = B("b")
f = A("f")
h.s = f
j.o = f
d.o = h
b.o = f
f.s = h
assert d.o.s.s.s.txt == " | f" | 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
h = A("h")
j = B("j")
d = B("d")
b = B("b")
f = A("f")
h.s = f
j.o = f
d.o = h
b.o = f
f.s = h
assert d.o.s.s.s.txt == "f" | d | h | f | h | f | x | x | x | f | h | f | h | d | x | x | x | 5 | 5 | 2 | 4 | 2 |
1,362 | class A:
def __init__(self, txt: str):
self.r: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.r: A = None
self.txt = txt
c = A("c")
i = B("i")
j = B("j")
c.r = j
c.x = j
i.t = j
i.r = c
j.t = i
j.r = c
asse... | c" | class A:
def __init__(self, txt: str):
self.r: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.r: A = None
self.txt = txt
c = A("c")
i = B("i")
j = B("j")
c.r = j
c.x = j
i.t = j
i.r = c
j.t = i
j.r = c
asse... | c | j | i | c | x | x | x | x | c | i | j | c | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
1,363 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.u: A = None
self.txt = txt
d = A("d")
f = B("f")
b = B("b")
c = B("c")
d.o = c
f.p = d
f.u = d
b.p = d
b.u = d
c.p = d
c.u = d
assert c.p... | d" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.u: A = None
self.txt = txt
d = A("d")
f = B("f")
b = B("b")
c = B("c")
d.o = c
f.p = d
f.u = d
b.p = d
b.u = d
c.p = d
c.u = d
assert c.p... | c | d | c | d | x | x | x | x | d | c | d | c | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
1,364 | class A:
def __init__(self, txt: str):
self.x: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
f = A("f")
d = B("d")
h = B("h")
j = B("j")
a = A("a")
i = B("i")
f.x = a
f.z = d
d.x = h
h.x = j
j.x = d
a.x ... | j" | class A:
def __init__(self, txt: str):
self.x: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
f = A("f")
d = B("d")
h = B("h")
j = B("j")
a = A("a")
i = B("i")
f.x = a
f.z = d
d.x = h
h.x = j
j.x = d
a.x ... | d | h | j | d | h | j | x | x | j | h | d | j | h | d | x | x | 6 | 8 | 2 | 5 | 3 |
1,365 | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.s: B = None
self.txt = txt
d = A("d")
e = B("e")
g = A("g")
f = B("f")
c = B("c")
d.z = f
d.s = g
e.y = d
e.s = ... | d" | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.s: B = None
self.txt = txt
d = A("d")
e = B("e")
g = A("g")
f = B("f")
c = B("c")
d.z = f
d.s = g
e.y = d
e.s = ... | c | d | g | d | x | x | x | x | d | g | d | c | x | x | x | x | 5 | 10 | 2 | 3 | 1 |
1,366 | class A:
def __init__(self, txt: str):
self.x: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
f = A("f")
b = B("b")
a = B("a")
g = B("g")
c = A("c")
f.x = b
f.z = c
b.y = g
a.y = b
g.y = b
c.x = g
c.z = f... | g" | class A:
def __init__(self, txt: str):
self.x: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
f = A("f")
b = B("b")
a = B("a")
g = B("g")
c = A("c")
f.x = b
f.z = c
b.y = g
a.y = b
g.y = b
c.x = g
c.z = f... | g | b | g | b | g | x | x | x | g | b | g | b | g | x | x | x | 5 | 7 | 2 | 4 | 3 |
1,367 | class A:
def __init__(self, txt: str):
self.w: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.u: A = None
self.txt = txt
j = A("j")
h = B("h")
b = B("b")
f = B("f")
i = B("i")
a = A("a")
j.w = a
j.v = a
h.v... | a" | class A:
def __init__(self, txt: str):
self.w: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.u: A = None
self.txt = txt
j = A("j")
h = B("h")
b = B("b")
f = B("f")
i = B("i")
a = A("a")
j.w = a
j.v = a
h.v... | f | a | j | a | x | x | x | x | a | j | a | f | x | x | x | x | 6 | 7 | 2 | 3 | 1 |
1,368 | class A:
def __init__(self, txt: str):
self.z: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.w: B = None
self.txt = txt
i = A("i")
f = B("f")
h = A("h")
j = A("j")
a = A("a")
c = B("c")
g = B("g")
i.z = c
... | c" | class A:
def __init__(self, txt: str):
self.z: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.w: B = None
self.txt = txt
i = A("i")
f = B("f")
h = A("h")
j = A("j")
a = A("a")
c = B("c")
g = B("g")
i.z = c
... | g | c | g | f | g | f | g | c | c | g | f | g | f | g | c | g | 7 | 12 | 2 | 7 | 5 |
1,369 | 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.w: B = None
self.txt = txt
f = A("f")
b = B("b")
c = A("c")
d = B("d")
i = B("i")
f.x = i
f.q = i
b.w = d
c.x = i
c.q = d
d.w = i
i.w = d... | i" | 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.w: B = None
self.txt = txt
f = A("f")
b = B("b")
c = A("c")
d = B("d")
i = B("i")
f.x = i
f.q = i
b.w = d
c.x = i
c.q = d
d.w = i
i.w = d... | c | i | d | i | d | i | x | x | i | d | i | d | i | c | x | x | 5 | 6 | 2 | 5 | 3 |
1,370 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
d = A("d")
e = B("e")
f = B("f")
i = A("i")
d.q = i
e.y = i
f.y = i
i.q = d
assert e.y.q.q.q.txt == " | d" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
d = A("d")
e = B("e")
f = B("f")
i = A("i")
d.q = i
e.y = i
f.y = i
i.q = d
assert e.y.q.q.q.txt == "d" | e | i | d | i | d | x | x | x | d | i | d | i | e | x | x | x | 4 | 4 | 2 | 4 | 2 |
1,371 | 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
c = A("c")
b = B("b")
e = A("e")
c.r = e
b.y = e
e.r = c
assert e.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.y: A = None
self.txt = txt
c = A("c")
b = B("b")
e = A("e")
c.r = e
b.y = e
e.r = c
assert e.r.r.r.txt == "c" | e | c | e | c | x | x | x | x | c | e | c | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
1,372 | class A:
def __init__(self, txt: str):
self.s: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.v: B = None
self.txt = txt
g = A("g")
j = B("j")
b = B("b")
g.s = j
g.q = b
j.w = b
j.v = b
b.w = j
b.v = j
asse... | b" | class A:
def __init__(self, txt: str):
self.s: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.v: B = None
self.txt = txt
g = A("g")
j = B("j")
b = B("b")
g.s = j
g.q = b
j.w = b
j.v = b
b.w = j
b.v = j
asse... | j | b | j | b | x | x | x | x | b | j | b | j | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
1,373 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
j = A("j")
i = B("i")
e = B("e")
a = A("a")
f = B("f")
g = B("g")
j.v = a
i.x = j
e.x = a
a.v = j
f.x = a
g.x = j
assert a.v.v.v.v.txt ... | a" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
j = A("j")
i = B("i")
e = B("e")
a = A("a")
f = B("f")
g = B("g")
j.v = a
i.x = j
e.x = a
a.v = j
f.x = a
g.x = j
assert a.v.v.v.v.txt ... | a | j | a | j | a | x | x | x | a | j | a | j | a | x | x | x | 6 | 6 | 2 | 4 | 3 |
1,374 | class A:
def __init__(self, txt: str):
self.r: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
b = A("b")
g = B("g")
a = B("a")
j = A("j")
e = B("e")
d = B("d")
b.r = j
b.o = j
g.s = j
a.s = b
j.r = b
j.o ... | b" | class A:
def __init__(self, txt: str):
self.r: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
b = A("b")
g = B("g")
a = B("a")
j = A("j")
e = B("e")
d = B("d")
b.r = j
b.o = j
g.s = j
a.s = b
j.r = b
j.o ... | e | j | b | j | b | j | b | x | b | j | b | j | b | j | e | x | 6 | 6 | 2 | 6 | 4 |
1,375 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.w: B = None
self.txt = txt
h = A("h")
j = B("j")
b = A("b")
c = B("c")
a = B("a")
f = B("f")
h.r = b
j.q = h
j.w = f
b.r = h
c.q = b
c.w ... | b" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.w: B = None
self.txt = txt
h = A("h")
j = B("j")
b = A("b")
c = B("c")
a = B("a")
f = B("f")
h.r = b
j.q = h
j.w = f
b.r = h
c.q = b
c.w ... | j | h | b | h | b | x | x | x | b | h | b | h | j | x | x | x | 6 | 10 | 2 | 4 | 2 |
1,376 | class A:
def __init__(self, txt: str):
self.u: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.w: B = None
self.txt = txt
a = A("a")
i = B("i")
h = B("h")
b = B("b")
j = B("j")
a.u = b
a.y = i
i.s = a
i.w = ... | b" | class A:
def __init__(self, txt: str):
self.u: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.w: B = None
self.txt = txt
a = A("a")
i = B("i")
h = B("h")
b = B("b")
j = B("j")
a.u = b
a.y = i
i.s = a
i.w = ... | h | a | b | a | b | x | x | x | b | a | b | a | h | x | x | x | 5 | 10 | 2 | 4 | 2 |
1,377 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
c = A("c")
g = B("g")
b = A("b")
f = A("f")
c.o = g
g.t = f
b.o = g
f.o = g
assert f.o.t.o.txt == " | g" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
c = A("c")
g = B("g")
b = A("b")
f = A("f")
c.o = g
g.t = f
b.o = g
f.o = g
assert f.o.t.o.txt == "g" | f | g | f | g | x | x | x | x | g | f | g | f | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
1,378 | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
i = A("i")
a = B("a")
h = B("h")
i.q = a
i.x = a
a.r = h
h.r = a
assert a.r.r.r.txt == " | h" | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
i = A("i")
a = B("a")
h = B("h")
i.q = a
i.x = a
a.r = h
h.r = a
assert a.r.r.r.txt == "h" | a | h | a | h | x | x | x | x | h | a | h | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
1,379 | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
g = A("g")
e = B("e")
h = A("h")
j = B("j")
a = B("a")
c = B("c")
g.y = c
g.q = h
e.r... | c" | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
g = A("g")
e = B("e")
h = A("h")
j = B("j")
a = B("a")
c = B("c")
g.y = c
g.q = h
e.r... | h | e | g | c | h | g | c | x | c | g | h | c | g | e | h | x | 6 | 9 | 2 | 6 | 3 |
1,380 | class A:
def __init__(self, txt: str):
self.u: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.p: B = None
self.txt = txt
a = A("a")
h = B("h")
e = B("e")
c = B("c")
d = B("d")
f = A("f")
i = B("i")
a.u = f
... | a" | class A:
def __init__(self, txt: str):
self.u: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.p: B = None
self.txt = txt
a = A("a")
h = B("h")
e = B("e")
c = B("c")
d = B("d")
f = A("f")
i = B("i")
a.u = f
... | a | f | a | f | a | f | a | x | a | f | a | f | a | f | a | x | 7 | 11 | 2 | 6 | 5 |
1,381 | class A:
def __init__(self, txt: str):
self.o: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
g = B("g")
f = A("f")
h = B("h")
c.o = f
c.t = f
g.s = f
f.o = c
f.t = c
h.s = c
assert h.s.o.o.txt... | c" | class A:
def __init__(self, txt: str):
self.o: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
g = B("g")
f = A("f")
h = B("h")
c.o = f
c.t = f
g.s = f
f.o = c
f.t = c
h.s = c
assert h.s.o.o.txt... | h | c | f | c | x | x | x | x | c | f | c | h | x | x | x | x | 4 | 4 | 2 | 3 | 1 |
1,382 | class A:
def __init__(self, txt: str):
self.r: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.s: B = None
self.txt = txt
b = A("b")
h = B("h")
e = A("e")
c = A("c")
f = B("f")
b.r = e
b.p = e
h.t = f
h.s = ... | e" | class A:
def __init__(self, txt: str):
self.r: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.s: B = None
self.txt = txt
b = A("b")
h = B("h")
e = A("e")
c = A("c")
f = B("f")
b.r = e
b.p = e
h.t = f
h.s = ... | b | e | c | e | x | x | x | x | e | c | e | b | x | x | x | x | 5 | 5 | 2 | 3 | 1 |
1,383 | 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.q: A = None
self.txt = txt
g = A("g")
d = B("d")
f = B("f")
g.r = d
d.o = g
d.q = g
f.o = g
f.q = g
assert f.q.r.q.txt == " | g" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.q: A = None
self.txt = txt
g = A("g")
d = B("d")
f = B("f")
g.r = d
d.o = g
d.q = g
f.o = g
f.q = g
assert f.q.r.q.txt == "g" | f | g | d | g | x | x | x | x | g | d | g | f | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
1,384 | 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.t: A = None
self.txt = txt
e = A("e")
g = B("g")
a = B("a")
c = A("c")
i = B("i")
h = B("h")
d = B("d")
e.v = i
g.x = i
g.t = c
a.x = h
a... | e" | 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.t: A = None
self.txt = txt
e = A("e")
g = B("g")
a = B("a")
c = A("c")
i = B("i")
h = B("h")
d = B("d")
e.v = i
g.x = i
g.t = c
a.x = h
a... | d | e | i | c | d | e | x | x | e | d | c | i | e | d | x | x | 7 | 12 | 2 | 5 | 2 |
1,385 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: B = None
self.txt = txt
c = A("c")
e = B("e")
b = A("b")
d = B("d")
f = B("f")
h = B("h")
g = A("g")
c.u = d
e.z = g
e.v = d
b.u = f
d... | d" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: B = None
self.txt = txt
c = A("c")
e = B("e")
b = A("b")
d = B("d")
f = B("f")
h = B("h")
g = A("g")
c.u = d
e.z = g
e.v = d
b.u = f
d... | g | d | e | d | x | x | x | x | d | e | d | g | x | x | x | x | 7 | 11 | 2 | 3 | 1 |
1,386 | 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.txt = txt
g = A("g")
h = B("h")
j = A("j")
g.z = h
h.p = g
j.z = h
assert g.z.p.z.txt == " | h" | 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.txt = txt
g = A("g")
h = B("h")
j = A("j")
g.z = h
h.p = g
j.z = h
assert g.z.p.z.txt == "h" | g | h | g | h | x | x | x | x | h | g | h | g | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
1,387 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
a = A("a")
j = B("j")
c = B("c")
f = B("f")
a.t = c
j.w = f
c.w = j
f.w = j
assert a.t.w.w.txt == " | f" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
a = A("a")
j = B("j")
c = B("c")
f = B("f")
a.t = c
j.w = f
c.w = j
f.w = j
assert a.t.w.w.txt == "f" | a | c | j | f | x | x | x | x | f | j | c | a | x | x | x | x | 4 | 4 | 2 | 3 | 0 |
1,388 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
c = A("c")
g = B("g")
i = B("i")
j = A("j")
c.y = j
g.r = c
i.r = j
j.y = c
assert j.y.y.y.y.txt == " | j" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
c = A("c")
g = B("g")
i = B("i")
j = A("j")
c.y = j
g.r = c
i.r = j
j.y = c
assert j.y.y.y.y.txt == "j" | j | c | j | c | j | x | x | x | j | c | j | c | j | x | x | x | 4 | 4 | 2 | 4 | 3 |
1,389 | 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
f = A("f")
b = B("b")
g = A("g")
e = B("e")
j = A("j")
f.p = b
b.o = e
g.p = e
e.o = b
j.p = b
assert e.o.o.o.o.o.txt == " | b" | 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
f = A("f")
b = B("b")
g = A("g")
e = B("e")
j = A("j")
f.p = b
b.o = e
g.p = e
e.o = b
j.p = b
assert e.o.o.o.o.o.txt == "b" | e | b | e | b | e | b | x | x | b | e | b | e | b | e | x | x | 5 | 5 | 2 | 5 | 4 |
1,390 | 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.txt = txt
h = A("h")
e = B("e")
g = A("g")
d = B("d")
f = B("f")
h.v = f
e.r = h
g.v = f
d.r = h
f.r = h
assert f.r.v.r.v.txt == " | f" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
h = A("h")
e = B("e")
g = A("g")
d = B("d")
f = B("f")
h.v = f
e.r = h
g.v = f
d.r = h
f.r = h
assert f.r.v.r.v.txt == "f" | f | h | f | h | f | x | x | x | f | h | f | h | f | x | x | x | 5 | 5 | 2 | 4 | 3 |
1,391 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
c = A("c")
h = B("h")
e = A("e")
d = B("d")
a = A("a")
f = B("f")
c.z = d
h.p = d
e.z = f
d.p = h
a.z = d
f.p = h
assert d.p.p.p.p.p.p.... | d" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
c = A("c")
h = B("h")
e = A("e")
d = B("d")
a = A("a")
f = B("f")
c.z = d
h.p = d
e.z = f
d.p = h
a.z = d
f.p = h
assert d.p.p.p.p.p.p.... | d | h | d | h | d | h | d | x | d | h | d | h | d | h | d | x | 6 | 6 | 2 | 6 | 5 |
1,392 | class A:
def __init__(self, txt: str):
self.q: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.o: B = None
self.txt = txt
j = A("j")
e = B("e")
c = B("c")
d = A("d")
f = B("f")
j.q = c
j.r = d
e.v = f
e.o = ... | c" | class A:
def __init__(self, txt: str):
self.q: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.o: B = None
self.txt = txt
j = A("j")
e = B("e")
c = B("c")
d = A("d")
f = B("f")
j.q = c
j.r = d
e.v = f
e.o = ... | d | j | d | j | c | x | x | x | c | j | d | j | d | x | x | x | 5 | 8 | 2 | 4 | 2 |
1,393 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.p: B = None
self.txt = txt
c = A("c")
j = B("j")
d = B("d")
h = A("h")
c.o = d
j.v = d
j.p = d
d.v = j
d.p = j
h.o = d
assert j.v.v.v.p.t... | j" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.p: B = None
self.txt = txt
c = A("c")
j = B("j")
d = B("d")
h = A("h")
c.o = d
j.v = d
j.p = d
d.v = j
d.p = j
h.o = d
assert j.v.v.v.p.t... | j | d | j | d | j | x | x | x | j | d | j | d | j | x | x | x | 4 | 4 | 2 | 4 | 3 |
1,394 | class A:
def __init__(self, txt: str):
self.v: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
c = A("c")
f = B("f")
g = A("g")
i = A("i")
b = B("b")
a = A("a")
c.v = b
c.z = g
f.v = b
g.v = b
g.z = i
i.v ... | a" | class A:
def __init__(self, txt: str):
self.v: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
c = A("c")
f = B("f")
g = A("g")
i = A("i")
b = B("b")
a = A("a")
c.v = b
c.z = g
f.v = b
g.v = b
g.z = i
i.v ... | i | a | i | a | i | a | x | x | a | i | a | i | a | i | x | x | 6 | 10 | 2 | 5 | 4 |
1,395 | 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.z: B = None
self.txt = txt
e = A("e")
c = B("c")
h = B("h")
f = B("f")
j = A("j")
e.r = f
e.y = f
c.z = h
h.z = f
f.z = h
j.r = f
j.y = c... | h" | 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.z: B = None
self.txt = txt
e = A("e")
c = B("c")
h = B("h")
f = B("f")
j = A("j")
e.r = f
e.y = f
c.z = h
h.z = f
f.z = h
j.r = f
j.y = c... | h | f | h | f | h | x | x | x | h | f | h | f | h | x | x | x | 5 | 6 | 2 | 4 | 3 |
1,396 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
c = A("c")
d = B("d")
e = A("e")
a = B("a")
c.v = e
d.z = c
e.v = c
a.z = c
assert c.v.v.v.v.txt == " | c" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
c = A("c")
d = B("d")
e = A("e")
a = B("a")
c.v = e
d.z = c
e.v = c
a.z = c
assert c.v.v.v.v.txt == "c" | c | e | c | e | c | x | x | x | c | e | c | e | c | x | x | x | 4 | 4 | 2 | 4 | 3 |
1,397 | class A:
def __init__(self, txt: str):
self.r: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
j = A("j")
i = B("i")
c = A("c")
b = A("b")
a = A("a")
f = B("f")
j.r = i
j.y = a
i.v = a
c.r = f
c.y = a
b.r ... | f" | class A:
def __init__(self, txt: str):
self.r: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
j = A("j")
i = B("i")
c = A("c")
b = A("b")
a = A("a")
f = B("f")
j.r = i
j.y = a
i.v = a
c.r = f
c.y = a
b.r ... | f | c | f | c | f | c | f | x | f | c | f | c | f | c | f | x | 6 | 10 | 2 | 6 | 5 |
1,398 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.o: A = None
self.txt = txt
b = A("b")
j = B("j")
i = B("i")
c = A("c")
e = A("e")
h = A("h")
a = A("a")
b.q = h
j.y = i
j.o = c
i.y = j
i... | c" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.o: A = None
self.txt = txt
b = A("b")
j = B("j")
i = B("i")
c = A("c")
e = A("e")
h = A("h")
a = A("a")
b.q = h
j.y = i
j.o = c
i.y = j
i... | h | e | c | e | c | e | c | x | c | e | c | e | c | e | h | x | 7 | 9 | 2 | 6 | 4 |
1,399 | class A:
def __init__(self, txt: str):
self.q: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
h = A("h")
c = B("c")
a = A("a")
e = B("e")
i = A("i")
h.q = i
h.w = c
c.q = h
a.q = h
a.w = e
e.q = i
i.q = h... | c" | class A:
def __init__(self, txt: str):
self.q: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
h = A("h")
c = B("c")
a = A("a")
e = B("e")
i = A("i")
h.q = i
h.w = c
c.q = h
a.q = h
a.w = e
e.q = i
i.q = h... | c | h | c | h | i | c | x | x | c | i | h | c | h | c | x | x | 5 | 8 | 2 | 5 | 3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.