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