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