id
int64 0
25k
| prompt
stringlengths 265
3.39k
| answer
stringclasses 14
values | pythoncode
stringlengths 267
3.39k
| num_nodes
int64 3
10
| num_edges
int64 3
56
| avg_node_edge
float64 1
5.6
| graph_density
float64 0.11
1
| num_classes
int64 2
10
| avg_node_class
float64 1
5
| max_num_field
int64 1
10
| min_num_field
int64 1
5
| avg_num_field
float64 1
7.8
| path_length
int64 3
10
| max_node_visits
int64 1
6
| max_edge_visits
int64 1
5
| unique_node_number
int64 2
10
| path_node_coverage
float64 0.2
1
| unique_edge_number
int64 2
10
| path_edge_coverage
float64 0.04
1
| num_cycle
int64 0
9
| shortest_cycle
int64 2
9
⌀ | longest_cycle
int64 2
10
⌀ | average_cycle
float64 2
9
⌀ | unique_edge_label
int64 1
9
| max_label_occurrences
int64 1
10
| max_label_consecutive
int64 1
10
| max_node_outdegree
int64 1
5
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1,000 |
class A:
def __init__(self, txt: str):
self.r: C = None
self.v: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.y: C = None
self.p: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: C = None
self.t: C = None
self.q: C = None
self.txt = txt
b = A("b")
e = B("e")
i = C("i")
f = C("f")
k = C("k")
a = B("a")
n = C("n")
m = A("m")
d = A("d")
b.r = f
b.v = m
b.x = d
e.q = f
e.y = k
e.p = a
i.v = f
i.t = n
i.q = k
f.v = i
f.t = i
f.q = i
k.v = i
k.t = n
k.q = n
a.q = n
a.y = k
a.p = e
n.v = k
n.q = k
n.t = f
m.r = k
m.v = b
m.x = b
d.r = k
d.v = b
d.x = m
assert f.q.q.t.t.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.r: C = None
self.v: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.y: C = None
self.p: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: C = None
self.t: C = None
self.q: C = None
self.txt = txt
b = A("b")
e = B("e")
i = C("i")
f = C("f")
k = C("k")
a = B("a")
n = C("n")
m = A("m")
d = A("d")
b.r = f
b.v = m
b.x = d
e.q = f
e.y = k
e.p = a
i.v = f
i.t = n
i.q = k
f.v = i
f.t = i
f.q = i
k.v = i
k.t = n
k.q = n
a.q = n
a.y = k
a.p = e
n.v = k
n.q = k
n.t = f
m.r = k
m.v = b
m.x = b
d.r = k
d.v = b
d.x = m
assert f.q.q.t.t.txt == "f"
| 9 | 22 | 2.444444 | 0.305556 | 3 | 3 | 3 | 3 | 3 | 4 | 2 | 1 | 4 | 0.444444 | 4 | 0.181818 | 1 | 4 | 4 | 4 | 2 | 2 | 2 | 1 |
1,001 |
class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
i = A("i")
h = B("h")
n = C("n")
e = B("e")
m = A("m")
d = C("d")
k = B("k")
a = A("a")
i.o = h
h.o = e
n.w = a
e.o = k
m.o = h
d.w = i
k.o = e
a.o = h
assert a.o.o.o.o.o.txt == "
|
k"
|
class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
i = A("i")
h = B("h")
n = C("n")
e = B("e")
m = A("m")
d = C("d")
k = B("k")
a = A("a")
i.o = h
h.o = e
n.w = a
e.o = k
m.o = h
d.w = i
k.o = e
a.o = h
assert a.o.o.o.o.o.txt == "k"
| 8 | 8 | 1 | 0.142857 | 3 | 2.666667 | 1 | 1 | 1 | 5 | 2 | 2 | 4 | 0.5 | 4 | 0.5 | 2 | 2 | 2 | 2 | 1 | 5 | 5 | 1 |
1,002 |
class A:
def __init__(self, txt: str):
self.s: C = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
g = A("g")
f = B("f")
e = C("e")
l = B("l")
a = A("a")
n = B("n")
h = B("h")
g.s = e
g.w = e
f.r = a
e.v = n
l.r = a
a.s = e
a.w = e
n.r = a
h.r = a
assert g.w.v.r.txt == "
|
a"
|
class A:
def __init__(self, txt: str):
self.s: C = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
g = A("g")
f = B("f")
e = C("e")
l = B("l")
a = A("a")
n = B("n")
h = B("h")
g.s = e
g.w = e
f.r = a
e.v = n
l.r = a
a.s = e
a.w = e
n.r = a
h.r = a
assert g.w.v.r.txt == "a"
| 7 | 7 | 1 | 0.166667 | 3 | 2.333333 | 2 | 1 | 1.333333 | 3 | 1 | 1 | 4 | 0.571429 | 3 | 0.428571 | 0 | null | null | null | 3 | 1 | 1 | 1 |
1,003 |
class A:
def __init__(self, txt: str):
self.t: B = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.s: A = None
self.o: A = None
self.txt = txt
a = A("a")
n = B("n")
g = C("g")
j = B("j")
m = C("m")
a.t = n
a.s = g
n.y = a
n.o = a
g.q = m
g.s = a
g.o = a
j.y = a
j.o = a
m.q = g
m.s = a
m.o = a
assert a.s.s.t.o.txt == "
|
a"
|
class A:
def __init__(self, txt: str):
self.t: B = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.s: A = None
self.o: A = None
self.txt = txt
a = A("a")
n = B("n")
g = C("g")
j = B("j")
m = C("m")
a.t = n
a.s = g
n.y = a
n.o = a
g.q = m
g.s = a
g.o = a
j.y = a
j.o = a
m.q = g
m.s = a
m.o = a
assert a.s.s.t.o.txt == "a"
| 5 | 8 | 1.6 | 0.4 | 3 | 1.666667 | 3 | 2 | 2.333333 | 4 | 3 | 1 | 3 | 0.6 | 4 | 0.5 | 2 | 2 | 4 | 2.666667 | 3 | 2 | 2 | 2 |
1,004 |
class A:
def __init__(self, txt: str):
self.u: C = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
c = A("c")
i = B("i")
h = C("h")
k = B("k")
g = A("g")
e = B("e")
l = C("l")
m = B("m")
d = A("d")
f = C("f")
c.u = f
c.s = h
i.z = h
i.s = f
h.p = l
k.z = l
k.s = f
g.u = l
g.s = f
e.z = h
e.s = f
l.p = h
m.z = h
m.s = f
d.u = f
d.s = h
f.p = l
assert m.z.p.p.p.txt == "
|
l"
|
class A:
def __init__(self, txt: str):
self.u: C = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
c = A("c")
i = B("i")
h = C("h")
k = B("k")
g = A("g")
e = B("e")
l = C("l")
m = B("m")
d = A("d")
f = C("f")
c.u = f
c.s = h
i.z = h
i.s = f
h.p = l
k.z = l
k.s = f
g.u = l
g.s = f
e.z = h
e.s = f
l.p = h
m.z = h
m.s = f
d.u = f
d.s = h
f.p = l
assert m.z.p.p.p.txt == "l"
| 10 | 17 | 1.7 | 0.188889 | 3 | 3.333333 | 2 | 1 | 1.666667 | 4 | 2 | 2 | 3 | 0.3 | 3 | 0.176471 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
1,005 |
class A:
def __init__(self, txt: str):
self.s: B = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.w: C = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.o: C = None
self.txt = txt
i = A("i")
k = B("k")
d = C("d")
f = C("f")
e = B("e")
l = B("l")
i.s = l
i.t = d
k.r = l
k.w = f
k.u = i
d.t = e
d.o = f
f.t = k
f.o = d
e.r = l
e.w = f
e.u = i
l.r = e
l.w = d
l.u = i
assert f.t.r.r.u.t.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.s: B = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.w: C = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.o: C = None
self.txt = txt
i = A("i")
k = B("k")
d = C("d")
f = C("f")
e = B("e")
l = B("l")
i.s = l
i.t = d
k.r = l
k.w = f
k.u = i
d.t = e
d.o = f
f.t = k
f.o = d
e.r = l
e.w = f
e.u = i
l.r = e
l.w = d
l.u = i
assert f.t.r.r.u.t.txt == "d"
| 6 | 15 | 2.5 | 0.5 | 3 | 2 | 3 | 2 | 2.333333 | 5 | 1 | 1 | 6 | 1 | 5 | 0.333333 | 0 | null | null | null | 3 | 2 | 2 | 1 |
1,006 |
class A:
def __init__(self, txt: str):
self.p: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.q: A = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
m = A("m")
i = B("i")
g = C("g")
f = C("f")
m.p = i
m.r = i
i.o = f
i.q = m
i.x = g
g.x = f
f.x = g
assert m.p.o.x.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.p: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.q: A = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
m = A("m")
i = B("i")
g = C("g")
f = C("f")
m.p = i
m.r = i
i.o = f
i.q = m
i.x = g
g.x = f
f.x = g
assert m.p.o.x.txt == "g"
| 4 | 6 | 1.5 | 0.5 | 3 | 1.333333 | 3 | 1 | 2 | 3 | 1 | 1 | 4 | 1 | 3 | 0.5 | 0 | null | null | null | 3 | 1 | 1 | 1 |
1,007 |
class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
h = B("h")
l = C("l")
d = B("d")
f = A("f")
a.s = h
h.t = a
l.z = a
d.t = f
f.s = h
assert a.s.t.s.t.s.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
h = B("h")
l = C("l")
d = B("d")
f = A("f")
a.s = h
h.t = a
l.z = a
d.t = f
f.s = h
assert a.s.t.s.t.s.txt == "h"
| 5 | 5 | 1 | 0.25 | 3 | 1.666667 | 1 | 1 | 1 | 5 | 3 | 3 | 2 | 0.4 | 2 | 0.4 | 4 | 2 | 4 | 2.666667 | 2 | 3 | 1 | 1 |
1,008 |
class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.p: A = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.t: A = None
self.txt = txt
m = A("m")
j = B("j")
h = C("h")
m.x = j
j.q = h
j.s = h
j.p = m
h.x = j
h.t = m
assert h.t.x.s.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.p: A = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.t: A = None
self.txt = txt
m = A("m")
j = B("j")
h = C("h")
m.x = j
j.q = h
j.s = h
j.p = m
h.x = j
h.t = m
assert h.t.x.s.txt == "h"
| 3 | 5 | 1.666667 | 0.833333 | 3 | 1 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 1 | 3 | 0.6 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 |
1,009 |
class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.y: B = None
self.txt = txt
d = A("d")
i = B("i")
n = C("n")
d.u = i
i.t = d
n.p = i
n.u = i
n.y = i
assert n.y.t.u.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.y: B = None
self.txt = txt
d = A("d")
i = B("i")
n = C("n")
d.u = i
i.t = d
n.p = i
n.u = i
n.y = i
assert n.y.t.u.txt == "i"
| 3 | 3 | 1 | 0.5 | 3 | 1 | 3 | 1 | 1.666667 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 |
1,010 |
class A:
def __init__(self, txt: str):
self.x: C = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
e = A("e")
m = B("m")
g = C("g")
c = A("c")
h = C("h")
f = B("f")
n = C("n")
e.x = g
e.v = c
m.u = g
m.o = c
g.y = e
c.x = n
c.v = e
h.y = c
f.u = g
f.o = c
n.y = c
assert h.y.v.x.y.x.y.x.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.x: C = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
e = A("e")
m = B("m")
g = C("g")
c = A("c")
h = C("h")
f = B("f")
n = C("n")
e.x = g
e.v = c
m.u = g
m.o = c
g.y = e
c.x = n
c.v = e
h.y = c
f.u = g
f.o = c
n.y = c
assert h.y.v.x.y.x.y.x.txt == "g"
| 7 | 11 | 1.571429 | 0.261905 | 3 | 2.333333 | 2 | 1 | 1.666667 | 7 | 3 | 3 | 4 | 0.571429 | 4 | 0.363636 | 4 | 2 | 4 | 2.666667 | 3 | 3 | 1 | 1 |
1,011 |
class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
n = A("n")
d = B("d")
a = C("a")
e = C("e")
i = A("i")
n.p = i
d.t = n
a.r = e
e.r = a
i.p = n
assert i.p.p.p.p.p.txt == "
|
n"
|
class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
n = A("n")
d = B("d")
a = C("a")
e = C("e")
i = A("i")
n.p = i
d.t = n
a.r = e
e.r = a
i.p = n
assert i.p.p.p.p.p.txt == "n"
| 5 | 5 | 1 | 0.25 | 3 | 1.666667 | 1 | 1 | 1 | 5 | 3 | 3 | 2 | 0.4 | 2 | 0.4 | 4 | 2 | 4 | 2.666667 | 1 | 5 | 5 | 1 |
1,012 |
class A:
def __init__(self, txt: str):
self.t: C = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
l = A("l")
j = B("j")
h = C("h")
i = C("i")
f = A("f")
d = A("d")
l.t = i
l.x = d
j.s = l
h.s = i
i.s = h
f.t = i
f.x = d
d.t = i
d.x = f
assert l.t.s.s.s.s.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.t: C = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
l = A("l")
j = B("j")
h = C("h")
i = C("i")
f = A("f")
d = A("d")
l.t = i
l.x = d
j.s = l
h.s = i
i.s = h
f.t = i
f.x = d
d.t = i
d.x = f
assert l.t.s.s.s.s.txt == "i"
| 6 | 9 | 1.5 | 0.3 | 3 | 2 | 2 | 1 | 1.333333 | 5 | 3 | 2 | 3 | 0.5 | 3 | 0.333333 | 3 | 2 | 4 | 2.5 | 2 | 4 | 4 | 1 |
1,013 |
class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: C = None
self.y: A = None
self.txt = txt
f = A("f")
d = B("d")
e = C("e")
i = C("i")
b = A("b")
l = B("l")
a = C("a")
f.w = b
d.r = l
e.r = a
e.y = f
i.r = e
i.y = b
b.w = f
l.r = d
a.r = i
a.y = b
assert e.y.w.w.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: C = None
self.y: A = None
self.txt = txt
f = A("f")
d = B("d")
e = C("e")
i = C("i")
b = A("b")
l = B("l")
a = C("a")
f.w = b
d.r = l
e.r = a
e.y = f
i.r = e
i.y = b
b.w = f
l.r = d
a.r = i
a.y = b
assert e.y.w.w.txt == "f"
| 7 | 10 | 1.428571 | 0.238095 | 3 | 2.333333 | 2 | 1 | 1.333333 | 3 | 2 | 1 | 3 | 0.428571 | 3 | 0.3 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
1,014 |
class A:
def __init__(self, txt: str):
self.z: C = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.p: C = None
self.txt = txt
k = A("k")
d = B("d")
f = C("f")
j = A("j")
g = B("g")
l = B("l")
a = C("a")
i = B("i")
h = A("h")
b = A("b")
k.z = f
k.v = j
d.z = a
f.v = i
f.p = a
j.z = a
j.v = b
g.z = a
l.z = a
a.v = i
a.p = f
i.z = a
h.z = a
h.v = b
b.z = f
b.v = k
assert j.v.v.z.p.v.z.v.z.v.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.z: C = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.p: C = None
self.txt = txt
k = A("k")
d = B("d")
f = C("f")
j = A("j")
g = B("g")
l = B("l")
a = C("a")
i = B("i")
h = A("h")
b = A("b")
k.z = f
k.v = j
d.z = a
f.v = i
f.p = a
j.z = a
j.v = b
g.z = a
l.z = a
a.v = i
a.p = f
i.z = a
h.z = a
h.v = b
b.z = f
b.v = k
assert j.v.v.z.p.v.z.v.z.v.txt == "i"
| 10 | 16 | 1.6 | 0.177778 | 3 | 3.333333 | 2 | 1 | 1.666667 | 9 | 3 | 3 | 6 | 0.6 | 6 | 0.375 | 4 | 2 | 4 | 2.666667 | 3 | 5 | 2 | 1 |
1,015 |
class A:
def __init__(self, txt: str):
self.q: C = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.t: A = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
b = A("b")
l = B("l")
d = C("d")
k = C("k")
c = B("c")
h = A("h")
n = C("n")
m = A("m")
b.q = n
b.r = n
l.q = d
l.t = b
l.u = n
d.v = k
k.v = n
c.q = n
c.t = b
c.u = d
h.q = d
h.r = n
n.v = d
m.q = k
m.r = n
assert n.v.v.v.v.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.q: C = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.t: A = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
b = A("b")
l = B("l")
d = C("d")
k = C("k")
c = B("c")
h = A("h")
n = C("n")
m = A("m")
b.q = n
b.r = n
l.q = d
l.t = b
l.u = n
d.v = k
k.v = n
c.q = n
c.t = b
c.u = d
h.q = d
h.r = n
n.v = d
m.q = k
m.r = n
assert n.v.v.v.v.txt == "d"
| 8 | 14 | 1.75 | 0.25 | 3 | 2.666667 | 3 | 1 | 2 | 4 | 2 | 2 | 3 | 0.375 | 3 | 0.214286 | 2 | 3 | 3 | 3 | 1 | 4 | 4 | 1 |
1,016 |
class A:
def __init__(self, txt: str):
self.w: B = None
self.o: C = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
j = A("j")
k = B("k")
h = C("h")
l = C("l")
e = A("e")
d = C("d")
i = C("i")
c = A("c")
a = A("a")
m = B("m")
j.w = m
j.o = i
j.u = h
k.u = d
k.r = c
h.r = i
l.r = i
e.w = m
e.o = d
e.u = d
d.r = h
i.r = l
c.w = k
c.o = d
c.u = i
a.w = k
a.o = h
a.u = h
m.u = h
m.r = a
assert a.w.u.r.r.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.w: B = None
self.o: C = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
j = A("j")
k = B("k")
h = C("h")
l = C("l")
e = A("e")
d = C("d")
i = C("i")
c = A("c")
a = A("a")
m = B("m")
j.w = m
j.o = i
j.u = h
k.u = d
k.r = c
h.r = i
l.r = i
e.w = m
e.o = d
e.u = d
d.r = h
i.r = l
c.w = k
c.o = d
c.u = i
a.w = k
a.o = h
a.u = h
m.u = h
m.r = a
assert a.w.u.r.r.txt == "i"
| 10 | 18 | 1.8 | 0.2 | 3 | 3.333333 | 3 | 1 | 2 | 4 | 1 | 1 | 5 | 0.5 | 4 | 0.222222 | 0 | null | null | null | 3 | 2 | 2 | 1 |
1,017 |
class A:
def __init__(self, txt: str):
self.z: C = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
k = A("k")
d = B("d")
e = C("e")
f = A("f")
a = A("a")
l = C("l")
k.z = l
k.p = d
d.p = f
d.x = e
e.t = l
f.z = e
f.p = d
a.z = l
a.p = d
l.t = e
assert l.t.t.t.t.t.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.z: C = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
k = A("k")
d = B("d")
e = C("e")
f = A("f")
a = A("a")
l = C("l")
k.z = l
k.p = d
d.p = f
d.x = e
e.t = l
f.z = e
f.p = d
a.z = l
a.p = d
l.t = e
assert l.t.t.t.t.t.txt == "e"
| 6 | 10 | 1.666667 | 0.333333 | 3 | 2 | 2 | 1 | 1.666667 | 5 | 3 | 3 | 2 | 0.333333 | 2 | 0.2 | 4 | 2 | 4 | 2.666667 | 1 | 5 | 5 | 1 |
1,018 |
class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
c = A("c")
i = B("i")
e = C("e")
n = B("n")
g = C("g")
l = C("l")
c.s = n
i.w = n
e.q = g
n.w = i
g.q = l
l.q = g
assert g.q.q.q.q.q.q.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: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
c = A("c")
i = B("i")
e = C("e")
n = B("n")
g = C("g")
l = C("l")
c.s = n
i.w = n
e.q = g
n.w = i
g.q = l
l.q = g
assert g.q.q.q.q.q.q.txt == "g"
| 6 | 6 | 1 | 0.2 | 3 | 2 | 1 | 1 | 1 | 6 | 4 | 3 | 2 | 0.333333 | 2 | 0.333333 | 5 | 2 | 6 | 3.111111 | 1 | 6 | 6 | 1 |
1,019 |
class A:
def __init__(self, txt: str):
self.x: C = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.w: B = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.s: C = None
self.txt = txt
b = A("b")
a = B("a")
n = C("n")
m = C("m")
j = A("j")
i = B("i")
b.x = n
b.r = a
a.t = n
a.w = i
a.z = b
n.w = j
n.s = m
m.w = j
m.s = n
j.x = m
j.r = i
i.t = m
i.w = a
i.z = b
assert n.s.s.w.r.t.txt == "
|
m"
|
class A:
def __init__(self, txt: str):
self.x: C = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.w: B = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.s: C = None
self.txt = txt
b = A("b")
a = B("a")
n = C("n")
m = C("m")
j = A("j")
i = B("i")
b.x = n
b.r = a
a.t = n
a.w = i
a.z = b
n.w = j
n.s = m
m.w = j
m.s = n
j.x = m
j.r = i
i.t = m
i.w = a
i.z = b
assert n.s.s.w.r.t.txt == "m"
| 6 | 14 | 2.333333 | 0.466667 | 3 | 2 | 3 | 2 | 2.333333 | 5 | 2 | 1 | 4 | 0.666667 | 5 | 0.357143 | 2 | 2 | 4 | 3 | 4 | 2 | 2 | 2 |
1,020 |
class A:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: C = None
self.q: A = None
self.s: A = None
self.txt = txt
n = A("n")
l = B("l")
m = C("m")
i = A("i")
f = C("f")
j = C("j")
c = A("c")
b = B("b")
h = B("h")
g = B("g")
n.q = j
l.w = n
m.o = f
m.q = c
m.s = c
i.q = m
f.o = j
f.q = c
f.s = c
j.o = m
j.q = n
j.s = i
c.q = j
b.w = c
h.w = c
g.w = n
assert c.q.o.s.q.s.q.o.o.q.txt == "
|
n"
|
class A:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: C = None
self.q: A = None
self.s: A = None
self.txt = txt
n = A("n")
l = B("l")
m = C("m")
i = A("i")
f = C("f")
j = C("j")
c = A("c")
b = B("b")
h = B("h")
g = B("g")
n.q = j
l.w = n
m.o = f
m.q = c
m.s = c
i.q = m
f.o = j
f.q = c
f.s = c
j.o = m
j.q = n
j.s = i
c.q = j
b.w = c
h.w = c
g.w = n
assert c.q.o.s.q.s.q.o.o.q.txt == "n"
| 10 | 14 | 1.4 | 0.155556 | 3 | 3.333333 | 3 | 1 | 1.666667 | 9 | 3 | 2 | 6 | 0.6 | 8 | 0.571429 | 4 | 3 | 7 | 4.2 | 3 | 4 | 2 | 3 |
1,021 |
class A:
def __init__(self, txt: str):
self.z: C = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.p: C = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
b = A("b")
e = B("e")
d = C("d")
k = A("k")
l = C("l")
h = B("h")
a = B("a")
c = B("c")
f = B("f")
b.z = d
b.r = d
e.r = d
e.p = d
e.z = l
d.t = c
k.z = d
k.r = l
l.t = h
h.r = l
h.p = d
h.z = d
a.r = d
a.p = l
a.z = l
c.r = l
c.p = d
c.z = d
f.r = d
f.z = d
f.p = l
assert k.z.t.r.t.r.t.r.t.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.z: C = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.p: C = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
b = A("b")
e = B("e")
d = C("d")
k = A("k")
l = C("l")
h = B("h")
a = B("a")
c = B("c")
f = B("f")
b.z = d
b.r = d
e.r = d
e.p = d
e.z = l
d.t = c
k.z = d
k.r = l
l.t = h
h.r = l
h.p = d
h.z = d
a.r = d
a.p = l
a.z = l
c.r = l
c.p = d
c.z = d
f.r = d
f.z = d
f.p = l
assert k.z.t.r.t.r.t.r.t.txt == "h"
| 9 | 15 | 1.666667 | 0.208333 | 3 | 3 | 3 | 1 | 2 | 8 | 3 | 3 | 5 | 0.555556 | 5 | 0.333333 | 4 | 2 | 4 | 2.666667 | 3 | 4 | 1 | 1 |
1,022 |
class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.x: B = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: C = None
self.u: B = None
self.s: B = None
self.txt = txt
c = A("c")
i = B("i")
k = C("k")
l = A("l")
d = B("d")
a = A("a")
j = C("j")
b = C("b")
n = A("n")
e = B("e")
c.z = l
i.p = j
i.x = d
i.r = b
k.y = b
k.u = d
k.s = d
l.z = a
d.p = b
d.x = i
d.r = k
a.z = l
j.y = b
j.u = i
j.s = i
b.y = j
b.u = e
b.s = e
n.z = a
e.p = b
e.x = i
e.r = j
assert j.s.x.x.p.s.x.x.p.u.p.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.x: B = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: C = None
self.u: B = None
self.s: B = None
self.txt = txt
c = A("c")
i = B("i")
k = C("k")
l = A("l")
d = B("d")
a = A("a")
j = C("j")
b = C("b")
n = A("n")
e = B("e")
c.z = l
i.p = j
i.x = d
i.r = b
k.y = b
k.u = d
k.s = d
l.z = a
d.p = b
d.x = i
d.r = k
a.z = l
j.y = b
j.u = i
j.s = i
b.y = j
b.u = e
b.s = e
n.z = a
e.p = b
e.x = i
e.r = j
assert j.s.x.x.p.s.x.x.p.u.p.txt == "j"
| 10 | 19 | 1.9 | 0.211111 | 3 | 3.333333 | 3 | 1 | 2.333333 | 10 | 5 | 3 | 3 | 0.3 | 5 | 0.263158 | 8 | 2 | 10 | 4.588235 | 4 | 4 | 2 | 2 |
1,023 |
class A:
def __init__(self, txt: str):
self.p: B = None
self.u: C = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.z: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.t: A = None
self.txt = txt
b = A("b")
e = B("e")
f = C("f")
n = C("n")
l = B("l")
h = A("h")
k = B("k")
c = C("c")
b.p = k
b.u = f
b.x = h
e.o = h
e.z = k
f.s = b
f.t = b
n.s = b
n.t = b
l.o = b
l.z = e
h.p = e
h.u = n
h.x = b
k.o = h
k.z = e
c.s = b
c.t = b
assert f.s.u.t.u.t.txt == "
|
b"
|
class A:
def __init__(self, txt: str):
self.p: B = None
self.u: C = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.z: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.t: A = None
self.txt = txt
b = A("b")
e = B("e")
f = C("f")
n = C("n")
l = B("l")
h = A("h")
k = B("k")
c = C("c")
b.p = k
b.u = f
b.x = h
e.o = h
e.z = k
f.s = b
f.t = b
n.s = b
n.t = b
l.o = b
l.z = e
h.p = e
h.u = n
h.x = b
k.o = h
k.z = e
c.s = b
c.t = b
assert f.s.u.t.u.t.txt == "b"
| 8 | 15 | 1.875 | 0.267857 | 3 | 2.666667 | 3 | 2 | 2.333333 | 5 | 3 | 2 | 2 | 0.25 | 3 | 0.2 | 4 | 2 | 4 | 2.666667 | 3 | 2 | 1 | 2 |
1,024 |
class A:
def __init__(self, txt: str):
self.o: B = None
self.z: B = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.u: A = None
self.p: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.w: C = None
self.p: A = None
self.txt = txt
b = A("b")
k = B("k")
n = C("n")
j = B("j")
d = C("d")
b.o = j
b.z = j
b.y = n
k.x = b
k.u = b
k.p = j
n.u = j
n.w = d
n.p = b
j.x = b
j.u = b
j.p = k
d.u = j
d.w = n
d.p = b
assert j.p.x.o.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.o: B = None
self.z: B = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.u: A = None
self.p: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.w: C = None
self.p: A = None
self.txt = txt
b = A("b")
k = B("k")
n = C("n")
j = B("j")
d = C("d")
b.o = j
b.z = j
b.y = n
k.x = b
k.u = b
k.p = j
n.u = j
n.w = d
n.p = b
j.x = b
j.u = b
j.p = k
d.u = j
d.w = n
d.p = b
assert j.p.x.o.txt == "j"
| 5 | 12 | 2.4 | 0.6 | 3 | 1.666667 | 3 | 3 | 3 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.25 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 |
1,025 |
class A:
def __init__(self, txt: str):
self.s: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
n = A("n")
c = B("c")
k = C("k")
i = A("i")
l = C("l")
d = B("d")
j = A("j")
m = A("m")
g = A("g")
a = B("a")
n.s = d
n.q = c
c.r = k
c.z = k
k.z = l
i.s = a
i.q = a
l.z = k
d.r = k
d.z = l
j.s = c
j.q = a
m.s = c
m.q = c
g.s = d
g.q = c
a.r = k
a.z = l
assert i.q.r.z.z.z.z.z.z.z.z.txt == "
|
k"
|
class A:
def __init__(self, txt: str):
self.s: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
n = A("n")
c = B("c")
k = C("k")
i = A("i")
l = C("l")
d = B("d")
j = A("j")
m = A("m")
g = A("g")
a = B("a")
n.s = d
n.q = c
c.r = k
c.z = k
k.z = l
i.s = a
i.q = a
l.z = k
d.r = k
d.z = l
j.s = c
j.q = a
m.s = c
m.q = c
g.s = d
g.q = c
a.r = k
a.z = l
assert i.q.r.z.z.z.z.z.z.z.z.txt == "k"
| 10 | 15 | 1.5 | 0.166667 | 3 | 3.333333 | 2 | 1 | 1.666667 | 10 | 5 | 4 | 4 | 0.4 | 4 | 0.266667 | 7 | 2 | 8 | 3.75 | 3 | 8 | 8 | 1 |
1,026 |
class A:
def __init__(self, txt: str):
self.w: C = None
self.y: C = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
j = A("j")
i = B("i")
m = C("m")
k = B("k")
f = C("f")
h = B("h")
d = C("d")
a = C("a")
n = B("n")
j.w = f
j.y = m
j.o = n
i.o = d
i.s = n
m.q = i
k.o = f
k.s = h
f.q = i
h.o = f
h.s = n
d.q = n
a.q = n
n.o = d
n.s = h
assert n.s.o.q.s.s.s.o.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.w: C = None
self.y: C = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
j = A("j")
i = B("i")
m = C("m")
k = B("k")
f = C("f")
h = B("h")
d = C("d")
a = C("a")
n = B("n")
j.w = f
j.y = m
j.o = n
i.o = d
i.s = n
m.q = i
k.o = f
k.s = h
f.q = i
h.o = f
h.s = n
d.q = n
a.q = n
n.o = d
n.s = h
assert n.s.o.q.s.s.s.o.txt == "d"
| 9 | 15 | 1.666667 | 0.208333 | 3 | 3 | 3 | 1 | 2 | 7 | 3 | 2 | 5 | 0.555556 | 6 | 0.4 | 3 | 2 | 6 | 4 | 3 | 4 | 3 | 2 |
1,027 |
class A:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: C = None
self.w: C = None
self.txt = txt
e = A("e")
b = B("b")
i = C("i")
j = C("j")
e.p = i
b.s = i
i.t = j
i.w = j
j.t = i
j.w = i
assert e.p.w.t.t.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: C = None
self.w: C = None
self.txt = txt
e = A("e")
b = B("b")
i = C("i")
j = C("j")
e.p = i
b.s = i
i.t = j
i.w = j
j.t = i
j.w = i
assert e.p.w.t.t.txt == "j"
| 4 | 4 | 1 | 0.333333 | 3 | 1.333333 | 2 | 1 | 1.333333 | 4 | 2 | 1 | 3 | 0.75 | 4 | 1 | 2 | 2 | 2 | 2 | 3 | 2 | 2 | 2 |
1,028 |
class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.z: B = None
self.txt = txt
l = A("l")
g = B("g")
j = C("j")
k = A("k")
h = B("h")
l.p = k
g.v = h
g.x = l
j.r = l
j.z = h
k.p = l
h.v = g
h.x = k
assert j.z.x.p.txt == "
|
l"
|
class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.z: B = None
self.txt = txt
l = A("l")
g = B("g")
j = C("j")
k = A("k")
h = B("h")
l.p = k
g.v = h
g.x = l
j.r = l
j.z = h
k.p = l
h.v = g
h.x = k
assert j.z.x.p.txt == "l"
| 5 | 8 | 1.6 | 0.4 | 3 | 1.666667 | 2 | 1 | 1.666667 | 3 | 1 | 1 | 4 | 0.8 | 3 | 0.375 | 0 | null | null | null | 3 | 1 | 1 | 1 |
1,029 |
class A:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.u: C = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.s: A = None
self.txt = txt
m = A("m")
b = B("b")
f = C("f")
k = A("k")
g = B("g")
h = C("h")
m.w = f
b.q = k
b.u = f
b.x = f
f.u = b
f.s = m
k.w = h
g.q = m
g.u = f
g.x = h
h.u = b
h.s = k
assert f.s.w.u.x.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.u: C = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.s: A = None
self.txt = txt
m = A("m")
b = B("b")
f = C("f")
k = A("k")
g = B("g")
h = C("h")
m.w = f
b.q = k
b.u = f
b.x = f
f.u = b
f.s = m
k.w = h
g.q = m
g.u = f
g.x = h
h.u = b
h.s = k
assert f.s.w.u.x.txt == "f"
| 6 | 11 | 1.833333 | 0.366667 | 3 | 2 | 3 | 1 | 2 | 4 | 3 | 1 | 3 | 0.5 | 4 | 0.363636 | 2 | 2 | 4 | 2.666667 | 4 | 1 | 1 | 2 |
1,030 |
class A:
def __init__(self, txt: str):
self.q: C = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.x: A = None
self.q: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
j = A("j")
a = B("a")
i = C("i")
e = C("e")
d = C("d")
c = C("c")
h = B("h")
m = B("m")
j.q = e
j.v = i
a.o = h
a.x = j
a.q = m
i.v = d
e.v = d
d.v = e
c.v = e
h.o = m
h.x = j
h.q = a
m.o = a
m.q = a
m.x = j
assert j.q.v.v.v.v.v.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.q: C = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.x: A = None
self.q: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
j = A("j")
a = B("a")
i = C("i")
e = C("e")
d = C("d")
c = C("c")
h = B("h")
m = B("m")
j.q = e
j.v = i
a.o = h
a.x = j
a.q = m
i.v = d
e.v = d
d.v = e
c.v = e
h.o = m
h.x = j
h.q = a
m.o = a
m.q = a
m.x = j
assert j.q.v.v.v.v.v.txt == "d"
| 8 | 14 | 1.75 | 0.25 | 3 | 2.666667 | 3 | 1 | 2 | 6 | 3 | 3 | 3 | 0.375 | 3 | 0.214286 | 4 | 2 | 4 | 2.666667 | 2 | 5 | 5 | 1 |
1,031 |
class A:
def __init__(self, txt: str):
self.r: B = None
self.p: C = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.y: A = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.r: B = None
self.t: B = None
self.txt = txt
m = A("m")
f = B("f")
c = C("c")
g = A("g")
h = A("h")
j = A("j")
k = A("k")
a = B("a")
m.r = a
m.s = a
m.p = c
f.s = a
f.y = j
f.p = c
c.v = f
c.r = f
c.t = f
g.r = f
g.s = f
g.p = c
h.r = f
h.p = c
h.s = a
j.r = f
j.p = c
j.s = a
k.r = f
k.p = c
k.s = a
a.s = f
a.y = k
a.p = c
assert m.s.p.v.s.y.txt == "
|
k"
|
class A:
def __init__(self, txt: str):
self.r: B = None
self.p: C = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.y: A = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.r: B = None
self.t: B = None
self.txt = txt
m = A("m")
f = B("f")
c = C("c")
g = A("g")
h = A("h")
j = A("j")
k = A("k")
a = B("a")
m.r = a
m.s = a
m.p = c
f.s = a
f.y = j
f.p = c
c.v = f
c.r = f
c.t = f
g.r = f
g.s = f
g.p = c
h.r = f
h.p = c
h.s = a
j.r = f
j.p = c
j.s = a
k.r = f
k.p = c
k.s = a
a.s = f
a.y = k
a.p = c
assert m.s.p.v.s.y.txt == "k"
| 8 | 20 | 2.5 | 0.357143 | 3 | 2.666667 | 3 | 3 | 3 | 5 | 2 | 1 | 5 | 0.625 | 5 | 0.25 | 1 | 3 | 3 | 3 | 4 | 2 | 1 | 2 |
1,032 |
class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.x: A = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
n = A("n")
m = B("m")
i = C("i")
n.y = m
m.t = i
m.s = i
m.x = n
i.z = n
assert n.y.t.z.txt == "
|
n"
|
class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.x: A = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
n = A("n")
m = B("m")
i = C("i")
n.y = m
m.t = i
m.s = i
m.x = n
i.z = n
assert n.y.t.z.txt == "n"
| 3 | 4 | 1.333333 | 0.666667 | 3 | 1 | 3 | 1 | 1.666667 | 3 | 2 | 1 | 3 | 1 | 3 | 0.75 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 |
1,033 |
class A:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.r: B = None
self.txt = txt
n = A("n")
f = B("f")
a = C("a")
k = B("k")
h = C("h")
d = B("d")
l = C("l")
m = A("m")
n.q = a
f.t = m
a.p = m
a.r = f
k.t = m
h.p = m
h.r = k
d.t = m
l.p = n
l.r = k
m.q = l
assert d.t.q.p.q.p.q.txt == "
|
l"
|
class A:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.r: B = None
self.txt = txt
n = A("n")
f = B("f")
a = C("a")
k = B("k")
h = C("h")
d = B("d")
l = C("l")
m = A("m")
n.q = a
f.t = m
a.p = m
a.r = f
k.t = m
h.p = m
h.r = k
d.t = m
l.p = n
l.r = k
m.q = l
assert d.t.q.p.q.p.q.txt == "l"
| 8 | 11 | 1.375 | 0.196429 | 3 | 2.666667 | 2 | 1 | 1.333333 | 6 | 2 | 2 | 5 | 0.625 | 5 | 0.454545 | 2 | 4 | 4 | 4 | 3 | 3 | 1 | 1 |
1,034 |
class A:
def __init__(self, txt: str):
self.y: C = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: C = None
self.y: C = None
self.w: B = None
self.txt = txt
d = A("d")
c = B("c")
b = C("b")
a = C("a")
d.y = b
d.r = b
c.z = b
b.r = a
b.y = a
b.w = c
a.r = b
a.y = b
a.w = c
assert c.z.w.z.y.txt == "
|
a"
|
class A:
def __init__(self, txt: str):
self.y: C = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: C = None
self.y: C = None
self.w: B = None
self.txt = txt
d = A("d")
c = B("c")
b = C("b")
a = C("a")
d.y = b
d.r = b
c.z = b
b.r = a
b.y = a
b.w = c
a.r = b
a.y = b
a.w = c
assert c.z.w.z.y.txt == "a"
| 4 | 6 | 1.5 | 0.5 | 3 | 1.333333 | 3 | 1 | 2 | 4 | 2 | 2 | 3 | 0.75 | 3 | 0.5 | 2 | 2 | 2 | 2 | 3 | 2 | 1 | 2 |
1,035 |
class A:
def __init__(self, txt: str):
self.u: C = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.w: A = None
self.u: A = None
self.txt = txt
i = A("i")
e = B("e")
f = C("f")
g = A("g")
i.u = f
i.s = f
e.s = f
e.p = f
f.x = e
f.w = g
f.u = g
g.u = f
g.s = f
assert e.p.x.p.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.u: C = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.w: A = None
self.u: A = None
self.txt = txt
i = A("i")
e = B("e")
f = C("f")
g = A("g")
i.u = f
i.s = f
e.s = f
e.p = f
f.x = e
f.w = g
f.u = g
g.u = f
g.s = f
assert e.p.x.p.txt == "f"
| 4 | 5 | 1.25 | 0.416667 | 3 | 1.333333 | 3 | 2 | 2.333333 | 3 | 2 | 2 | 2 | 0.5 | 2 | 0.4 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
1,036 |
class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: C = None
self.p: C = None
self.txt = txt
m = A("m")
k = B("k")
a = C("a")
n = C("n")
e = B("e")
b = B("b")
j = C("j")
h = B("h")
m.o = e
k.t = m
a.s = n
a.p = j
n.s = j
n.p = j
e.t = m
b.t = m
j.s = n
j.p = a
h.t = m
assert b.t.o.t.o.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: C = None
self.p: C = None
self.txt = txt
m = A("m")
k = B("k")
a = C("a")
n = C("n")
e = B("e")
b = B("b")
j = C("j")
h = B("h")
m.o = e
k.t = m
a.s = n
a.p = j
n.s = j
n.p = j
e.t = m
b.t = m
j.s = n
j.p = a
h.t = m
assert b.t.o.t.o.txt == "e"
| 8 | 10 | 1.25 | 0.178571 | 3 | 2.666667 | 2 | 1 | 1.333333 | 4 | 2 | 2 | 3 | 0.375 | 3 | 0.3 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
1,037 |
class A:
def __init__(self, txt: str):
self.x: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.t: C = None
self.u: C = None
self.txt = txt
d = A("d")
i = B("i")
j = C("j")
c = C("c")
b = A("b")
d.x = b
d.u = b
i.p = d
i.u = b
j.z = d
j.t = c
j.u = c
c.z = b
c.t = j
c.u = j
b.x = d
b.u = d
assert b.x.u.x.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.x: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.t: C = None
self.u: C = None
self.txt = txt
d = A("d")
i = B("i")
j = C("j")
c = C("c")
b = A("b")
d.x = b
d.u = b
i.p = d
i.u = b
j.z = d
j.t = c
j.u = c
c.z = b
c.t = j
c.u = j
b.x = d
b.u = d
assert b.x.u.x.txt == "d"
| 5 | 8 | 1.6 | 0.4 | 3 | 1.666667 | 3 | 2 | 2.333333 | 3 | 2 | 2 | 2 | 0.4 | 2 | 0.25 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
1,038 |
class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
a = B("a")
n = C("n")
f.y = a
a.q = f
n.q = f
assert n.q.y.q.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
a = B("a")
n = C("n")
f.y = a
a.q = f
n.q = f
assert n.q.y.q.txt == "f"
| 3 | 3 | 1 | 0.5 | 3 | 1 | 1 | 1 | 1 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
1,039 |
class A:
def __init__(self, txt: str):
self.p: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.v: B = None
self.y: A = None
self.txt = txt
b = A("b")
e = B("e")
d = C("d")
a = C("a")
c = C("c")
m = B("m")
j = A("j")
b.p = m
b.r = j
e.p = b
e.w = d
d.z = m
d.v = e
d.y = b
a.z = e
a.v = e
a.y = b
c.z = e
c.v = e
c.y = j
m.p = j
m.w = a
j.p = m
j.r = b
assert e.p.r.r.txt == "
|
b"
|
class A:
def __init__(self, txt: str):
self.p: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.v: B = None
self.y: A = None
self.txt = txt
b = A("b")
e = B("e")
d = C("d")
a = C("a")
c = C("c")
m = B("m")
j = A("j")
b.p = m
b.r = j
e.p = b
e.w = d
d.z = m
d.v = e
d.y = b
a.z = e
a.v = e
a.y = b
c.z = e
c.v = e
c.y = j
m.p = j
m.w = a
j.p = m
j.r = b
assert e.p.r.r.txt == "b"
| 7 | 15 | 2.142857 | 0.357143 | 3 | 2.333333 | 3 | 2 | 2.333333 | 3 | 2 | 1 | 3 | 0.428571 | 3 | 0.2 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
1,040 |
class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: C = None
self.s: C = None
self.q: C = None
self.txt = txt
j = A("j")
d = B("d")
m = C("m")
c = A("c")
f = B("f")
i = A("i")
a = A("a")
l = A("l")
k = A("k")
b = C("b")
j.t = l
d.y = b
m.x = b
m.s = b
m.q = b
c.t = j
f.y = b
i.t = k
a.t = j
l.t = j
k.t = i
b.x = m
b.s = m
b.q = m
assert b.q.x.s.s.x.x.txt == "
|
b"
|
class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: C = None
self.s: C = None
self.q: C = None
self.txt = txt
j = A("j")
d = B("d")
m = C("m")
c = A("c")
f = B("f")
i = A("i")
a = A("a")
l = A("l")
k = A("k")
b = C("b")
j.t = l
d.y = b
m.x = b
m.s = b
m.q = b
c.t = j
f.y = b
i.t = k
a.t = j
l.t = j
k.t = i
b.x = m
b.s = m
b.q = m
assert b.q.x.s.s.x.x.txt == "b"
| 10 | 10 | 1 | 0.111111 | 3 | 3.333333 | 3 | 1 | 1.666667 | 6 | 4 | 2 | 2 | 0.2 | 5 | 0.5 | 5 | 2 | 6 | 3.111111 | 3 | 3 | 2 | 3 |
1,041 |
class A:
def __init__(self, txt: str):
self.p: C = None
self.y: C = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.w: B = None
self.v: C = None
self.txt = txt
a = A("a")
n = B("n")
k = C("k")
c = A("c")
j = B("j")
e = C("e")
i = C("i")
a.p = i
a.y = i
a.v = n
n.w = j
k.q = i
k.v = i
k.w = n
c.p = k
c.y = i
c.v = j
j.w = n
e.q = i
e.v = i
e.w = n
i.q = k
i.w = n
i.v = e
assert i.v.w.w.w.w.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.p: C = None
self.y: C = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.w: B = None
self.v: C = None
self.txt = txt
a = A("a")
n = B("n")
k = C("k")
c = A("c")
j = B("j")
e = C("e")
i = C("i")
a.p = i
a.y = i
a.v = n
n.w = j
k.q = i
k.v = i
k.w = n
c.p = k
c.y = i
c.v = j
j.w = n
e.q = i
e.v = i
e.w = n
i.q = k
i.w = n
i.v = e
assert i.v.w.w.w.w.txt == "j"
| 7 | 14 | 2 | 0.333333 | 3 | 2.333333 | 3 | 1 | 2.333333 | 5 | 2 | 2 | 4 | 0.571429 | 4 | 0.285714 | 2 | 2 | 2 | 2 | 2 | 4 | 4 | 1 |
1,042 |
class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.t: C = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.t: B = None
self.y: B = None
self.txt = txt
f = A("f")
d = B("d")
k = C("k")
n = A("n")
f.o = k
d.x = f
d.t = k
d.z = k
k.z = f
k.t = d
k.y = d
n.o = k
assert f.o.y.z.txt == "
|
k"
|
class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.t: C = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.t: B = None
self.y: B = None
self.txt = txt
f = A("f")
d = B("d")
k = C("k")
n = A("n")
f.o = k
d.x = f
d.t = k
d.z = k
k.z = f
k.t = d
k.y = d
n.o = k
assert f.o.y.z.txt == "k"
| 4 | 6 | 1.5 | 0.5 | 3 | 1.333333 | 3 | 1 | 2.333333 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.5 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 |
1,043 |
class A:
def __init__(self, txt: str):
self.y: B = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.x: B = None
self.txt = txt
g = A("g")
k = B("k")
a = C("a")
g.y = k
g.z = a
k.s = g
a.o = k
a.x = k
assert a.o.s.z.txt == "
|
a"
|
class A:
def __init__(self, txt: str):
self.y: B = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.x: B = None
self.txt = txt
g = A("g")
k = B("k")
a = C("a")
g.y = k
g.z = a
k.s = g
a.o = k
a.x = k
assert a.o.s.z.txt == "a"
| 3 | 4 | 1.333333 | 0.666667 | 3 | 1 | 2 | 1 | 1.666667 | 3 | 2 | 1 | 3 | 1 | 3 | 0.75 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 |
1,044 |
class A:
def __init__(self, txt: str):
self.x: A = None
self.v: B = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.w: B = None
self.y: B = None
self.txt = txt
h = A("h")
f = B("f")
a = C("a")
b = A("b")
e = A("e")
k = C("k")
d = C("d")
g = A("g")
n = B("n")
m = B("m")
h.x = g
h.v = f
h.q = k
f.o = d
a.u = f
a.w = n
a.y = n
b.x = h
b.v = n
b.q = k
e.x = g
e.v = n
e.q = a
k.u = m
k.w = f
k.y = n
d.u = f
d.w = f
d.y = f
g.x = h
g.v = f
g.q = k
n.o = d
m.o = k
assert h.q.y.o.w.o.y.o.u.o.u.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.x: A = None
self.v: B = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.w: B = None
self.y: B = None
self.txt = txt
h = A("h")
f = B("f")
a = C("a")
b = A("b")
e = A("e")
k = C("k")
d = C("d")
g = A("g")
n = B("n")
m = B("m")
h.x = g
h.v = f
h.q = k
f.o = d
a.u = f
a.w = n
a.y = n
b.x = h
b.v = n
b.q = k
e.x = g
e.v = n
e.q = a
k.u = m
k.w = f
k.y = n
d.u = f
d.w = f
d.y = f
g.x = h
g.v = f
g.q = k
n.o = d
m.o = k
assert h.q.y.o.w.o.y.o.u.o.u.txt == "f"
| 10 | 21 | 2.1 | 0.233333 | 3 | 3.333333 | 3 | 1 | 2.333333 | 10 | 4 | 3 | 5 | 0.5 | 7 | 0.333333 | 6 | 2 | 6 | 3.333333 | 5 | 4 | 1 | 3 |
1,045 |
class A:
def __init__(self, txt: str):
self.o: B = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
n = A("n")
f = B("f")
k = C("k")
e = C("e")
d = B("d")
n.o = d
n.s = k
f.v = d
k.o = e
e.o = k
d.v = f
assert e.o.o.o.o.o.txt == "
|
k"
|
class A:
def __init__(self, txt: str):
self.o: B = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
n = A("n")
f = B("f")
k = C("k")
e = C("e")
d = B("d")
n.o = d
n.s = k
f.v = d
k.o = e
e.o = k
d.v = f
assert e.o.o.o.o.o.txt == "k"
| 5 | 6 | 1.2 | 0.3 | 3 | 1.666667 | 2 | 1 | 1.333333 | 5 | 3 | 3 | 2 | 0.4 | 2 | 0.333333 | 4 | 2 | 4 | 2.666667 | 1 | 5 | 5 | 1 |
1,046 |
class A:
def __init__(self, txt: str):
self.y: C = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.t: C = None
self.s: C = None
self.txt = txt
b = A("b")
a = B("a")
h = C("h")
f = C("f")
c = A("c")
m = A("m")
b.y = h
b.x = c
a.o = h
h.w = m
h.t = f
h.s = f
f.w = c
f.t = h
f.s = h
c.y = h
c.x = m
m.y = h
m.x = c
assert a.o.w.y.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.y: C = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.t: C = None
self.s: C = None
self.txt = txt
b = A("b")
a = B("a")
h = C("h")
f = C("f")
c = A("c")
m = A("m")
b.y = h
b.x = c
a.o = h
h.w = m
h.t = f
h.s = f
f.w = c
f.t = h
f.s = h
c.y = h
c.x = m
m.y = h
m.x = c
assert a.o.w.y.txt == "h"
| 6 | 11 | 1.833333 | 0.366667 | 3 | 2 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 0.5 | 3 | 0.272727 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 |
1,047 |
class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: C = None
self.u: B = None
self.t: C = None
self.txt = txt
i = A("i")
h = B("h")
j = C("j")
e = C("e")
d = C("d")
i.z = h
h.x = i
j.y = e
j.u = h
j.t = d
e.y = j
e.t = j
e.u = h
d.y = j
d.t = j
d.u = h
assert d.t.u.x.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: C = None
self.u: B = None
self.t: C = None
self.txt = txt
i = A("i")
h = B("h")
j = C("j")
e = C("e")
d = C("d")
i.z = h
h.x = i
j.y = e
j.u = h
j.t = d
e.y = j
e.t = j
e.u = h
d.y = j
d.t = j
d.u = h
assert d.t.u.x.txt == "i"
| 5 | 9 | 1.8 | 0.45 | 3 | 1.666667 | 3 | 1 | 1.666667 | 3 | 1 | 1 | 4 | 0.8 | 3 | 0.333333 | 0 | null | null | null | 3 | 1 | 1 | 1 |
1,048 |
class A:
def __init__(self, txt: str):
self.x: C = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
k = A("k")
b = B("b")
m = C("m")
j = C("j")
n = A("n")
h = C("h")
d = A("d")
k.x = j
k.o = h
b.t = k
m.w = h
j.w = h
n.x = m
n.o = h
h.w = m
d.x = j
d.o = m
assert n.o.w.w.w.w.w.txt == "
|
m"
|
class A:
def __init__(self, txt: str):
self.x: C = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
k = A("k")
b = B("b")
m = C("m")
j = C("j")
n = A("n")
h = C("h")
d = A("d")
k.x = j
k.o = h
b.t = k
m.w = h
j.w = h
n.x = m
n.o = h
h.w = m
d.x = j
d.o = m
assert n.o.w.w.w.w.w.txt == "m"
| 7 | 10 | 1.428571 | 0.238095 | 3 | 2.333333 | 2 | 1 | 1.333333 | 6 | 3 | 3 | 3 | 0.428571 | 3 | 0.3 | 4 | 2 | 4 | 2.666667 | 2 | 5 | 5 | 1 |
1,049 |
class A:
def __init__(self, txt: str):
self.o: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: C = None
self.v: A = None
self.o: C = None
self.txt = txt
h = A("h")
d = B("d")
c = C("c")
n = C("n")
k = A("k")
f = B("f")
a = C("a")
l = A("l")
h.o = f
h.r = d
d.p = a
d.x = f
c.t = n
c.o = n
c.v = k
n.t = a
n.v = h
n.o = c
k.o = d
k.r = f
f.p = n
f.x = d
a.t = c
a.v = l
a.o = n
l.o = f
l.r = d
assert c.v.o.x.x.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.o: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: C = None
self.v: A = None
self.o: C = None
self.txt = txt
h = A("h")
d = B("d")
c = C("c")
n = C("n")
k = A("k")
f = B("f")
a = C("a")
l = A("l")
h.o = f
h.r = d
d.p = a
d.x = f
c.t = n
c.o = n
c.v = k
n.t = a
n.v = h
n.o = c
k.o = d
k.r = f
f.p = n
f.x = d
a.t = c
a.v = l
a.o = n
l.o = f
l.r = d
assert c.v.o.x.x.txt == "d"
| 8 | 18 | 2.25 | 0.321429 | 3 | 2.666667 | 3 | 2 | 2.333333 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.222222 | 1 | 2 | 2 | 2 | 3 | 2 | 2 | 1 |
1,050 |
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.r: A = None
self.p: A = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.v: A = None
self.txt = txt
g = A("g")
n = B("n")
i = C("i")
l = B("l")
e = C("e")
m = A("m")
b = C("b")
k = C("k")
g.s = m
g.r = l
n.r = m
n.p = m
n.o = l
i.y = m
i.v = m
l.r = g
l.p = g
l.o = n
e.y = m
e.v = m
m.s = g
m.r = l
b.y = m
b.v = m
k.y = m
k.v = m
assert e.v.r.p.r.o.txt == "
|
n"
|
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.r: A = None
self.p: A = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.v: A = None
self.txt = txt
g = A("g")
n = B("n")
i = C("i")
l = B("l")
e = C("e")
m = A("m")
b = C("b")
k = C("k")
g.s = m
g.r = l
n.r = m
n.p = m
n.o = l
i.y = m
i.v = m
l.r = g
l.p = g
l.o = n
e.y = m
e.v = m
m.s = g
m.r = l
b.y = m
b.v = m
k.y = m
k.v = m
assert e.v.r.p.r.o.txt == "n"
| 8 | 12 | 1.5 | 0.214286 | 3 | 2.666667 | 3 | 2 | 2.333333 | 5 | 2 | 1 | 5 | 0.625 | 5 | 0.416667 | 1 | 2 | 2 | 2 | 4 | 2 | 1 | 2 |
1,051 |
class A:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.x: C = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.t: C = None
self.txt = txt
f = A("f")
a = B("a")
j = C("j")
m = A("m")
c = B("c")
l = C("l")
e = B("e")
n = C("n")
f.p = j
a.r = m
a.x = n
a.q = n
j.q = l
j.t = l
m.p = l
c.r = m
c.x = j
c.q = l
l.q = n
l.t = n
e.r = f
e.x = l
e.q = l
n.q = j
n.t = l
assert j.t.t.q.t.t.q.q.t.txt == "
|
n"
|
class A:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.x: C = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.t: C = None
self.txt = txt
f = A("f")
a = B("a")
j = C("j")
m = A("m")
c = B("c")
l = C("l")
e = B("e")
n = C("n")
f.p = j
a.r = m
a.x = n
a.q = n
j.q = l
j.t = l
m.p = l
c.r = m
c.x = j
c.q = l
l.q = n
l.t = n
e.r = f
e.x = l
e.q = l
n.q = j
n.t = l
assert j.t.t.q.t.t.q.q.t.txt == "n"
| 8 | 13 | 1.625 | 0.232143 | 3 | 2.666667 | 3 | 1 | 2 | 8 | 3 | 3 | 3 | 0.375 | 4 | 0.307692 | 6 | 3 | 6 | 4 | 2 | 5 | 2 | 2 |
1,052 |
class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
h = A("h")
d = B("d")
j = C("j")
a = C("a")
n = C("n")
l = B("l")
h.o = j
d.o = l
j.s = h
a.s = h
n.s = h
l.o = d
assert l.o.o.o.o.txt == "
|
l"
|
class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
h = A("h")
d = B("d")
j = C("j")
a = C("a")
n = C("n")
l = B("l")
h.o = j
d.o = l
j.s = h
a.s = h
n.s = h
l.o = d
assert l.o.o.o.o.txt == "l"
| 6 | 6 | 1 | 0.2 | 3 | 2 | 1 | 1 | 1 | 4 | 3 | 2 | 2 | 0.333333 | 2 | 0.333333 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
1,053 |
class A:
def __init__(self, txt: str):
self.y: C = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.w: B = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.t: C = None
self.p: C = None
self.txt = txt
n = A("n")
m = B("m")
j = C("j")
k = B("k")
f = C("f")
d = A("d")
b = B("b")
a = A("a")
n.y = j
n.t = m
m.u = d
m.w = k
m.t = j
j.w = d
j.t = f
j.p = f
k.u = n
k.w = b
k.t = j
f.w = d
f.t = j
f.p = j
d.y = f
d.t = b
b.u = n
b.w = k
b.t = j
a.y = f
a.t = m
assert k.w.t.w.y.t.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.y: C = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.w: B = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.t: C = None
self.p: C = None
self.txt = txt
n = A("n")
m = B("m")
j = C("j")
k = B("k")
f = C("f")
d = A("d")
b = B("b")
a = A("a")
n.y = j
n.t = m
m.u = d
m.w = k
m.t = j
j.w = d
j.t = f
j.p = f
k.u = n
k.w = b
k.t = j
f.w = d
f.t = j
f.p = j
d.y = f
d.t = b
b.u = n
b.w = k
b.t = j
a.y = f
a.t = m
assert k.w.t.w.y.t.txt == "j"
| 8 | 19 | 2.375 | 0.339286 | 3 | 2.666667 | 3 | 2 | 2.666667 | 5 | 2 | 1 | 5 | 0.625 | 5 | 0.263158 | 1 | 3 | 3 | 3 | 3 | 2 | 1 | 1 |
1,054 |
class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.x: C = None
self.txt = txt
e = A("e")
n = B("n")
k = C("k")
f = C("f")
c = B("c")
g = A("g")
a = B("a")
e.x = a
n.o = a
n.v = c
k.w = g
k.x = f
f.w = g
f.x = k
c.o = a
c.v = n
g.x = c
a.o = c
a.v = c
assert g.x.v.o.o.o.o.txt == "
|
c"
|
class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.x: C = None
self.txt = txt
e = A("e")
n = B("n")
k = C("k")
f = C("f")
c = B("c")
g = A("g")
a = B("a")
e.x = a
n.o = a
n.v = c
k.w = g
k.x = f
f.w = g
f.x = k
c.o = a
c.v = n
g.x = c
a.o = c
a.v = c
assert g.x.v.o.o.o.o.txt == "c"
| 7 | 11 | 1.571429 | 0.261905 | 3 | 2.333333 | 2 | 1 | 1.666667 | 6 | 3 | 2 | 4 | 0.571429 | 5 | 0.454545 | 3 | 2 | 5 | 3 | 3 | 4 | 4 | 2 |
1,055 |
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.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.x: A = None
self.txt = txt
l = A("l")
j = B("j")
m = C("m")
l.v = j
j.o = l
m.z = j
m.x = l
assert l.v.o.v.txt == "
|
j"
|
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.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.x: A = None
self.txt = txt
l = A("l")
j = B("j")
m = C("m")
l.v = j
j.o = l
m.z = j
m.x = l
assert l.v.o.v.txt == "j"
| 3 | 4 | 1.333333 | 0.666667 | 3 | 1 | 2 | 1 | 1.333333 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.5 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
1,056 |
class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.z: C = None
self.txt = txt
c = A("c")
b = B("b")
d = C("d")
a = B("a")
l = A("l")
j = C("j")
m = B("m")
f = C("f")
c.t = l
b.r = l
d.x = c
d.z = j
a.r = l
l.t = c
j.x = l
j.z = f
m.r = c
f.x = l
f.z = d
assert d.x.t.t.t.txt == "
|
l"
|
class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.z: C = None
self.txt = txt
c = A("c")
b = B("b")
d = C("d")
a = B("a")
l = A("l")
j = C("j")
m = B("m")
f = C("f")
c.t = l
b.r = l
d.x = c
d.z = j
a.r = l
l.t = c
j.x = l
j.z = f
m.r = c
f.x = l
f.z = d
assert d.x.t.t.t.txt == "l"
| 8 | 11 | 1.375 | 0.196429 | 3 | 2.666667 | 2 | 1 | 1.333333 | 4 | 2 | 2 | 3 | 0.375 | 3 | 0.272727 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
1,057 |
class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
k = A("k")
l = B("l")
c = C("c")
b = B("b")
g = A("g")
e = B("e")
k.s = c
l.q = g
c.u = b
b.q = g
g.s = c
e.q = k
assert e.q.s.u.q.s.txt == "
|
c"
|
class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
k = A("k")
l = B("l")
c = C("c")
b = B("b")
g = A("g")
e = B("e")
k.s = c
l.q = g
c.u = b
b.q = g
g.s = c
e.q = k
assert e.q.s.u.q.s.txt == "c"
| 6 | 6 | 1 | 0.2 | 3 | 2 | 1 | 1 | 1 | 5 | 2 | 1 | 5 | 0.833333 | 5 | 0.833333 | 1 | 3 | 3 | 3 | 3 | 2 | 1 | 1 |
1,058 |
class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.u: B = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
h = A("h")
k = B("k")
l = C("l")
a = B("a")
d = C("d")
h.x = a
k.o = a
k.u = a
k.r = h
l.v = k
a.o = k
a.u = k
a.r = h
d.v = k
assert a.r.x.o.o.r.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.u: B = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
h = A("h")
k = B("k")
l = C("l")
a = B("a")
d = C("d")
h.x = a
k.o = a
k.u = a
k.r = h
l.v = k
a.o = k
a.u = k
a.r = h
d.v = k
assert a.r.x.o.o.r.txt == "h"
| 5 | 7 | 1.4 | 0.35 | 3 | 1.666667 | 3 | 1 | 1.666667 | 5 | 3 | 2 | 3 | 0.6 | 4 | 0.571429 | 3 | 2 | 4 | 3 | 3 | 2 | 2 | 2 |
1,059 |
class A:
def __init__(self, txt: str):
self.z: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.r: A = None
self.s: A = None
self.txt = txt
j = A("j")
h = B("h")
e = C("e")
g = A("g")
j.z = h
j.p = g
h.p = j
h.x = g
e.u = g
e.r = g
e.s = j
g.z = h
g.p = j
assert g.p.z.p.p.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.z: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.r: A = None
self.s: A = None
self.txt = txt
j = A("j")
h = B("h")
e = C("e")
g = A("g")
j.z = h
j.p = g
h.p = j
h.x = g
e.u = g
e.r = g
e.s = j
g.z = h
g.p = j
assert g.p.z.p.p.txt == "g"
| 4 | 8 | 2 | 0.666667 | 3 | 1.333333 | 3 | 2 | 2.333333 | 4 | 2 | 1 | 3 | 0.75 | 4 | 0.5 | 2 | 2 | 4 | 3 | 2 | 3 | 2 | 2 |
1,060 |
class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: C = None
self.u: A = None
self.txt = txt
k = A("k")
c = B("c")
f = C("f")
a = C("a")
n = C("n")
i = A("i")
e = A("e")
h = C("h")
l = B("l")
k.w = i
c.q = n
c.y = h
f.p = a
f.u = i
a.p = h
a.u = k
n.p = f
n.u = e
i.w = k
e.w = i
h.p = a
h.u = e
l.q = h
l.y = h
assert i.w.w.w.w.w.txt == "
|
k"
|
class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: C = None
self.u: A = None
self.txt = txt
k = A("k")
c = B("c")
f = C("f")
a = C("a")
n = C("n")
i = A("i")
e = A("e")
h = C("h")
l = B("l")
k.w = i
c.q = n
c.y = h
f.p = a
f.u = i
a.p = h
a.u = k
n.p = f
n.u = e
i.w = k
e.w = i
h.p = a
h.u = e
l.q = h
l.y = h
assert i.w.w.w.w.w.txt == "k"
| 9 | 14 | 1.555556 | 0.194444 | 3 | 3 | 2 | 1 | 1.666667 | 5 | 3 | 3 | 2 | 0.222222 | 2 | 0.142857 | 4 | 2 | 4 | 2.666667 | 1 | 5 | 5 | 1 |
1,061 |
class A:
def __init__(self, txt: str):
self.p: B = None
self.v: C = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.y: C = None
self.t: C = None
self.txt = txt
n = A("n")
i = B("i")
e = C("e")
j = C("j")
h = B("h")
k = B("k")
f = B("f")
b = A("b")
d = C("d")
n.p = h
n.o = h
n.v = e
i.y = n
i.o = n
e.q = h
e.y = j
e.t = j
j.q = f
j.y = d
j.t = e
h.y = n
h.o = b
k.y = n
k.o = b
f.y = b
f.o = n
b.p = h
b.v = e
b.o = i
d.q = k
d.y = e
d.t = e
assert n.p.o.p.o.txt == "
|
b"
|
class A:
def __init__(self, txt: str):
self.p: B = None
self.v: C = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.y: C = None
self.t: C = None
self.txt = txt
n = A("n")
i = B("i")
e = C("e")
j = C("j")
h = B("h")
k = B("k")
f = B("f")
b = A("b")
d = C("d")
n.p = h
n.o = h
n.v = e
i.y = n
i.o = n
e.q = h
e.y = j
e.t = j
j.q = f
j.y = d
j.t = e
h.y = n
h.o = b
k.y = n
k.o = b
f.y = b
f.o = n
b.p = h
b.v = e
b.o = i
d.q = k
d.y = e
d.t = e
assert n.p.o.p.o.txt == "b"
| 9 | 19 | 2.111111 | 0.263889 | 3 | 3 | 3 | 2 | 2.666667 | 4 | 2 | 2 | 3 | 0.333333 | 3 | 0.157895 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
1,062 |
class A:
def __init__(self, txt: str):
self.z: A = None
self.x: C = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
h = A("h")
c = B("c")
k = C("k")
m = A("m")
h.z = m
h.v = m
h.x = k
c.y = k
k.q = m
m.z = h
m.v = h
m.x = k
assert m.x.q.x.txt == "
|
k"
|
class A:
def __init__(self, txt: str):
self.z: A = None
self.x: C = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
h = A("h")
c = B("c")
k = C("k")
m = A("m")
h.z = m
h.v = m
h.x = k
c.y = k
k.q = m
m.z = h
m.v = h
m.x = k
assert m.x.q.x.txt == "k"
| 4 | 6 | 1.5 | 0.5 | 3 | 1.333333 | 3 | 1 | 1.666667 | 3 | 2 | 2 | 2 | 0.5 | 2 | 0.333333 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
1,063 |
class A:
def __init__(self, txt: str):
self.o: A = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.x: C = None
self.u: A = None
self.txt = txt
m = A("m")
h = B("h")
a = C("a")
g = A("g")
n = C("n")
e = A("e")
l = A("l")
d = A("d")
f = A("f")
m.o = g
m.v = a
h.w = n
h.v = d
a.r = h
a.x = n
a.u = d
g.o = e
g.v = n
n.r = h
n.x = a
n.u = e
e.o = m
e.v = a
l.o = e
l.v = n
d.o = l
d.v = a
f.o = l
f.v = a
assert f.o.v.u.o.v.u.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.o: A = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.x: C = None
self.u: A = None
self.txt = txt
m = A("m")
h = B("h")
a = C("a")
g = A("g")
n = C("n")
e = A("e")
l = A("l")
d = A("d")
f = A("f")
m.o = g
m.v = a
h.w = n
h.v = d
a.r = h
a.x = n
a.u = d
g.o = e
g.v = n
n.r = h
n.x = a
n.u = e
e.o = m
e.v = a
l.o = e
l.v = n
d.o = l
d.v = a
f.o = l
f.v = a
assert f.o.v.u.o.v.u.txt == "d"
| 9 | 20 | 2.222222 | 0.277778 | 3 | 3 | 3 | 2 | 2.333333 | 6 | 1 | 1 | 7 | 0.777778 | 6 | 0.3 | 0 | null | null | null | 3 | 2 | 1 | 1 |
1,064 |
class A:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
e = A("e")
l = B("l")
h = C("h")
e.u = h
l.q = h
l.x = e
h.x = l
assert e.u.x.q.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
e = A("e")
l = B("l")
h = C("h")
e.u = h
l.q = h
l.x = e
h.x = l
assert e.u.x.q.txt == "h"
| 3 | 4 | 1.333333 | 0.666667 | 3 | 1 | 2 | 1 | 1.333333 | 3 | 2 | 1 | 3 | 1 | 3 | 0.75 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 |
1,065 |
class A:
def __init__(self, txt: str):
self.r: B = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
d = A("d")
f = B("f")
h = C("h")
d.r = f
d.t = h
f.s = d
h.u = f
assert d.r.s.t.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.r: B = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
d = A("d")
f = B("f")
h = C("h")
d.r = f
d.t = h
f.s = d
h.u = f
assert d.r.s.t.txt == "h"
| 3 | 4 | 1.333333 | 0.666667 | 3 | 1 | 2 | 1 | 1.333333 | 3 | 2 | 1 | 3 | 1 | 3 | 0.75 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 2 |
1,066 |
class A:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.q: A = None
self.r: C = None
self.txt = txt
k = A("k")
a = B("a")
c = C("c")
j = C("j")
k.t = j
a.o = j
a.s = k
c.x = a
c.q = k
c.r = j
j.x = a
j.q = k
j.r = c
assert c.r.r.q.txt == "
|
k"
|
class A:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.q: A = None
self.r: C = None
self.txt = txt
k = A("k")
a = B("a")
c = C("c")
j = C("j")
k.t = j
a.o = j
a.s = k
c.x = a
c.q = k
c.r = j
j.x = a
j.q = k
j.r = c
assert c.r.r.q.txt == "k"
| 4 | 9 | 2.25 | 0.75 | 3 | 1.333333 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.333333 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
1,067 |
class A:
def __init__(self, txt: str):
self.q: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
j = A("j")
e = B("e")
h = C("h")
b = B("b")
d = B("d")
k = A("k")
i = B("i")
c = A("c")
f = B("f")
j.q = c
j.v = e
e.s = h
h.z = d
b.s = h
d.s = h
k.q = j
k.v = i
i.s = h
c.q = k
c.v = i
f.s = h
assert b.s.z.s.z.s.z.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.q: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
j = A("j")
e = B("e")
h = C("h")
b = B("b")
d = B("d")
k = A("k")
i = B("i")
c = A("c")
f = B("f")
j.q = c
j.v = e
e.s = h
h.z = d
b.s = h
d.s = h
k.q = j
k.v = i
i.s = h
c.q = k
c.v = i
f.s = h
assert b.s.z.s.z.s.z.txt == "d"
| 9 | 12 | 1.333333 | 0.166667 | 3 | 3 | 2 | 1 | 1.333333 | 6 | 3 | 3 | 3 | 0.333333 | 3 | 0.25 | 4 | 2 | 4 | 2.666667 | 2 | 3 | 1 | 1 |
1,068 |
class A:
def __init__(self, txt: str):
self.o: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.w: A = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
k = A("k")
j = B("j")
m = C("m")
a = B("a")
k.o = j
k.u = a
j.q = k
j.w = k
j.r = m
m.s = k
a.q = k
a.w = k
a.r = m
assert j.r.s.o.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.o: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.w: A = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
k = A("k")
j = B("j")
m = C("m")
a = B("a")
k.o = j
k.u = a
j.q = k
j.w = k
j.r = m
m.s = k
a.q = k
a.w = k
a.r = m
assert j.r.s.o.txt == "j"
| 4 | 7 | 1.75 | 0.583333 | 3 | 1.333333 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.428571 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 |
1,069 |
class A:
def __init__(self, txt: str):
self.p: A = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: C = None
self.t: A = None
self.txt = txt
g = A("g")
d = B("d")
b = C("b")
m = C("m")
a = C("a")
c = B("c")
n = A("n")
k = B("k")
g.p = n
g.x = m
d.o = k
b.o = m
b.t = g
m.o = a
m.t = g
a.o = b
a.t = n
c.o = d
n.p = g
n.x = a
k.o = d
assert m.t.p.x.t.p.p.p.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.p: A = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: C = None
self.t: A = None
self.txt = txt
g = A("g")
d = B("d")
b = C("b")
m = C("m")
a = C("a")
c = B("c")
n = A("n")
k = B("k")
g.p = n
g.x = m
d.o = k
b.o = m
b.t = g
m.o = a
m.t = g
a.o = b
a.t = n
c.o = d
n.p = g
n.x = a
k.o = d
assert m.t.p.x.t.p.p.p.txt == "g"
| 8 | 13 | 1.625 | 0.232143 | 3 | 2.666667 | 2 | 1 | 1.666667 | 7 | 3 | 2 | 4 | 0.5 | 5 | 0.384615 | 4 | 2 | 6 | 3.333333 | 3 | 4 | 3 | 2 |
1,070 |
class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.o: A = None
self.txt = txt
k = A("k")
h = B("h")
f = C("f")
b = A("b")
d = A("d")
k.y = h
h.v = d
f.q = h
f.o = b
b.y = h
d.y = h
assert h.v.y.v.y.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.o: A = None
self.txt = txt
k = A("k")
h = B("h")
f = C("f")
b = A("b")
d = A("d")
k.y = h
h.v = d
f.q = h
f.o = b
b.y = h
d.y = h
assert h.v.y.v.y.txt == "h"
| 5 | 6 | 1.2 | 0.3 | 3 | 1.666667 | 2 | 1 | 1.333333 | 4 | 3 | 2 | 2 | 0.4 | 2 | 0.333333 | 3 | 2 | 4 | 2.5 | 2 | 2 | 1 | 1 |
1,071 |
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: C = None
self.y: B = None
self.u: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
c = A("c")
g = B("g")
l = C("l")
e = C("e")
j = C("j")
k = B("k")
b = A("b")
d = A("d")
f = B("f")
n = B("n")
c.u = b
c.o = n
g.z = e
g.y = k
g.u = k
l.x = c
e.x = c
j.x = d
k.z = j
k.y = n
k.u = f
b.u = c
b.o = k
d.u = c
d.o = g
f.z = j
f.y = n
f.u = n
n.z = e
n.y = k
n.u = g
assert n.u.u.y.u.u.u.txt == "
|
f"
|
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: C = None
self.y: B = None
self.u: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
c = A("c")
g = B("g")
l = C("l")
e = C("e")
j = C("j")
k = B("k")
b = A("b")
d = A("d")
f = B("f")
n = B("n")
c.u = b
c.o = n
g.z = e
g.y = k
g.u = k
l.x = c
e.x = c
j.x = d
k.z = j
k.y = n
k.u = f
b.u = c
b.o = k
d.u = c
d.o = g
f.z = j
f.y = n
f.u = n
n.z = e
n.y = k
n.u = g
assert n.u.u.y.u.u.u.txt == "f"
| 10 | 19 | 1.9 | 0.211111 | 3 | 3.333333 | 3 | 1 | 2 | 6 | 2 | 2 | 4 | 0.4 | 4 | 0.210526 | 3 | 3 | 3 | 3 | 2 | 5 | 3 | 2 |
1,072 |
class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.u: B = None
self.s: A = None
self.txt = txt
h = A("h")
k = B("k")
j = C("j")
h.t = k
k.x = h
j.w = h
j.s = h
j.u = k
assert j.u.x.t.txt == "
|
k"
|
class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.u: B = None
self.s: A = None
self.txt = txt
h = A("h")
k = B("k")
j = C("j")
h.t = k
k.x = h
j.w = h
j.s = h
j.u = k
assert j.u.x.t.txt == "k"
| 3 | 4 | 1.333333 | 0.666667 | 3 | 1 | 3 | 1 | 1.666667 | 3 | 2 | 1 | 3 | 1 | 3 | 0.75 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 |
1,073 |
class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: A = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.z: B = None
self.y: A = None
self.txt = txt
c = A("c")
h = B("h")
k = C("k")
b = A("b")
d = B("d")
g = B("g")
c.q = h
h.w = g
h.q = c
h.y = c
k.p = b
k.y = b
k.z = d
b.q = g
d.w = h
d.q = b
d.y = b
g.w = d
g.q = b
g.y = c
assert c.q.w.w.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: A = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.z: B = None
self.y: A = None
self.txt = txt
c = A("c")
h = B("h")
k = C("k")
b = A("b")
d = B("d")
g = B("g")
c.q = h
h.w = g
h.q = c
h.y = c
k.p = b
k.y = b
k.z = d
b.q = g
d.w = h
d.q = b
d.y = b
g.w = d
g.q = b
g.y = c
assert c.q.w.w.txt == "d"
| 6 | 11 | 1.833333 | 0.366667 | 3 | 2 | 3 | 1 | 2.333333 | 3 | 1 | 1 | 4 | 0.666667 | 3 | 0.272727 | 0 | null | null | null | 2 | 2 | 2 | 1 |
1,074 |
class A:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.p: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: C = None
self.t: C = None
self.txt = txt
n = A("n")
e = B("e")
k = C("k")
i = A("i")
a = B("a")
d = B("d")
h = C("h")
l = A("l")
b = A("b")
m = B("m")
n.u = h
e.z = k
e.p = d
k.o = h
k.t = h
i.u = h
a.z = h
a.p = m
d.z = k
d.p = a
h.o = k
h.t = k
l.u = k
b.u = k
m.z = h
m.p = e
assert a.p.z.t.o.o.o.o.t.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.p: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: C = None
self.t: C = None
self.txt = txt
n = A("n")
e = B("e")
k = C("k")
i = A("i")
a = B("a")
d = B("d")
h = C("h")
l = A("l")
b = A("b")
m = B("m")
n.u = h
e.z = k
e.p = d
k.o = h
k.t = h
i.u = h
a.z = h
a.p = m
d.z = k
d.p = a
h.o = k
h.t = k
l.u = k
b.u = k
m.z = h
m.p = e
assert a.p.z.t.o.o.o.o.t.txt == "h"
| 10 | 14 | 1.4 | 0.155556 | 3 | 3.333333 | 2 | 1 | 1.666667 | 8 | 4 | 2 | 4 | 0.4 | 6 | 0.428571 | 5 | 2 | 6 | 3.111111 | 4 | 4 | 4 | 2 |
1,075 |
class A:
def __init__(self, txt: str):
self.w: B = None
self.q: C = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.x: A = None
self.y: B = None
self.txt = txt
l = A("l")
m = B("m")
c = C("c")
l.w = m
l.r = m
l.q = c
m.x = c
m.q = c
c.w = m
c.y = m
c.x = l
assert l.r.q.w.txt == "
|
m"
|
class A:
def __init__(self, txt: str):
self.w: B = None
self.q: C = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.x: A = None
self.y: B = None
self.txt = txt
l = A("l")
m = B("m")
c = C("c")
l.w = m
l.r = m
l.q = c
m.x = c
m.q = c
c.w = m
c.y = m
c.x = l
assert l.r.q.w.txt == "m"
| 3 | 5 | 1.666667 | 0.833333 | 3 | 1 | 3 | 2 | 2.666667 | 3 | 2 | 1 | 3 | 1 | 3 | 0.6 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 |
1,076 |
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.v: C = None
self.w: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.o: C = None
self.txt = txt
g = A("g")
h = B("h")
n = C("n")
f = A("f")
l = B("l")
c = A("c")
e = C("e")
g.t = c
g.z = l
h.v = n
h.w = l
n.x = f
n.o = e
f.t = c
f.z = h
l.v = n
l.w = h
c.t = g
c.z = h
e.x = g
e.o = n
assert c.t.t.z.v.x.z.txt == "
|
h"
|
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.v: C = None
self.w: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.o: C = None
self.txt = txt
g = A("g")
h = B("h")
n = C("n")
f = A("f")
l = B("l")
c = A("c")
e = C("e")
g.t = c
g.z = l
h.v = n
h.w = l
n.x = f
n.o = e
f.t = c
f.z = h
l.v = n
l.w = h
c.t = g
c.z = h
e.x = g
e.o = n
assert c.t.t.z.v.x.z.txt == "h"
| 7 | 14 | 2 | 0.333333 | 3 | 2.333333 | 2 | 2 | 2 | 6 | 2 | 1 | 5 | 0.714286 | 6 | 0.428571 | 2 | 2 | 3 | 2.5 | 4 | 2 | 2 | 2 |
1,077 |
class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.u: B = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.o: A = None
self.z: A = None
self.txt = txt
m = A("m")
f = B("f")
e = C("e")
k = B("k")
m.x = f
f.s = m
f.u = k
f.o = k
e.q = k
e.o = m
e.z = m
k.s = m
k.u = f
k.o = f
assert k.s.x.s.x.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.u: B = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.o: A = None
self.z: A = None
self.txt = txt
m = A("m")
f = B("f")
e = C("e")
k = B("k")
m.x = f
f.s = m
f.u = k
f.o = k
e.q = k
e.o = m
e.z = m
k.s = m
k.u = f
k.o = f
assert k.s.x.s.x.txt == "f"
| 4 | 7 | 1.75 | 0.583333 | 3 | 1.333333 | 3 | 1 | 2.333333 | 4 | 2 | 2 | 3 | 0.75 | 3 | 0.428571 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
1,078 |
class A:
def __init__(self, txt: str):
self.v: B = None
self.y: C = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.v: A = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.s: B = None
self.txt = txt
e = A("e")
a = B("a")
b = C("b")
i = C("i")
l = B("l")
n = A("n")
d = A("d")
e.v = l
e.y = b
e.t = n
a.x = l
a.v = e
a.w = e
b.v = a
b.s = a
i.v = l
i.s = a
l.x = a
l.v = e
l.w = d
n.v = a
n.y = b
n.t = d
d.v = a
d.y = i
d.t = e
assert l.v.v.x.w.t.y.txt == "
|
b"
|
class A:
def __init__(self, txt: str):
self.v: B = None
self.y: C = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.v: A = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.s: B = None
self.txt = txt
e = A("e")
a = B("a")
b = C("b")
i = C("i")
l = B("l")
n = A("n")
d = A("d")
e.v = l
e.y = b
e.t = n
a.x = l
a.v = e
a.w = e
b.v = a
b.s = a
i.v = l
i.s = a
l.x = a
l.v = e
l.w = d
n.v = a
n.y = b
n.t = d
d.v = a
d.y = i
d.t = e
assert l.v.v.x.w.t.y.txt == "b"
| 7 | 17 | 2.428571 | 0.404762 | 3 | 2.333333 | 3 | 2 | 2.666667 | 6 | 2 | 1 | 5 | 0.714286 | 6 | 0.352941 | 2 | 2 | 3 | 2.5 | 5 | 2 | 2 | 2 |
1,079 |
class A:
def __init__(self, txt: str):
self.z: B = None
self.w: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
g = A("g")
j = B("j")
k = C("k")
h = C("h")
b = C("b")
m = A("m")
a = A("a")
f = C("f")
l = B("l")
d = B("d")
g.z = j
g.w = m
g.o = m
j.y = g
k.o = j
h.o = d
b.o = d
m.z = l
m.w = a
m.o = a
a.z = d
a.w = m
a.o = g
f.o = j
l.y = a
d.y = a
assert j.y.z.y.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.z: B = None
self.w: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
g = A("g")
j = B("j")
k = C("k")
h = C("h")
b = C("b")
m = A("m")
a = A("a")
f = C("f")
l = B("l")
d = B("d")
g.z = j
g.w = m
g.o = m
j.y = g
k.o = j
h.o = d
b.o = d
m.z = l
m.w = a
m.o = a
a.z = d
a.w = m
a.o = g
f.o = j
l.y = a
d.y = a
assert j.y.z.y.txt == "g"
| 10 | 14 | 1.4 | 0.155556 | 3 | 3.333333 | 3 | 1 | 1.666667 | 3 | 2 | 2 | 2 | 0.2 | 2 | 0.142857 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
1,080 |
class A:
def __init__(self, txt: str):
self.p: C = None
self.s: C = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
j = A("j")
c = B("c")
f = C("f")
a = B("a")
k = A("k")
n = B("n")
j.p = f
j.s = f
j.u = f
c.q = k
f.y = a
a.q = k
k.p = f
k.s = f
k.u = f
n.q = k
assert j.u.y.q.txt == "
|
k"
|
class A:
def __init__(self, txt: str):
self.p: C = None
self.s: C = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
j = A("j")
c = B("c")
f = C("f")
a = B("a")
k = A("k")
n = B("n")
j.p = f
j.s = f
j.u = f
c.q = k
f.y = a
a.q = k
k.p = f
k.s = f
k.u = f
n.q = k
assert j.u.y.q.txt == "k"
| 6 | 6 | 1 | 0.2 | 3 | 2 | 3 | 1 | 1.666667 | 3 | 1 | 1 | 4 | 0.666667 | 3 | 0.5 | 0 | null | null | null | 3 | 1 | 1 | 1 |
1,081 |
class A:
def __init__(self, txt: str):
self.z: B = None
self.x: C = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.q: A = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.r: C = None
self.z: C = None
self.txt = txt
h = A("h")
e = B("e")
k = C("k")
a = C("a")
l = A("l")
g = C("g")
h.z = e
h.r = e
h.x = k
e.p = h
e.q = h
e.s = k
k.u = h
k.r = g
k.z = g
a.u = h
a.r = g
a.z = g
l.z = e
l.r = e
l.x = k
g.u = h
g.r = a
g.z = a
assert a.r.z.r.u.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.z: B = None
self.x: C = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.q: A = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.r: C = None
self.z: C = None
self.txt = txt
h = A("h")
e = B("e")
k = C("k")
a = C("a")
l = A("l")
g = C("g")
h.z = e
h.r = e
h.x = k
e.p = h
e.q = h
e.s = k
k.u = h
k.r = g
k.z = g
a.u = h
a.r = g
a.z = g
l.z = e
l.r = e
l.x = k
g.u = h
g.r = a
g.z = a
assert a.r.z.r.u.txt == "h"
| 6 | 12 | 2 | 0.4 | 3 | 2 | 3 | 3 | 3 | 4 | 2 | 2 | 3 | 0.5 | 3 | 0.25 | 2 | 2 | 2 | 2 | 3 | 2 | 1 | 2 |
1,082 |
class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
f = A("f")
e = B("e")
g = C("g")
k = A("k")
f.w = e
e.p = f
g.w = f
k.w = e
assert k.w.p.w.p.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
f = A("f")
e = B("e")
g = C("g")
k = A("k")
f.w = e
e.p = f
g.w = f
k.w = e
assert k.w.p.w.p.txt == "f"
| 4 | 4 | 1 | 0.333333 | 3 | 1.333333 | 1 | 1 | 1 | 4 | 2 | 2 | 3 | 0.75 | 3 | 0.75 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
1,083 |
class A:
def __init__(self, txt: str):
self.u: C = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.s: A = None
self.txt = txt
n = A("n")
b = B("b")
m = C("m")
l = B("l")
d = B("d")
n.u = m
n.t = d
b.r = n
m.v = d
m.s = n
l.r = n
d.r = n
assert d.r.u.v.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.u: C = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.s: A = None
self.txt = txt
n = A("n")
b = B("b")
m = C("m")
l = B("l")
d = B("d")
n.u = m
n.t = d
b.r = n
m.v = d
m.s = n
l.r = n
d.r = n
assert d.r.u.v.txt == "d"
| 5 | 7 | 1.4 | 0.35 | 3 | 1.666667 | 2 | 1 | 1.666667 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.428571 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 |
1,084 |
class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
k = A("k")
m = B("m")
b = C("b")
j = A("j")
e = A("e")
l = B("l")
k.x = l
m.z = e
m.o = b
b.s = e
j.x = m
e.x = m
l.z = j
l.o = b
assert l.o.s.x.z.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
k = A("k")
m = B("m")
b = C("b")
j = A("j")
e = A("e")
l = B("l")
k.x = l
m.z = e
m.o = b
b.s = e
j.x = m
e.x = m
l.z = j
l.o = b
assert l.o.s.x.z.txt == "e"
| 6 | 8 | 1.333333 | 0.266667 | 3 | 2 | 2 | 1 | 1.333333 | 4 | 2 | 1 | 4 | 0.666667 | 4 | 0.5 | 1 | 2 | 2 | 2 | 4 | 1 | 1 | 1 |
1,085 |
class A:
def __init__(self, txt: str):
self.u: B = None
self.y: C = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.v: B = None
self.r: A = None
self.txt = txt
m = A("m")
g = B("g")
k = C("k")
l = A("l")
c = B("c")
e = B("e")
f = A("f")
d = A("d")
m.u = g
m.y = k
m.x = f
g.v = l
g.s = d
k.u = g
k.v = g
k.r = f
l.u = c
l.y = k
l.x = m
c.v = d
c.s = m
e.v = f
e.s = f
f.u = g
f.y = k
f.x = d
d.u = c
d.y = k
d.x = f
assert c.s.u.v.u.s.x.u.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.u: B = None
self.y: C = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.v: B = None
self.r: A = None
self.txt = txt
m = A("m")
g = B("g")
k = C("k")
l = A("l")
c = B("c")
e = B("e")
f = A("f")
d = A("d")
m.u = g
m.y = k
m.x = f
g.v = l
g.s = d
k.u = g
k.v = g
k.r = f
l.u = c
l.y = k
l.x = m
c.v = d
c.s = m
e.v = f
e.s = f
f.u = g
f.y = k
f.x = d
d.u = c
d.y = k
d.x = f
assert c.s.u.v.u.s.x.u.txt == "g"
| 8 | 19 | 2.375 | 0.339286 | 3 | 2.666667 | 3 | 2 | 2.666667 | 7 | 2 | 2 | 5 | 0.625 | 6 | 0.315789 | 3 | 4 | 5 | 4.333333 | 4 | 3 | 1 | 2 |
1,086 |
class A:
def __init__(self, txt: str):
self.x: B = None
self.w: C = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.r: C = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.v: A = None
self.y: C = None
self.txt = txt
k = A("k")
g = B("g")
n = C("n")
c = A("c")
j = B("j")
a = C("a")
m = C("m")
b = A("b")
f = C("f")
e = C("e")
k.x = j
k.v = j
k.w = f
g.s = b
g.r = f
g.z = a
n.t = b
n.v = k
n.y = a
c.x = j
c.v = j
c.w = n
j.s = c
j.r = a
j.z = e
a.t = c
a.v = k
a.y = n
m.t = k
m.v = b
m.y = e
b.x = j
b.v = j
b.w = f
f.t = k
f.v = b
f.y = a
e.t = k
e.v = b
e.y = f
assert a.y.y.t.v.z.y.v.w.t.x.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.x: B = None
self.w: C = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.r: C = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.v: A = None
self.y: C = None
self.txt = txt
k = A("k")
g = B("g")
n = C("n")
c = A("c")
j = B("j")
a = C("a")
m = C("m")
b = A("b")
f = C("f")
e = C("e")
k.x = j
k.v = j
k.w = f
g.s = b
g.r = f
g.z = a
n.t = b
n.v = k
n.y = a
c.x = j
c.v = j
c.w = n
j.s = c
j.r = a
j.z = e
a.t = c
a.v = k
a.y = n
m.t = k
m.v = b
m.y = e
b.x = j
b.v = j
b.w = f
f.t = k
f.v = b
f.y = a
e.t = k
e.v = b
e.y = f
assert a.y.y.t.v.z.y.v.w.t.x.txt == "j"
| 10 | 27 | 2.7 | 0.3 | 3 | 3.333333 | 3 | 3 | 3 | 10 | 2 | 1 | 8 | 0.8 | 10 | 0.37037 | 3 | 2 | 6 | 3.333333 | 6 | 3 | 2 | 2 |
1,087 |
class A:
def __init__(self, txt: str):
self.w: A = None
self.u: B = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
g = A("g")
d = B("d")
n = C("n")
l = B("l")
j = C("j")
c = A("c")
a = B("a")
h = B("h")
i = A("i")
k = B("k")
g.w = c
g.u = d
g.t = j
d.o = k
n.p = g
l.o = h
j.p = g
c.w = g
c.u = h
c.t = j
a.o = h
h.o = a
i.w = g
i.u = k
i.t = n
k.o = d
assert n.p.t.p.u.o.o.o.o.o.txt == "
|
k"
|
class A:
def __init__(self, txt: str):
self.w: A = None
self.u: B = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
g = A("g")
d = B("d")
n = C("n")
l = B("l")
j = C("j")
c = A("c")
a = B("a")
h = B("h")
i = A("i")
k = B("k")
g.w = c
g.u = d
g.t = j
d.o = k
n.p = g
l.o = h
j.p = g
c.w = g
c.u = h
c.t = j
a.o = h
h.o = a
i.w = g
i.u = k
i.t = n
k.o = d
assert n.p.t.p.u.o.o.o.o.o.txt == "k"
| 10 | 16 | 1.6 | 0.177778 | 3 | 3.333333 | 3 | 1 | 1.666667 | 9 | 3 | 3 | 5 | 0.5 | 6 | 0.375 | 5 | 2 | 4 | 2.571429 | 4 | 5 | 5 | 2 |
1,088 |
class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.x: A = None
self.t: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
c = A("c")
b = B("b")
n = C("n")
k = A("k")
h = A("h")
i = C("i")
l = B("l")
f = B("f")
m = B("m")
d = A("d")
c.y = f
b.s = m
b.x = c
b.t = l
n.u = f
k.y = m
h.y = m
i.u = m
l.s = m
l.t = m
l.x = h
f.s = b
f.x = c
f.t = m
m.s = f
m.t = f
m.x = c
d.y = f
assert i.u.s.t.x.y.t.s.x.y.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.x: A = None
self.t: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
c = A("c")
b = B("b")
n = C("n")
k = A("k")
h = A("h")
i = C("i")
l = B("l")
f = B("f")
m = B("m")
d = A("d")
c.y = f
b.s = m
b.x = c
b.t = l
n.u = f
k.y = m
h.y = m
i.u = m
l.s = m
l.t = m
l.x = h
f.s = b
f.x = c
f.t = m
m.s = f
m.t = f
m.x = c
d.y = f
assert i.u.s.t.x.y.t.s.x.y.txt == "f"
| 10 | 16 | 1.6 | 0.177778 | 3 | 3.333333 | 3 | 1 | 1.666667 | 9 | 4 | 2 | 4 | 0.4 | 6 | 0.375 | 6 | 2 | 7 | 3.7 | 5 | 2 | 1 | 2 |
1,089 |
class A:
def __init__(self, txt: str):
self.y: C = None
self.z: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.x: A = None
self.txt = txt
i = A("i")
g = B("g")
k = C("k")
j = A("j")
c = C("c")
h = C("h")
n = A("n")
l = A("l")
m = B("m")
a = C("a")
i.y = h
i.z = l
i.q = j
g.w = m
g.q = h
k.u = g
k.x = l
j.y = k
j.z = n
j.q = n
c.u = g
c.x = j
h.u = m
h.x = n
n.y = a
n.z = j
n.q = l
l.y = a
l.z = i
l.q = n
m.w = g
m.q = h
a.u = m
a.x = n
assert i.y.u.q.x.q.txt == "
|
l"
|
class A:
def __init__(self, txt: str):
self.y: C = None
self.z: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.x: A = None
self.txt = txt
i = A("i")
g = B("g")
k = C("k")
j = A("j")
c = C("c")
h = C("h")
n = A("n")
l = A("l")
m = B("m")
a = C("a")
i.y = h
i.z = l
i.q = j
g.w = m
g.q = h
k.u = g
k.x = l
j.y = k
j.z = n
j.q = n
c.u = g
c.x = j
h.u = m
h.x = n
n.y = a
n.z = j
n.q = l
l.y = a
l.z = i
l.q = n
m.w = g
m.q = h
a.u = m
a.x = n
assert i.y.u.q.x.q.txt == "l"
| 10 | 23 | 2.3 | 0.255556 | 3 | 3.333333 | 3 | 2 | 2.333333 | 5 | 2 | 1 | 5 | 0.5 | 5 | 0.217391 | 1 | 2 | 2 | 2 | 4 | 2 | 1 | 2 |
1,090 |
class A:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
m = A("m")
k = B("k")
e = C("e")
m.u = e
k.y = m
e.x = k
assert m.u.x.y.txt == "
|
m"
|
class A:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
m = A("m")
k = B("k")
e = C("e")
m.u = e
k.y = m
e.x = k
assert m.u.x.y.txt == "m"
| 3 | 3 | 1 | 0.5 | 3 | 1 | 1 | 1 | 1 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 |
1,091 |
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.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
f = A("f")
m = B("m")
a = C("a")
f.x = m
f.s = m
m.y = a
a.x = f
assert m.y.x.s.txt == "
|
m"
|
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.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
f = A("f")
m = B("m")
a = C("a")
f.x = m
f.s = m
m.y = a
a.x = f
assert m.y.x.s.txt == "m"
| 3 | 3 | 1 | 0.5 | 3 | 1 | 2 | 1 | 1.333333 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 |
1,092 |
class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.w: C = None
self.txt = txt
g = A("g")
c = B("c")
m = C("m")
i = A("i")
e = A("e")
d = C("d")
h = C("h")
n = C("n")
g.u = c
c.t = e
m.o = c
m.w = n
i.u = c
e.u = c
d.o = c
d.w = n
h.o = c
h.w = m
n.o = c
n.w = m
assert h.o.t.u.t.u.t.u.t.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.w: C = None
self.txt = txt
g = A("g")
c = B("c")
m = C("m")
i = A("i")
e = A("e")
d = C("d")
h = C("h")
n = C("n")
g.u = c
c.t = e
m.o = c
m.w = n
i.u = c
e.u = c
d.o = c
d.w = n
h.o = c
h.w = m
n.o = c
n.w = m
assert h.o.t.u.t.u.t.u.t.txt == "e"
| 8 | 12 | 1.5 | 0.214286 | 3 | 2.666667 | 2 | 1 | 1.333333 | 8 | 4 | 4 | 3 | 0.375 | 3 | 0.25 | 6 | 2 | 6 | 3.333333 | 3 | 4 | 1 | 1 |
1,093 |
class A:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.u: C = None
self.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.w: A = None
self.txt = txt
n = A("n")
g = B("g")
i = C("i")
l = B("l")
n.w = i
g.s = n
g.u = i
g.y = l
i.o = n
i.w = n
l.s = n
l.u = i
l.y = g
assert l.s.w.w.txt == "
|
n"
|
class A:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.u: C = None
self.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.w: A = None
self.txt = txt
n = A("n")
g = B("g")
i = C("i")
l = B("l")
n.w = i
g.s = n
g.u = i
g.y = l
i.o = n
i.w = n
l.s = n
l.u = i
l.y = g
assert l.s.w.w.txt == "n"
| 4 | 8 | 2 | 0.666667 | 3 | 1.333333 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.375 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
1,094 |
class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.p: A = None
self.txt = txt
l = A("l")
a = B("a")
j = C("j")
l.o = a
a.v = j
j.t = a
j.p = l
assert l.o.v.t.txt == "
|
a"
|
class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.p: A = None
self.txt = txt
l = A("l")
a = B("a")
j = C("j")
l.o = a
a.v = j
j.t = a
j.p = l
assert l.o.v.t.txt == "a"
| 3 | 4 | 1.333333 | 0.666667 | 3 | 1 | 2 | 1 | 1.333333 | 3 | 2 | 1 | 3 | 1 | 3 | 0.75 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 |
1,095 |
class A:
def __init__(self, txt: str):
self.s: A = None
self.p: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.o: C = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
k = A("k")
e = B("e")
i = C("i")
n = C("n")
g = C("g")
a = A("a")
k.s = a
k.x = a
k.p = e
e.s = g
e.o = n
e.y = i
i.u = k
n.u = k
g.u = a
a.s = k
a.x = k
a.p = e
assert i.u.s.p.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.s: A = None
self.p: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.o: C = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
k = A("k")
e = B("e")
i = C("i")
n = C("n")
g = C("g")
a = A("a")
k.s = a
k.x = a
k.p = e
e.s = g
e.o = n
e.y = i
i.u = k
n.u = k
g.u = a
a.s = k
a.x = k
a.p = e
assert i.u.s.p.txt == "e"
| 6 | 10 | 1.666667 | 0.333333 | 3 | 2 | 3 | 1 | 2.333333 | 3 | 1 | 1 | 4 | 0.666667 | 3 | 0.3 | 0 | null | null | null | 3 | 1 | 1 | 1 |
1,096 |
class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.v: A = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
k = A("k")
c = B("c")
m = C("m")
g = C("g")
e = C("e")
k.p = c
c.q = k
c.v = k
c.u = k
m.q = k
g.q = k
e.q = k
assert g.q.p.u.p.u.txt == "
|
k"
|
class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.v: A = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
k = A("k")
c = B("c")
m = C("m")
g = C("g")
e = C("e")
k.p = c
c.q = k
c.v = k
c.u = k
m.q = k
g.q = k
e.q = k
assert g.q.p.u.p.u.txt == "k"
| 5 | 5 | 1 | 0.25 | 3 | 1.666667 | 3 | 1 | 1.666667 | 5 | 3 | 2 | 3 | 0.6 | 3 | 0.6 | 3 | 2 | 4 | 2.5 | 3 | 2 | 1 | 1 |
1,097 |
class A:
def __init__(self, txt: str):
self.z: C = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
e = A("e")
m = B("m")
j = C("j")
f = C("f")
b = A("b")
k = A("k")
d = A("d")
n = B("n")
a = C("a")
e.z = a
e.s = f
m.r = k
j.p = k
f.p = b
b.z = j
b.s = f
k.z = f
k.s = j
d.z = a
d.s = j
n.r = e
a.p = k
assert d.z.p.z.p.z.p.s.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.z: C = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
e = A("e")
m = B("m")
j = C("j")
f = C("f")
b = A("b")
k = A("k")
d = A("d")
n = B("n")
a = C("a")
e.z = a
e.s = f
m.r = k
j.p = k
f.p = b
b.z = j
b.s = f
k.z = f
k.s = j
d.z = a
d.s = j
n.r = e
a.p = k
assert d.z.p.z.p.z.p.s.txt == "j"
| 9 | 13 | 1.444444 | 0.180556 | 3 | 3 | 2 | 1 | 1.333333 | 7 | 2 | 1 | 6 | 0.666667 | 7 | 0.538462 | 2 | 2 | 4 | 3 | 3 | 3 | 1 | 2 |
1,098 |
class A:
def __init__(self, txt: str):
self.r: B = None
self.v: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
j = A("j")
h = B("h")
e = C("e")
a = A("a")
i = B("i")
b = C("b")
l = A("l")
j.r = h
j.v = a
j.y = l
h.t = b
e.p = a
a.r = i
a.v = j
a.y = j
i.t = b
b.p = a
l.r = h
l.v = j
l.y = j
assert e.p.v.y.y.v.r.t.txt == "
|
b"
|
class A:
def __init__(self, txt: str):
self.r: B = None
self.v: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
j = A("j")
h = B("h")
e = C("e")
a = A("a")
i = B("i")
b = C("b")
l = A("l")
j.r = h
j.v = a
j.y = l
h.t = b
e.p = a
a.r = i
a.v = j
a.y = j
i.t = b
b.p = a
l.r = h
l.v = j
l.y = j
assert e.p.v.y.y.v.r.t.txt == "b"
| 7 | 11 | 1.571429 | 0.261905 | 3 | 2.333333 | 3 | 1 | 1.666667 | 7 | 2 | 1 | 6 | 0.857143 | 7 | 0.636364 | 2 | 2 | 4 | 3 | 5 | 2 | 2 | 2 |
1,099 |
class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
k = A("k")
n = B("n")
l = C("l")
b = C("b")
m = A("m")
f = A("f")
h = B("h")
k.s = l
n.w = f
n.q = l
l.s = h
b.s = n
m.s = l
f.s = b
h.w = k
h.q = b
assert f.s.s.q.txt == "
|
l"
|
class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
k = A("k")
n = B("n")
l = C("l")
b = C("b")
m = A("m")
f = A("f")
h = B("h")
k.s = l
n.w = f
n.q = l
l.s = h
b.s = n
m.s = l
f.s = b
h.w = k
h.q = b
assert f.s.s.q.txt == "l"
| 7 | 9 | 1.285714 | 0.214286 | 3 | 2.333333 | 2 | 1 | 1.333333 | 3 | 1 | 1 | 4 | 0.571429 | 3 | 0.333333 | 0 | null | null | null | 2 | 2 | 2 | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.