id int64 0 30k | prompt stringlengths 265 1.96k | answer stringclasses 10
values | pythoncode stringlengths 267 1.96k | depth0 stringclasses 10
values | depth1 stringclasses 10
values | depth2 stringclasses 10
values | depth3 stringclasses 10
values | depth4 stringclasses 11
values | depth5 stringclasses 11
values | depth6 stringclasses 11
values | depth7 stringclasses 11
values | depthn0 stringclasses 10
values | depthn1 stringclasses 10
values | depthn2 stringclasses 10
values | depthn3 stringclasses 10
values | depthn4 stringclasses 11
values | depthn5 stringclasses 11
values | depthn6 stringclasses 11
values | depthn7 stringclasses 11
values | num_nodes int64 3 7 | num_edges int64 3 30 | num_classes int64 2 7 | path_length int64 3 7 | num_cycle int64 0 6 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4,100 | class A:
def __init__(self, txt: str):
self.o: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.w: A = None
self.txt = txt
d = A("d")
f = B("f")
h = A("h")
j = B("j")
a = B("a")
d.o = h
d.t = j
f.u = d
f.w = ... | d" | class A:
def __init__(self, txt: str):
self.o: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.w: A = None
self.txt = txt
d = A("d")
f = B("f")
h = A("h")
j = B("j")
a = B("a")
d.o = h
d.t = j
f.u = d
f.w = ... | j | d | h | d | x | x | x | x | d | h | d | j | x | x | x | x | 5 | 8 | 2 | 3 | 1 |
4,101 | class A:
def __init__(self, txt: str):
self.t: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
e = A("e")
d = B("d")
j = A("j")
i = B("i")
c = B("c")
h = A("h")
e.t = d
e.r = d
d.q = j
j.t = c
j.r = i
i.q ... | i" | class A:
def __init__(self, txt: str):
self.t: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
e = A("e")
d = B("d")
j = A("j")
i = B("i")
c = B("c")
h = A("h")
e.t = d
e.r = d
d.q = j
j.t = c
j.r = i
i.q ... | j | i | e | d | j | i | x | x | i | j | d | e | i | j | x | x | 6 | 8 | 2 | 5 | 2 |
4,102 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
d = A("d")
f = B("f")
i = B("i")
a = A("a")
h = A("h")
d.v = h
f.p = i
i.p = f
a.v = d
h.v = d
assert f.p.p.p.p.txt == " | f" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
d = A("d")
f = B("f")
i = B("i")
a = A("a")
h = A("h")
d.v = h
f.p = i
i.p = f
a.v = d
h.v = d
assert f.p.p.p.p.txt == "f" | f | i | f | i | f | x | x | x | f | i | f | i | f | x | x | x | 5 | 5 | 2 | 4 | 3 |
4,103 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
f = A("f")
g = B("g")
j = B("j")
f.p = g
g.u = j
j.u = g
assert f.p.u.u.txt == " | g" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
f = A("f")
g = B("g")
j = B("j")
f.p = g
g.u = j
j.u = g
assert f.p.u.u.txt == "g" | f | g | j | g | x | x | x | x | g | j | g | f | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,104 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
g = A("g")
h = B("h")
j = A("j")
f = A("f")
i = B("i")
c = B("c")
g.x = f
h.z = g
j.x = f
f.x = j
i.z = j
c.z = j
assert i.z.x.x.txt ==... | j" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
g = A("g")
h = B("h")
j = A("j")
f = A("f")
i = B("i")
c = B("c")
g.x = f
h.z = g
j.x = f
f.x = j
i.z = j
c.z = j
assert i.z.x.x.txt ==... | i | j | f | j | x | x | x | x | j | f | j | i | x | x | x | x | 6 | 6 | 2 | 3 | 1 |
4,105 | class A:
def __init__(self, txt: str):
self.x: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
b = A("b")
d = B("d")
e = B("e")
h = A("h")
b.x = h
b.y = e
d.u = b
e.u = h
h.x = b
h.y = d
assert h.x.y.u.txt... | h" | class A:
def __init__(self, txt: str):
self.x: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
b = A("b")
d = B("d")
e = B("e")
h = A("h")
b.x = h
b.y = e
d.u = b
e.u = h
h.x = b
h.y = d
assert h.x.y.u.txt... | h | b | e | h | x | x | x | x | h | e | b | h | x | x | x | x | 4 | 6 | 2 | 3 | 1 |
4,106 | class A:
def __init__(self, txt: str):
self.q: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.r: A = None
self.txt = txt
i = A("i")
b = B("b")
f = A("f")
d = A("d")
j = B("j")
a = A("a")
i.q = j
i.u = a
b.s... | d" | class A:
def __init__(self, txt: str):
self.q: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.r: A = None
self.txt = txt
i = A("i")
b = B("b")
f = A("f")
d = A("d")
j = B("j")
a = A("a")
i.q = j
i.u = a
b.s... | i | a | f | d | x | x | x | x | d | f | a | i | x | x | x | x | 6 | 12 | 2 | 3 | 0 |
4,107 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
a = A("a")
f = B("f")
g = B("g")
d = B("d")
h = A("h")
e = B("e")
c = B("c")
a.x = g
f.u = g
g.u = e
d.u = c
h.x = f
e.u = c
c.u = g
as... | c" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
a = A("a")
f = B("f")
g = B("g")
d = B("d")
h = A("h")
e = B("e")
c = B("c")
a.x = g
f.u = g
g.u = e
d.u = c
h.x = f
e.u = c
c.u = g
as... | e | c | g | e | c | g | e | c | c | e | g | c | e | g | c | e | 7 | 7 | 2 | 7 | 5 |
4,108 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.u: B = None
self.txt = txt
d = A("d")
e = B("e")
a = B("a")
g = B("g")
b = A("b")
j = B("j")
i = B("i")
d.p = b
e.x = g
e.u = j
a.x = i
a... | e" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.u: B = None
self.txt = txt
d = A("d")
e = B("e")
a = B("a")
g = B("g")
b = A("b")
j = B("j")
i = B("i")
d.p = b
e.x = g
e.u = j
a.x = i
a... | i | j | g | a | e | x | x | x | e | a | g | j | i | x | x | x | 7 | 12 | 2 | 4 | 0 |
4,109 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.o: A = None
self.txt = txt
j = A("j")
h = B("h")
e = A("e")
j.z = h
h.v = e
h.o = j
e.z = h
assert j.z.v.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.v: A = None
self.o: A = None
self.txt = txt
j = A("j")
h = B("h")
e = A("e")
j.z = h
h.v = e
h.o = j
e.z = h
assert j.z.v.z.txt == "h" | j | h | e | h | x | x | x | x | h | e | h | j | x | x | x | x | 3 | 4 | 2 | 3 | 1 |
4,110 | class A:
def __init__(self, txt: str):
self.y: 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")
g = B("g")
e = A("e")
d.y = g
g.t = e
g.r = e
e.y = g
assert d.y.t.y.txt == " | g" | class A:
def __init__(self, txt: str):
self.y: 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")
g = B("g")
e = A("e")
d.y = g
g.t = e
g.r = e
e.y = g
assert d.y.t.y.txt == "g" | d | g | e | g | x | x | x | x | g | e | g | d | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,111 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
d = A("d")
i = B("i")
h = B("h")
b = A("b")
a = B("a")
c = A("c")
d.q = b
i.t = b
h.t = b
b.q = d
a.t = c
c.q = b
assert b.q.q.q.q.txt ... | b" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
d = A("d")
i = B("i")
h = B("h")
b = A("b")
a = B("a")
c = A("c")
d.q = b
i.t = b
h.t = b
b.q = d
a.t = c
c.q = b
assert b.q.q.q.q.txt ... | b | d | b | d | b | x | x | x | b | d | b | d | b | x | x | x | 6 | 6 | 2 | 4 | 3 |
4,112 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.q: A = None
self.txt = txt
a = A("a")
i = B("i")
j = B("j")
c = B("c")
g = B("g")
d = A("d")
a.p = c
i.s = j
i.q = a
j.s = i
j.q = a
c.s ... | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.q: A = None
self.txt = txt
a = A("a")
i = B("i")
j = B("j")
c = B("c")
g = B("g")
d = A("d")
a.p = c
i.s = j
i.q = a
j.s = i
j.q = a
c.s ... | j | i | j | a | c | i | a | x | a | i | c | a | j | i | j | x | 6 | 10 | 2 | 6 | 3 |
4,113 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.z: A = None
self.txt = txt
j = A("j")
c = B("c")
a = A("a")
g = B("g")
j.s = g
c.w = j
c.z = a
a.s = g
g.w = a
g.z = a
assert a.s.z.s.txt... | g" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.z: A = None
self.txt = txt
j = A("j")
c = B("c")
a = A("a")
g = B("g")
j.s = g
c.w = j
c.z = a
a.s = g
g.w = a
g.z = a
assert a.s.z.s.txt... | a | g | a | g | x | x | x | x | g | a | g | a | x | x | x | x | 4 | 5 | 2 | 3 | 2 |
4,114 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.t: B = None
self.txt = txt
a = A("a")
e = B("e")
c = B("c")
g = A("g")
h = B("h")
a.s = g
e.o = h
e.t = c
c.o = e
c.t = e
g.s = a
h.o = e... | a" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.t: B = None
self.txt = txt
a = A("a")
e = B("e")
c = B("c")
g = A("g")
h = B("h")
a.s = g
e.o = h
e.t = c
c.o = e
c.t = e
g.s = a
h.o = e... | g | a | g | a | g | a | x | x | a | g | a | g | a | g | x | x | 5 | 7 | 2 | 5 | 4 |
4,115 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
b = B("b")
e = B("e")
c.z = e
b.s = c
e.s = c
assert e.s.z.s.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
b = B("b")
e = B("e")
c.z = e
b.s = c
e.s = c
assert e.s.z.s.txt == "c" | e | c | e | c | x | x | x | x | c | e | c | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,116 | 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.txt = txt
a = A("a")
g = B("g")
e = B("e")
d = B("d")
h = A("h")
c = A("c")
a.q = c
g.o = a
e.o = c
d.o = c
h.q = a
c.q = h
assert h.q.q.q.q.q.tx... | c" | 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.txt = txt
a = A("a")
g = B("g")
e = B("e")
d = B("d")
h = A("h")
c = A("c")
a.q = c
g.o = a
e.o = c
d.o = c
h.q = a
c.q = h
assert h.q.q.q.q.q.tx... | h | a | c | h | a | c | x | x | c | a | h | c | a | h | x | x | 6 | 6 | 2 | 5 | 3 |
4,117 | class A:
def __init__(self, txt: str):
self.s: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
d = A("d")
i = B("i")
j = A("j")
g = A("g")
d.s = i
d.q = g
i.u = j
j.s = i
j.q = d
g.s = i
g.q = j
assert d.s... | j" | class A:
def __init__(self, txt: str):
self.s: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
d = A("d")
i = B("i")
j = A("j")
g = A("g")
d.s = i
d.q = g
i.u = j
j.s = i
j.q = d
g.s = i
g.q = j
assert d.s... | d | i | j | i | j | x | x | x | j | i | j | i | d | x | x | x | 4 | 7 | 2 | 4 | 2 |
4,118 | 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.t: B = None
self.txt = txt
d = A("d")
j = B("j")
c = B("c")
b = A("b")
g = B("g")
d.r = b
j.x = c
j.t = c
c.x = j
c.t = j
b.r = d
g.x = j... | b" | 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.t: B = None
self.txt = txt
d = A("d")
j = B("j")
c = B("c")
b = A("b")
g = B("g")
d.r = b
j.x = c
j.t = c
c.x = j
c.t = j
b.r = d
g.x = j... | d | b | d | b | d | b | x | x | b | d | b | d | b | d | x | x | 5 | 6 | 2 | 5 | 4 |
4,119 | 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.v: A = None
self.txt = txt
j = A("j")
d = B("d")
c = B("c")
j.y = c
j.s = d
d.v = j
c.v = j
assert d.v.s.v.txt == " | j" | 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.v: A = None
self.txt = txt
j = A("j")
d = B("d")
c = B("c")
j.y = c
j.s = d
d.v = j
c.v = j
assert d.v.s.v.txt == "j" | d | j | d | j | x | x | x | x | j | d | j | d | x | x | x | x | 3 | 4 | 2 | 3 | 2 |
4,120 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
e = A("e")
d = B("d")
i = B("i")
e.w = d
d.u = i
i.u = d
assert e.w.u.u.txt == " | d" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
e = A("e")
d = B("d")
i = B("i")
e.w = d
d.u = i
i.u = d
assert e.w.u.u.txt == "d" | e | d | i | d | x | x | x | x | d | i | d | e | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,121 | 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.y: A = None
self.r: B = None
self.txt = txt
a = A("a")
b = B("b")
i = B("i")
e = A("e")
h = B("h")
g = A("g")
a.o = b
a.x = g
b.y... | a" | 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.y: A = None
self.r: B = None
self.txt = txt
a = A("a")
b = B("b")
i = B("i")
e = A("e")
h = B("h")
g = A("g")
a.o = b
a.x = g
b.y... | h | b | g | h | a | x | x | x | a | h | g | b | h | x | x | x | 6 | 12 | 2 | 4 | 1 |
4,122 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.y: B = None
self.txt = txt
g = A("g")
c = B("c")
h = B("h")
f = B("f")
g.v = f
c.q = h
c.y = h
h.q = c
h.y = f
f.q = h
f.y = c
assert h.q... | h" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.y: B = None
self.txt = txt
g = A("g")
c = B("c")
h = B("h")
f = B("f")
g.v = f
c.q = h
c.y = h
h.q = c
h.y = f
f.q = h
f.y = c
assert h.q... | h | c | h | c | h | x | x | x | h | c | h | c | h | x | x | x | 4 | 6 | 2 | 4 | 3 |
4,123 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
j = A("j")
i = B("i")
f = A("f")
g = B("g")
a = B("a")
c = A("c")
j.y = a
i.w = g
f.y = a
g.w = a
a.w = g
c.y = a
assert f.y.w.w.w.w.tx... | a" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
j = A("j")
i = B("i")
f = A("f")
g = B("g")
a = B("a")
c = A("c")
j.y = a
i.w = g
f.y = a
g.w = a
a.w = g
c.y = a
assert f.y.w.w.w.w.tx... | f | a | g | a | g | a | x | x | a | g | a | g | a | f | x | x | 6 | 6 | 2 | 5 | 3 |
4,124 | class A:
def __init__(self, txt: str):
self.p: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.x: A = None
self.txt = txt
a = A("a")
h = B("h")
j = B("j")
d = A("d")
f = A("f")
i = A("i")
b = A("b")
a.p = h
... | b" | class A:
def __init__(self, txt: str):
self.p: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.x: A = None
self.txt = txt
a = A("a")
h = B("h")
j = B("j")
d = A("d")
f = A("f")
i = A("i")
b = A("b")
a.p = h
... | i | f | j | b | h | f | j | b | b | j | f | h | b | j | f | i | 7 | 14 | 2 | 7 | 3 |
4,125 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
h = A("h")
g = B("g")
d = B("d")
c = B("c")
a = A("a")
b = A("b")
e = B("e")
h.z = a
g.t = h
d.t = a
c.t = b
a.z = b
b.z = h
e.t = h
as... | h" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
h = A("h")
g = B("g")
d = B("d")
c = B("c")
a = A("a")
b = A("b")
e = B("e")
h.z = a
g.t = h
d.t = a
c.t = b
a.z = b
b.z = h
e.t = h
as... | b | h | a | b | h | a | b | h | h | b | a | h | b | a | h | b | 7 | 7 | 2 | 7 | 5 |
4,126 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
i = A("i")
f = B("f")
d = B("d")
c = A("c")
i.t = c
f.y = d
d.y = f
c.t = i
assert i.t.t.t.txt == " | c" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
i = A("i")
f = B("f")
d = B("d")
c = A("c")
i.t = c
f.y = d
d.y = f
c.t = i
assert i.t.t.t.txt == "c" | i | c | i | c | x | x | x | x | c | i | c | i | x | x | x | x | 4 | 4 | 2 | 3 | 2 |
4,127 | class A:
def __init__(self, txt: str):
self.y: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
b = B("b")
h = A("h")
i = B("i")
e = A("e")
f.y = b
f.r = h
b.q = f
h.y = i
h.r = f
i.q = e
e.y = i... | f" | class A:
def __init__(self, txt: str):
self.y: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
b = B("b")
h = A("h")
i = B("i")
e = A("e")
f.y = b
f.r = h
b.q = f
h.y = i
h.r = f
i.q = e
e.y = i... | h | f | h | f | b | f | x | x | f | b | f | h | f | h | x | x | 5 | 8 | 2 | 5 | 3 |
4,128 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
j = A("j")
b = B("b")
i = A("i")
h = A("h")
g = A("g")
c = B("c")
e = A("e")
j.t = b
b.s = c
i.t = c
h.t = c
g.t = b
c.s = b
e.t = b
as... | b" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
j = A("j")
b = B("b")
i = A("i")
h = A("h")
g = A("g")
c = B("c")
e = A("e")
j.t = b
b.s = c
i.t = c
h.t = c
g.t = b
c.s = b
e.t = b
as... | h | c | b | c | b | x | x | x | b | c | b | c | h | x | x | x | 7 | 7 | 2 | 4 | 2 |
4,129 | 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.u: B = None
self.txt = txt
h = A("h")
f = B("f")
a = A("a")
j = A("j")
c = A("c")
e = B("e")
h.t = a
f.t = a
f.u = e
a.t = c
j.t = c
c.t ... | h" | 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.u: B = None
self.txt = txt
h = A("h")
f = B("f")
a = A("a")
j = A("j")
c = A("c")
e = B("e")
h.t = a
f.t = a
f.u = e
a.t = c
j.t = c
c.t ... | a | c | h | a | c | h | x | x | h | c | a | h | c | a | x | x | 6 | 8 | 2 | 5 | 3 |
4,130 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.t: A = None
self.txt = txt
b = A("b")
f = B("f")
i = B("i")
b.r = f
f.y = i
f.t = b
i.y = f
i.t = b
assert i.t.r.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.t: A = None
self.txt = txt
b = A("b")
f = B("f")
i = B("i")
b.r = f
f.y = i
f.t = b
i.y = f
i.t = b
assert i.t.r.y.txt == "i" | i | b | f | i | x | x | x | x | i | f | b | i | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
4,131 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: B = None
self.txt = txt
a = A("a")
e = B("e")
i = A("i")
d = B("d")
b = B("b")
h = B("h")
c = A("c")
a.r = i
e.v = a
e.s = d
i.r = a
d... | i" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: B = None
self.txt = txt
a = A("a")
e = B("e")
i = A("i")
d = B("d")
b = B("b")
h = B("h")
c = A("c")
a.r = i
e.v = a
e.s = d
i.r = a
d... | d | h | e | a | i | x | x | x | i | a | e | h | d | x | x | x | 7 | 11 | 2 | 4 | 0 |
4,132 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.u: A = None
self.txt = txt
i = A("i")
a = B("a")
h = B("h")
d = B("d")
e = A("e")
b = B("b")
j = A("j")
i.v = e
a.p = e
a.u = j
h.p = e
h... | i" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.u: A = None
self.txt = txt
i = A("i")
a = B("a")
h = B("h")
d = B("d")
e = A("e")
b = B("b")
j = A("j")
i.v = e
a.p = e
a.u = j
h.p = e
h... | d | i | e | i | e | i | x | x | i | e | i | e | i | d | x | x | 7 | 9 | 2 | 5 | 3 |
4,133 | class A:
def __init__(self, txt: str):
self.t: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.x: A = None
self.txt = txt
h = A("h")
b = B("b")
i = A("i")
c = B("c")
d = A("d")
j = B("j")
a = A("a")
h.t = j
... | j" | class A:
def __init__(self, txt: str):
self.t: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.x: A = None
self.txt = txt
h = A("h")
b = B("b")
i = A("i")
c = B("c")
d = A("d")
j = B("j")
a = A("a")
h.t = j
... | b | j | a | j | x | x | x | x | j | a | j | b | x | x | x | x | 7 | 11 | 2 | 3 | 1 |
4,134 | class A:
def __init__(self, txt: str):
self.t: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
e = A("e")
h = B("h")
a = A("a")
c = A("c")
f = A("f")
g = B("g")
e.t = f
e.p = a
h.y = g
a.t = e
a.p = f
c.t ... | c" | class A:
def __init__(self, txt: str):
self.t: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
e = A("e")
h = B("h")
a = A("a")
c = A("c")
f = A("f")
g = B("g")
e.t = f
e.p = a
h.y = g
a.t = e
a.p = f
c.t ... | c | a | e | a | e | f | c | x | c | f | e | a | e | a | c | x | 6 | 10 | 2 | 6 | 3 |
4,135 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
g = A("g")
j = B("j")
d = A("d")
f = A("f")
a = B("a")
g.u = j
j.v = a
d.u = a
f.u = a
a.v = j
assert d.u.v.v.txt == " | a" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
g = A("g")
j = B("j")
d = A("d")
f = A("f")
a = B("a")
g.u = j
j.v = a
d.u = a
f.u = a
a.v = j
assert d.u.v.v.txt == "a" | d | a | j | a | x | x | x | x | a | j | a | d | x | x | x | x | 5 | 5 | 2 | 3 | 1 |
4,136 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: B = None
self.txt = txt
e = A("e")
j = B("j")
d = B("d")
c = A("c")
e.w = j
j.x = e
j.s = d
d.x = e
d.s = j
c.w = j
assert c.w.x.w.x.t... | e" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: B = None
self.txt = txt
e = A("e")
j = B("j")
d = B("d")
c = A("c")
e.w = j
j.x = e
j.s = d
d.x = e
d.s = j
c.w = j
assert c.w.x.w.x.t... | c | j | e | j | e | x | x | x | e | j | e | j | c | x | x | x | 4 | 6 | 2 | 4 | 2 |
4,137 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.v: B = None
self.txt = txt
b = A("b")
c = B("c")
f = B("f")
a = B("a")
d = A("d")
h = B("h")
b.y = d
c.s = b
c.v = h
f.s = d
f.v = c
a.s ... | b" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.v: B = None
self.txt = txt
b = A("b")
c = B("c")
f = B("f")
a = B("a")
d = A("d")
h = B("h")
b.y = d
c.s = b
c.v = h
f.s = d
f.v = c
a.s ... | f | c | b | d | b | x | x | x | b | d | b | c | f | x | x | x | 6 | 10 | 2 | 4 | 1 |
4,138 | class A:
def __init__(self, txt: str):
self.o: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.t: B = None
self.txt = txt
b = A("b")
d = B("d")
e = A("e")
g = B("g")
i = A("i")
j = A("j")
c = B("c")
b.o = c
... | g" | class A:
def __init__(self, txt: str):
self.o: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.t: B = None
self.txt = txt
b = A("b")
d = B("d")
e = A("e")
g = B("g")
i = A("i")
j = A("j")
c = B("c")
b.o = c
... | j | e | j | e | g | c | d | g | g | d | c | g | e | j | e | j | 7 | 13 | 2 | 7 | 3 |
4,139 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
h = A("h")
d = B("d")
c = B("c")
i = A("i")
b = B("b")
h.y = d
d.w = h
c.w = i
i.y = b
b.w = h
assert h.y.w.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
h = A("h")
d = B("d")
c = B("c")
i = A("i")
b = B("b")
h.y = d
d.w = h
c.w = i
i.y = b
b.w = h
assert h.y.w.y.txt == "d" | h | d | h | d | x | x | x | x | d | h | d | h | x | x | x | x | 5 | 5 | 2 | 3 | 2 |
4,140 | 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.q: B = None
self.t: B = None
self.txt = txt
d = A("d")
e = B("e")
f = A("f")
b = A("b")
g = B("g")
d.p = b
d.x = f
e.q = g
e.t = ... | g" | 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.q: B = None
self.t: B = None
self.txt = txt
d = A("d")
e = B("e")
f = A("f")
b = A("b")
g = B("g")
d.p = b
d.x = f
e.q = g
e.t = ... | e | g | e | g | e | g | x | x | g | e | g | e | g | e | x | x | 5 | 7 | 2 | 5 | 4 |
4,141 | class A:
def __init__(self, txt: str):
self.p: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
d = A("d")
a = B("a")
c = A("c")
d.p = c
d.t = a
a.u = d
c.p = d
c.t = a
assert c.p.p.p.txt == " | d" | class A:
def __init__(self, txt: str):
self.p: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
d = A("d")
a = B("a")
c = A("c")
d.p = c
d.t = a
a.u = d
c.p = d
c.t = a
assert c.p.p.p.txt == "d" | c | d | c | d | x | x | x | x | d | c | d | c | x | x | x | x | 3 | 5 | 2 | 3 | 2 |
4,142 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
g = B("g")
c = B("c")
a = B("a")
e = A("e")
d = B("d")
f.o = c
g.q = f
c.q = e
a.q = e
e.o = d
d.q = f
assert d.q.o.q.o.q.o.... | c" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
g = B("g")
c = B("c")
a = B("a")
e = A("e")
d = B("d")
f.o = c
g.q = f
c.q = e
a.q = e
e.o = d
d.q = f
assert d.q.o.q.o.q.o.... | d | f | c | e | d | f | c | x | c | f | d | e | c | f | d | x | 6 | 6 | 2 | 6 | 3 |
4,143 | 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
i = A("i")
d = B("d")
j = B("j")
h = A("h")
i.r = j
d.z = j
j.z = d
h.r = j
assert h.r.z.z.z.txt == " | d" | 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
i = A("i")
d = B("d")
j = B("j")
h = A("h")
i.r = j
d.z = j
j.z = d
h.r = j
assert h.r.z.z.z.txt == "d" | h | j | d | j | d | x | x | x | d | j | d | j | h | x | x | x | 4 | 4 | 2 | 4 | 2 |
4,144 | class A:
def __init__(self, txt: str):
self.w: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.z: A = None
self.txt = txt
f = A("f")
g = B("g")
d = A("d")
i = A("i")
j = A("j")
e = A("e")
f.w = g
f.v = g
g.q... | g" | class A:
def __init__(self, txt: str):
self.w: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.z: A = None
self.txt = txt
f = A("f")
g = B("g")
d = A("d")
i = A("i")
j = A("j")
e = A("e")
f.w = g
f.v = g
g.q... | f | g | e | g | x | x | x | x | g | e | g | f | x | x | x | x | 6 | 7 | 2 | 3 | 1 |
4,145 | class A:
def __init__(self, txt: str):
self.w: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
f = A("f")
j = B("j")
i = A("i")
e = B("e")
b = B("b")
f.w = e
f.s = i
j.v = e
i.w = j
i.s = f
e.v = b
b.v = e... | b" | class A:
def __init__(self, txt: str):
self.w: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
f = A("f")
j = B("j")
i = A("i")
e = B("e")
b = B("b")
f.w = e
f.s = i
j.v = e
i.w = j
i.s = f
e.v = b
b.v = e... | e | b | e | b | x | x | x | x | b | e | b | e | x | x | x | x | 5 | 7 | 2 | 3 | 2 |
4,146 | 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.z: A = None
self.y: A = None
self.txt = txt
b = A("b")
g = B("g")
e = A("e")
i = B("i")
j = A("j")
b.u = j
b.t = j
g.z = b
g.y = ... | 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.z: A = None
self.y: A = None
self.txt = txt
b = A("b")
g = B("g")
e = A("e")
i = B("i")
j = A("j")
b.u = j
b.t = j
g.z = b
g.y = ... | j | b | j | b | j | x | x | x | j | b | j | b | j | x | x | x | 5 | 6 | 2 | 4 | 3 |
4,147 | class A:
def __init__(self, txt: str):
self.p: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.y: B = None
self.txt = txt
h = A("h")
a = B("a")
g = A("g")
f = B("f")
h.p = g
h.y = a
a.v = f
a.y = f
g.p = h
g... | f" | class A:
def __init__(self, txt: str):
self.p: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.y: B = None
self.txt = txt
h = A("h")
a = B("a")
g = A("g")
f = B("f")
h.p = g
h.y = a
a.v = f
a.y = f
g.p = h
g... | f | a | f | a | f | x | x | x | f | a | f | a | f | x | x | x | 4 | 6 | 2 | 4 | 3 |
4,148 | class A:
def __init__(self, txt: str):
self.y: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.w: B = None
self.txt = txt
i = A("i")
h = B("h")
a = A("a")
d = B("d")
e = A("e")
f = B("f")
g = A("g")
i.y = e
... | f" | class A:
def __init__(self, txt: str):
self.y: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.w: B = None
self.txt = txt
i = A("i")
h = B("h")
a = A("a")
d = B("d")
e = A("e")
f = B("f")
g = A("g")
i.y = e
... | g | e | d | f | i | f | x | x | f | i | f | d | e | g | x | x | 7 | 14 | 2 | 5 | 1 |
4,149 | class A:
def __init__(self, txt: str):
self.u: A = None
self.v: A = 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 = B("a")
f = A("f")
d = B("d")
e.u = f
e.v = f
j.v = f
a.v = e
f.u = e
f.v = e
d.v = e... | e" | class A:
def __init__(self, txt: str):
self.u: A = None
self.v: A = 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 = B("a")
f = A("f")
d = B("d")
e.u = f
e.v = f
j.v = f
a.v = e
f.u = e
f.v = e
d.v = e... | d | e | f | e | f | e | x | x | e | f | e | f | e | d | x | x | 5 | 5 | 2 | 5 | 3 |
4,150 | 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.z: A = None
self.r: A = None
self.txt = txt
h = A("h")
g = B("g")
a = A("a")
h.u = a
h.o = g
g.z = h
g.r = a
a.u = h
a.o = g
asse... | h" | 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.z: A = None
self.r: A = None
self.txt = txt
h = A("h")
g = B("g")
a = A("a")
h.u = a
h.o = g
g.z = h
g.r = a
a.u = h
a.o = g
asse... | g | a | g | h | x | x | x | x | h | g | a | g | x | x | x | x | 3 | 6 | 2 | 3 | 1 |
4,151 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
c = A("c")
j = B("j")
d = B("d")
i = A("i")
e = B("e")
c.u = i
j.w = c
d.w = c
i.u = c
e.w = i
assert j.w.u.u.u.txt == " | i" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
c = A("c")
j = B("j")
d = B("d")
i = A("i")
e = B("e")
c.u = i
j.w = c
d.w = c
i.u = c
e.w = i
assert j.w.u.u.u.txt == "i" | j | c | i | c | i | x | x | x | i | c | i | c | j | x | x | x | 5 | 5 | 2 | 4 | 2 |
4,152 | 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.u: B = None
self.y: B = None
self.txt = txt
g = A("g")
f = B("f")
d = B("d")
c = A("c")
g.s = d
g.x = c
f.u = d
f.y = d
d.u = f
d... | f" | 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.u: B = None
self.y: B = None
self.txt = txt
g = A("g")
f = B("f")
d = B("d")
c = A("c")
g.s = d
g.x = c
f.u = d
f.y = d
d.u = f
d... | f | d | f | d | f | x | x | x | f | d | f | d | f | x | x | x | 4 | 6 | 2 | 4 | 3 |
4,153 | class A:
def __init__(self, txt: str):
self.w: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
b = A("b")
i = B("i")
e = B("e")
b.w = i
b.z = i
i.p = e
e.p = i
assert e.p.p.p.txt == " | i" | class A:
def __init__(self, txt: str):
self.w: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
b = A("b")
i = B("i")
e = B("e")
b.w = i
b.z = i
i.p = e
e.p = i
assert e.p.p.p.txt == "i" | e | i | e | i | x | x | x | x | i | e | i | e | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,154 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
d = A("d")
a = B("a")
e = A("e")
i = A("i")
h = B("h")
f = A("f")
c = B("c")
d.z = e
a.v = c
e.z = i
i.z = d
h.v = c
f.z = i
c.v = h
as... | h" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
d = A("d")
a = B("a")
e = A("e")
i = A("i")
h = B("h")
f = A("f")
c = B("c")
d.z = e
a.v = c
e.z = i
i.z = d
h.v = c
f.z = i
c.v = h
as... | h | c | h | c | h | x | x | x | h | c | h | c | h | x | x | x | 7 | 7 | 2 | 4 | 3 |
4,155 | class A:
def __init__(self, txt: str):
self.o: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
i = A("i")
j = B("j")
g = B("g")
f = B("f")
e = B("e")
i.o = g
i.s = j
j.s = g
g.s = j
f.s = e
e.s = g
assert ... | j" | class A:
def __init__(self, txt: str):
self.o: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
i = A("i")
j = B("j")
g = B("g")
f = B("f")
e = B("e")
i.o = g
i.s = j
j.s = g
g.s = j
f.s = e
e.s = g
assert ... | f | e | g | j | x | x | x | x | j | g | e | f | x | x | x | x | 5 | 6 | 2 | 3 | 0 |
4,156 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.z: A = None
self.txt = txt
e = A("e")
i = B("i")
j = B("j")
d = A("d")
a = A("a")
g = B("g")
e.q = d
i.t = g
i.z = a
j.t = i
j.z = e
d.q ... | g" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.z: A = None
self.txt = txt
e = A("e")
i = B("i")
j = B("j")
d = A("d")
a = A("a")
g = B("g")
e.q = d
i.t = g
i.z = a
j.t = i
j.z = e
d.q ... | i | g | i | g | x | x | x | x | g | i | g | i | x | x | x | x | 6 | 9 | 2 | 3 | 2 |
4,157 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
e = A("e")
j = B("j")
a = A("a")
f = B("f")
c = A("c")
h = A("h")
g = A("g")
e.w = a
j.x = f
a.w = c
f.x = j
c.w = h
h.w = e
g.w = c
as... | j" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
e = A("e")
j = B("j")
a = A("a")
f = B("f")
c = A("c")
h = A("h")
g = A("g")
e.w = a
j.x = f
a.w = c
f.x = j
c.w = h
h.w = e
g.w = c
as... | f | j | f | j | f | j | f | j | j | f | j | f | j | f | j | f | 7 | 7 | 2 | 7 | 6 |
4,158 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.o: B = None
self.txt = txt
h = A("h")
j = B("j")
a = B("a")
c = B("c")
f = A("f")
h.x = c
j.r = f
j.o = a
a.r = h
a.o = c
c.r = f
c.o = j... | f" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.o: B = None
self.txt = txt
h = A("h")
j = B("j")
a = B("a")
c = B("c")
f = A("f")
h.x = c
j.r = f
j.o = a
a.r = h
a.o = c
c.r = f
c.o = j... | j | a | c | f | x | x | x | x | f | c | a | j | x | x | x | x | 5 | 8 | 2 | 3 | 0 |
4,159 | class A:
def __init__(self, txt: str):
self.q: B = None
self.z: A = 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")
g = B("g")
b = A("b")
j = A("j")
f = A("f")
a = A("a")
d.q = g
d.z = j
g.t... | b" | class A:
def __init__(self, txt: str):
self.q: B = None
self.z: A = 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")
g = B("g")
b = A("b")
j = A("j")
f = A("f")
a = A("a")
d.q = g
d.z = j
g.t... | f | g | j | d | j | g | b | x | b | g | j | d | j | g | f | x | 6 | 12 | 2 | 6 | 2 |
4,160 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: B = None
self.txt = txt
g = A("g")
f = B("f")
h = B("h")
d = B("d")
c = B("c")
j = B("j")
e = A("e")
g.u = e
f.p = g
f.v = j
h.p = e
h... | j" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: B = None
self.txt = txt
g = A("g")
f = B("f")
h = B("h")
d = B("d")
c = B("c")
j = B("j")
e = A("e")
g.u = e
f.p = g
f.v = j
h.p = e
h... | f | j | f | j | f | j | x | x | j | f | j | f | j | f | x | x | 7 | 12 | 2 | 5 | 4 |
4,161 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.v: A = None
self.txt = txt
b = A("b")
j = B("j")
h = B("h")
a = A("a")
b.x = a
j.z = h
j.v = a
h.z = j
h.v = b
a.x = b
assert b.x.x.x.txt... | a" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.v: A = None
self.txt = txt
b = A("b")
j = B("j")
h = B("h")
a = A("a")
b.x = a
j.z = h
j.v = a
h.z = j
h.v = b
a.x = b
assert b.x.x.x.txt... | b | a | b | a | x | x | x | x | a | b | a | b | x | x | x | x | 4 | 6 | 2 | 3 | 2 |
4,162 | class A:
def __init__(self, txt: str):
self.y: A = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
h = A("h")
j = B("j")
f = A("f")
h.y = f
h.w = f
j.q = f
f.y = h
f.w = h
assert j.q.y.y.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: A = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
h = A("h")
j = B("j")
f = A("f")
h.y = f
h.w = f
j.q = f
f.y = h
f.w = h
assert j.q.y.y.txt == "f" | j | f | h | f | x | x | x | x | f | h | f | j | x | x | x | x | 3 | 3 | 2 | 3 | 1 |
4,163 | class A:
def __init__(self, txt: str):
self.v: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
e = B("e")
i = B("i")
a = B("a")
g = A("g")
j = B("j")
f.v = e
f.u = i
e.q = f
i.q = f
a.q = f
g.v ... | e" | class A:
def __init__(self, txt: str):
self.v: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
e = B("e")
i = B("i")
a = B("a")
g = A("g")
j = B("j")
f.v = e
f.u = i
e.q = f
i.q = f
a.q = f
g.v ... | e | f | i | f | e | x | x | x | e | f | i | f | e | x | x | x | 6 | 8 | 2 | 4 | 2 |
4,164 | class A:
def __init__(self, txt: str):
self.v: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.p: A = None
self.txt = txt
a = A("a")
h = B("h")
b = A("b")
a.v = b
a.p = h
h.y = b
h.p = a
b.v = a
b.p = h
asse... | b" | class A:
def __init__(self, txt: str):
self.v: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.p: A = None
self.txt = txt
a = A("a")
h = B("h")
b = A("b")
a.v = b
a.p = h
h.y = b
h.p = a
b.v = a
b.p = h
asse... | a | b | a | b | x | x | x | x | b | a | b | a | x | x | x | x | 3 | 6 | 2 | 3 | 2 |
4,165 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
f = A("f")
j = B("j")
c = A("c")
g = B("g")
b = A("b")
i = B("i")
a = B("a")
f.z = g
j.s = g
c.z = a
g.s = a
b.z = j
i.s = a
a.s = i
as... | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
f = A("f")
j = B("j")
c = A("c")
g = B("g")
b = A("b")
i = B("i")
a = B("a")
f.z = g
j.s = g
c.z = a
g.s = a
b.z = j
i.s = a
a.s = i
as... | f | g | a | i | a | x | x | x | a | i | a | g | f | x | x | x | 7 | 7 | 2 | 4 | 1 |
4,166 | class A:
def __init__(self, txt: str):
self.o: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
d = A("d")
j = B("j")
b = B("b")
g = B("g")
a = B("a")
f = A("f")
e = A("e")
d.o = j
d.y = e
j.o = b
b.o = j
g... | b" | class A:
def __init__(self, txt: str):
self.o: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
d = A("d")
j = B("j")
b = B("b")
g = B("g")
a = B("a")
f = A("f")
e = A("e")
d.o = j
d.y = e
j.o = b
b.o = j
g... | e | f | b | j | b | x | x | x | b | j | b | f | e | x | x | x | 7 | 10 | 2 | 4 | 1 |
4,167 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
g = A("g")
i = B("i")
j = A("j")
f = B("f")
a = A("a")
c = A("c")
g.z = f
i.z = j
j.z = f
f.z = g
a.z = f
c.z = f
assert g.z.z.z.z.z.tx... | f" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
g = A("g")
i = B("i")
j = A("j")
f = B("f")
a = A("a")
c = A("c")
g.z = f
i.z = j
j.z = f
f.z = g
a.z = f
c.z = f
assert g.z.z.z.z.z.tx... | g | f | g | f | g | f | x | x | f | g | f | g | f | g | x | x | 6 | 6 | 2 | 5 | 4 |
4,168 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.o: A = None
self.txt = txt
a = A("a")
i = B("i")
g = A("g")
h = B("h")
j = B("j")
c = B("c")
e = A("e")
a.r = j
i.q = a
i.o = e
g.r = i
h... | e" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.o: A = None
self.txt = txt
a = A("a")
i = B("i")
g = A("g")
h = B("h")
j = B("j")
c = B("c")
e = A("e")
a.r = j
i.q = a
i.o = e
g.r = i
h... | g | i | a | j | e | j | e | x | e | j | e | j | a | i | g | x | 7 | 10 | 2 | 6 | 2 |
4,169 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
j = A("j")
h = B("h")
f = A("f")
g = A("g")
e = B("e")
d = B("d")
j.x = e
h.q = f
f.x = d
g.x = d
e.q = g
d.q = f
assert d.q.x.q.x.q.x.... | d" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
j = A("j")
h = B("h")
f = A("f")
g = A("g")
e = B("e")
d = B("d")
j.x = e
h.q = f
f.x = d
g.x = d
e.q = g
d.q = f
assert d.q.x.q.x.q.x.... | d | f | d | f | d | f | d | x | d | f | d | f | d | f | d | x | 6 | 6 | 2 | 6 | 5 |
4,170 | class A:
def __init__(self, txt: str):
self.v: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
d = B("d")
i = B("i")
c = A("c")
h = B("h")
f = A("f")
b = A("b")
e.v = d
e.w = f
d.w = h
i.w = h
c... | h" | class A:
def __init__(self, txt: str):
self.v: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
d = B("d")
i = B("i")
c = A("c")
h = B("h")
f = A("f")
b = A("b")
e.v = d
e.w = f
d.w = h
i.w = h
c... | b | f | d | h | d | h | x | x | h | d | h | d | f | b | x | x | 7 | 11 | 2 | 5 | 2 |
4,171 | class A:
def __init__(self, txt: str):
self.z: B = 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")
d = B("d")
g = B("g")
c = A("c")
b = B("b")
f = A("f")
j = A("j")
e.z = g
e.x = j
d.s = f
g.s = e
c... | e" | class A:
def __init__(self, txt: str):
self.z: B = 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")
d = B("d")
g = B("g")
c = A("c")
b = B("b")
f = A("f")
j = A("j")
e.z = g
e.x = j
d.s = f
g.s = e
c... | g | e | j | g | e | x | x | x | e | g | j | e | g | x | x | x | 7 | 11 | 2 | 4 | 2 |
4,172 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: B = None
self.txt = txt
f = A("f")
i = B("i")
g = B("g")
e = A("e")
c = A("c")
d = A("d")
f.r = g
i.p = e
i.v = g
g.p = f
g.v = i
e.r ... | e" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: B = None
self.txt = txt
f = A("f")
i = B("i")
g = B("g")
e = A("e")
c = A("c")
d = A("d")
f.r = g
i.p = e
i.v = g
g.p = f
g.v = i
e.r ... | e | g | i | e | x | x | x | x | e | i | g | e | x | x | x | x | 6 | 8 | 2 | 3 | 1 |
4,173 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.u: A = None
self.txt = txt
f = A("f")
c = B("c")
j = A("j")
i = B("i")
h = B("h")
a = B("a")
b = A("b")
f.z = j
... | f" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.u: A = None
self.txt = txt
f = A("f")
c = B("c")
j = A("j")
i = B("i")
h = B("h")
a = B("a")
b = A("b")
f.z = j
... | i | j | b | i | f | x | x | x | f | i | b | j | i | x | x | x | 7 | 14 | 2 | 4 | 1 |
4,174 | class A:
def __init__(self, txt: str):
self.v: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.t: A = None
self.txt = txt
c = A("c")
b = B("b")
j = B("j")
c.v = b
c.z = b
b.o = j
b.t = c
j.o = b
j.t = c
asse... | j" | class A:
def __init__(self, txt: str):
self.v: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.t: A = None
self.txt = txt
c = A("c")
b = B("b")
j = B("j")
c.v = b
c.z = b
b.o = j
b.t = c
j.o = b
j.t = c
asse... | b | c | b | j | x | x | x | x | j | b | c | b | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
4,175 | class A:
def __init__(self, txt: str):
self.r: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.q: B = None
self.txt = txt
a = A("a")
i = B("i")
h = A("h")
b = B("b")
d = B("d")
c = B("c")
e = B("e")
a.r = h
... | a" | class A:
def __init__(self, txt: str):
self.r: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.q: B = None
self.txt = txt
a = A("a")
i = B("i")
h = A("h")
b = B("b")
d = B("d")
c = B("c")
e = B("e")
a.r = h
... | h | a | h | a | x | x | x | x | a | h | a | h | x | x | x | x | 7 | 12 | 2 | 3 | 2 |
4,176 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.v: B = None
self.txt = txt
e = A("e")
f = B("f")
d = A("d")
a = A("a")
g = B("g")
i = A("i")
c = A("c")
e.z = i
... | a" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.v: B = None
self.txt = txt
e = A("e")
f = B("f")
d = A("d")
a = A("a")
g = B("g")
i = A("i")
c = A("c")
e.z = i
... | i | d | e | f | g | f | g | a | a | g | f | g | f | e | d | i | 7 | 14 | 2 | 7 | 2 |
4,177 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.u: B = None
self.txt = txt
g = A("g")
i = B("i")
e = B("e")
h = A("h")
c = A("c")
b = B("b")
g.w = h
i.q = b
i.u = e
e.q = i
e.u = i
h.w ... | e" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.u: B = None
self.txt = txt
g = A("g")
i = B("i")
e = B("e")
h = A("h")
c = A("c")
b = B("b")
g.w = h
i.q = b
i.u = e
e.q = i
e.u = i
h.w ... | i | b | e | i | e | i | e | x | e | i | e | i | e | b | i | x | 6 | 8 | 2 | 6 | 4 |
4,178 | class A:
def __init__(self, txt: str):
self.x: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.u: B = None
self.txt = txt
e = A("e")
a = B("a")
i = B("i")
e.x = i
e.z = i
a.v = i
a.u = i
i.v = a
i.u = a
asse... | i" | class A:
def __init__(self, txt: str):
self.x: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.u: B = None
self.txt = txt
e = A("e")
a = B("a")
i = B("i")
e.x = i
e.z = i
a.v = i
a.u = i
i.v = a
i.u = a
asse... | a | i | a | i | x | x | x | x | i | a | i | a | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,179 | class A:
def __init__(self, txt: str):
self.p: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
b = A("b")
f = B("f")
j = A("j")
e = B("e")
b.p = e
b.o = f
f.s = e
j.p = e
j.o = e
e.s = f
assert b.o.s.s.s.t... | e" | class A:
def __init__(self, txt: str):
self.p: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
b = A("b")
f = B("f")
j = A("j")
e = B("e")
b.p = e
b.o = f
f.s = e
j.p = e
j.o = e
e.s = f
assert b.o.s.s.s.t... | b | f | e | f | e | x | x | x | e | f | e | f | b | x | x | x | 4 | 5 | 2 | 4 | 2 |
4,180 | 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
d = A("d")
i = B("i")
f = A("f")
a = A("a")
e = B("e")
h = B("h")
d.r = a
i.x = f
f.r = a
a.r = d
e.x = f
h.x = f
assert d.r.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.x: A = None
self.txt = txt
d = A("d")
i = B("i")
f = A("f")
a = A("a")
e = B("e")
h = B("h")
d.r = a
i.x = f
f.r = a
a.r = d
e.x = f
h.x = f
assert d.r.r.r.r.txt ... | d | a | d | a | d | x | x | x | d | a | d | a | d | x | x | x | 6 | 6 | 2 | 4 | 3 |
4,181 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
c = A("c")
h = B("h")
i = A("i")
a = B("a")
d = A("d")
j = A("j")
e = B("e")
c.x = d
h.x = e
i.x = c
a.x = e
d.x = i
j.x = d
e.x = h
as... | e" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
c = A("c")
h = B("h")
i = A("i")
a = B("a")
d = A("d")
j = A("j")
e = B("e")
c.x = d
h.x = e
i.x = c
a.x = e
d.x = i
j.x = d
e.x = h
as... | a | e | h | e | h | e | x | x | e | h | e | h | e | a | x | x | 7 | 7 | 2 | 5 | 3 |
4,182 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
g = A("g")
d = B("d")
j = A("j")
h = A("h")
f = A("f")
e = B("e")
g.o = j
d.z = g
j.o = h
h.o = g
f.o = g
e.z = h
assert f.o.o.o.o.o.o.... | h" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
g = A("g")
d = B("d")
j = A("j")
h = A("h")
f = A("f")
e = B("e")
g.o = j
d.z = g
j.o = h
h.o = g
f.o = g
e.z = h
assert f.o.o.o.o.o.o.... | f | g | j | h | g | j | h | x | h | j | g | h | j | g | f | x | 6 | 6 | 2 | 6 | 3 |
4,183 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.s: A = None
self.txt = txt
f = A("f")
e = B("e")
h = A("h")
f.t = h
e.o = h
e.s = h
h.t = f
assert h.t.t.t.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: A = None
self.s: A = None
self.txt = txt
f = A("f")
e = B("e")
h = A("h")
f.t = h
e.o = h
e.s = h
h.t = f
assert h.t.t.t.txt == "f" | h | f | h | f | x | x | x | x | f | h | f | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,184 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
h = A("h")
f = B("f")
a = B("a")
d = B("d")
i = A("i")
e = A("e")
g = A("g")
h.q = a
f.q = e
a.q = e
d.q = i
i.q = a
e.q = d
g.q = d
as... | e" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
h = A("h")
f = B("f")
a = B("a")
d = B("d")
i = A("i")
e = A("e")
g = A("g")
h.q = a
f.q = e
a.q = e
d.q = i
i.q = a
e.q = d
g.q = d
as... | i | a | e | d | i | a | e | x | e | a | i | d | e | a | i | x | 7 | 7 | 2 | 6 | 3 |
4,185 | 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.o: B = None
self.s: B = None
self.txt = txt
g = A("g")
e = B("e")
h = B("h")
f = A("f")
g.r = h
g.v = f
e.o = h
e.s = h
h.o = e
h... | e" | 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.o: B = None
self.s: B = None
self.txt = txt
g = A("g")
e = B("e")
h = B("h")
f = A("f")
g.r = h
g.v = f
e.o = h
e.s = h
h.o = e
h... | h | e | h | e | x | x | x | x | e | h | e | h | x | x | x | x | 4 | 6 | 2 | 3 | 2 |
4,186 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
j = A("j")
g = B("g")
e = A("e")
h = A("h")
f = A("f")
b = A("b")
j.v = b
g.v = f
e.v = h
h.v = e
f.v = b
b.v = h
assert b.v.v.v.v.txt ... | e" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
j = A("j")
g = B("g")
e = A("e")
h = A("h")
f = A("f")
b = A("b")
j.v = b
g.v = f
e.v = h
h.v = e
f.v = b
b.v = h
assert b.v.v.v.v.txt ... | b | h | e | h | e | x | x | x | e | h | e | h | b | x | x | x | 6 | 6 | 2 | 4 | 2 |
4,187 | class A:
def __init__(self, txt: str):
self.u: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
i = A("i")
f = B("f")
c = B("c")
g = A("g")
b = B("b")
i.u = g
i.v = g
f.t = g
c.t = i
g.u = i
g.v = i
b.t = g... | i" | class A:
def __init__(self, txt: str):
self.u: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
i = A("i")
f = B("f")
c = B("c")
g = A("g")
b = B("b")
i.u = g
i.v = g
f.t = g
c.t = i
g.u = i
g.v = i
b.t = g... | f | g | i | g | i | x | x | x | i | g | i | g | f | x | x | x | 5 | 5 | 2 | 4 | 2 |
4,188 | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.v: A = None
self.txt = txt
e = A("e")
d = B("d")
a = B("a")
b = B("b")
j = B("j")
e.u = d
e.z = a
d.o = e
d.v = ... | a" | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.v: A = None
self.txt = txt
e = A("e")
d = B("d")
a = B("a")
b = B("b")
j = B("j")
e.u = d
e.z = a
d.o = e
d.v = ... | j | e | d | e | a | x | x | x | a | e | d | e | j | x | x | x | 5 | 6 | 2 | 4 | 1 |
4,189 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
b = A("b")
e = B("e")
a = B("a")
j = B("j")
i = B("i")
b.o = e
e.r = b
a.r = b
j.r = b
i.r = b
assert e.r.o.r.txt == " | b" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
b = A("b")
e = B("e")
a = B("a")
j = B("j")
i = B("i")
b.o = e
e.r = b
a.r = b
j.r = b
i.r = b
assert e.r.o.r.txt == "b" | e | b | e | b | x | x | x | x | b | e | b | e | x | x | x | x | 5 | 5 | 2 | 3 | 2 |
4,190 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.txt = txt
f = A("f")
h = B("h")
b = B("b")
f.o = b
h.x = f
h.o = b
b.x = f
b.o = h
assert h.x.o.x.txt == " | f" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.txt = txt
f = A("f")
h = B("h")
b = B("b")
f.o = b
h.x = f
h.o = b
b.x = f
b.o = h
assert h.x.o.x.txt == "f" | h | f | b | f | x | x | x | x | f | b | f | h | x | x | x | x | 3 | 5 | 2 | 3 | 1 |
4,191 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
f = A("f")
i = B("i")
e = A("e")
b = A("b")
f.z = i
i.z = b
e.z = i
b.z = i
assert b.z.z.z.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
f = A("f")
i = B("i")
e = A("e")
b = A("b")
f.z = i
i.z = b
e.z = i
b.z = i
assert b.z.z.z.z.txt == "b" | b | i | b | i | b | x | x | x | b | i | b | i | b | x | x | x | 4 | 4 | 2 | 4 | 3 |
4,192 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
f = A("f")
i = B("i")
e = B("e")
d = B("d")
h = A("h")
j = A("j")
f.t = d
i.v = e
e.v = d
d.v = i
h.t = i
j.t = e
assert i.v.v.v.v.v.v.... | i" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
f = A("f")
i = B("i")
e = B("e")
d = B("d")
h = A("h")
j = A("j")
f.t = d
i.v = e
e.v = d
d.v = i
h.t = i
j.t = e
assert i.v.v.v.v.v.v.... | i | e | d | i | e | d | i | x | i | d | e | i | d | e | i | x | 6 | 6 | 2 | 6 | 4 |
4,193 | 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.w: B = None
self.q: B = None
self.txt = txt
h = A("h")
e = B("e")
c = A("c")
g = B("g")
f = A("f")
h.v = g
h.z = f
e.w = g
e.q = ... | e" | 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.w: B = None
self.q: B = None
self.txt = txt
h = A("h")
e = B("e")
c = A("c")
g = B("g")
f = A("f")
h.v = g
h.z = f
e.w = g
e.q = ... | f | g | e | g | e | x | x | x | e | g | e | g | f | x | x | x | 5 | 8 | 2 | 4 | 2 |
4,194 | class A:
def __init__(self, txt: str):
self.r: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
a = A("a")
e = B("e")
d = B("d")
i = A("i")
a.r = e
a.q = i
e.q = a
d.q = i
i.r = d
i.q = a
assert a.q.r.q.q.t... | a" | class A:
def __init__(self, txt: str):
self.r: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
a = A("a")
e = B("e")
d = B("d")
i = A("i")
a.r = e
a.q = i
e.q = a
d.q = i
i.r = d
i.q = a
assert a.q.r.q.q.t... | a | i | d | i | a | x | x | x | a | i | d | i | a | x | x | x | 4 | 6 | 2 | 4 | 2 |
4,195 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
g = A("g")
i = B("i")
f = B("f")
g.w = f
i.z = f
i.y = f
f.z = i
f.y = i
assert i.z.y.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.txt = txt
g = A("g")
i = B("i")
f = B("f")
g.w = f
i.z = f
i.y = f
f.z = i
f.y = i
assert i.z.y.z.txt == "f" | i | f | i | f | x | x | x | x | f | i | f | i | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,196 | 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
f = A("f")
b = B("b")
e = B("e")
f.u = b
b.x = f
e.x = f
assert f.u.x.u.txt == " | b" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
f = A("f")
b = B("b")
e = B("e")
f.u = b
b.x = f
e.x = f
assert f.u.x.u.txt == "b" | f | b | f | b | x | x | x | x | b | f | b | f | x | x | x | x | 3 | 3 | 2 | 3 | 2 |
4,197 | class A:
def __init__(self, txt: str):
self.u: B = None
self.s: 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")
e = B("e")
j = B("j")
b = A("b")
g = B("g")
i.u = e
i.s = b
d.q = b
e.q = i
j.q = b
b.u ... | b" | class A:
def __init__(self, txt: str):
self.u: B = None
self.s: 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")
e = B("e")
j = B("j")
b = A("b")
g = B("g")
i.u = e
i.s = b
d.q = b
e.q = i
j.q = b
b.u ... | g | i | b | e | i | b | x | x | b | i | e | b | i | g | x | x | 6 | 8 | 2 | 5 | 2 |
4,198 | class A:
def __init__(self, txt: str):
self.x: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
a = A("a")
b = B("b")
e = A("e")
h = A("h")
i = B("i")
a.x = b
a.s = b
b.o = a
e.x = i
e.s = b
h.x = i
h.s = b... | a" | class A:
def __init__(self, txt: str):
self.x: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
a = A("a")
b = B("b")
e = A("e")
h = A("h")
i = B("i")
a.x = b
a.s = b
b.o = a
e.x = i
e.s = b
h.x = i
h.s = b... | h | b | a | b | a | x | x | x | a | b | a | b | h | x | x | x | 5 | 7 | 2 | 4 | 2 |
4,199 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
f = A("f")
j = B("j")
a = B("a")
g = B("g")
f.p = j
j.w = a
a.w = j
g.w = a
assert f.p.w.w.w.txt == " | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
f = A("f")
j = B("j")
a = B("a")
g = B("g")
f.p = j
j.w = a
a.w = j
g.w = a
assert f.p.w.w.w.txt == "a" | f | j | a | j | a | x | x | x | a | j | a | j | f | x | x | x | 4 | 4 | 2 | 4 | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.