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
100
class A: def __init__(self, txt: str): self.o: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt l = A("l") m = B("m") b = A("b") l.o = m l.x = m m.p = l b.o = m b.x = m assert l.x.p.x.txt == "
m"
class A: def __init__(self, txt: str): self.o: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt l = A("l") m = B("m") b = A("b") l.o = m l.x = m m.p = l b.o = m b.x = m assert l.x.p.x.txt == "m"
3
3
1
0.5
2
1.5
2
1
1.5
3
2
2
2
0.666667
2
0.666667
2
2
2
2
2
2
1
1
101
class A: def __init__(self, txt: str): self.p: A = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt j = A("j") d = B("d") m = A("m") n = A("n") b = B("b") j.p = n j.q = m d.o = j m.p = j m.q = n n.p = m n.q = j...
n"
class A: def __init__(self, txt: str): self.p: A = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt j = A("j") d = B("d") m = A("m") n = A("n") b = B("b") j.p = n j.q = m d.o = j m.p = j m.q = n n.p = m n.q = j...
5
8
1.6
0.4
2
2.5
2
1
1.5
4
2
1
4
0.8
4
0.5
1
3
3
3
2
3
3
1
102
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt c = A("c") f = B("f") e = B("e") d = A("d") j = A("j") g = B("g") b = B("b") i = A("i") k = B("k") m = A("m") c.o = d f.o = d e.o = m d...
m"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt c = A("c") f = B("f") e = B("e") d = A("d") j = A("j") g = B("g") b = B("b") i = A("i") k = B("k") m = A("m") c.o = d f.o = d e.o = m d...
10
10
1
0.111111
2
5
1
1
1
7
3
2
4
0.4
4
0.4
4
3
6
3.6
1
7
7
1
103
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt e = A("e") h = B("h") k = A("k") j = B("j") b = B("b") e.s = b h.v = k k.s = b j.v = e b.v = e assert j.v.s.v.s.v.txt == "
e"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt e = A("e") h = B("h") k = A("k") j = B("j") b = B("b") e.s = b h.v = k k.s = b j.v = e b.v = e assert j.v.s.v.s.v.txt == "e"
5
5
1
0.25
2
2.5
1
1
1
5
3
2
3
0.6
3
0.6
3
2
4
2.5
2
3
1
1
104
class A: def __init__(self, txt: str): self.v: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt a = A("a") k = B("k") d = B("d") e = A("e") m = B("m") n = A("n") h = B("h") j = B("j") f = A("f") a.v = n a.s...
m"
class A: def __init__(self, txt: str): self.v: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt a = A("a") k = B("k") d = B("d") e = A("e") m = B("m") n = A("n") h = B("h") j = B("j") f = A("f") a.v = n a.s...
9
13
1.444444
0.180556
2
4.5
2
1
1.5
9
3
3
4
0.444444
4
0.307692
6
4
8
5
1
9
9
1
105
class A: def __init__(self, txt: str): self.x: A = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt d = A("d") e = B("e") k = A("k") b = A("b") m = B("m") j = A("j") a = B("a") d.x = j d.q = j e.v = k k.x = b k...
j"
class A: def __init__(self, txt: str): self.x: A = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt d = A("d") e = B("e") k = A("k") b = A("b") m = B("m") j = A("j") a = B("a") d.x = j d.q = j e.v = k k.x = b k...
7
10
1.428571
0.238095
2
3.5
2
1
1.5
7
3
2
4
0.571429
6
0.6
4
2
5
3
3
4
2
2
106
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt j = A("j") b = B("b") e = B("e") m = B("m") a = B("a") j.r = m b.y = m e.y = b m.y = e a.y = b assert m.y.y.y.y.y.txt == "
b"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt j = A("j") b = B("b") e = B("e") m = B("m") a = B("a") j.r = m b.y = m e.y = b m.y = e a.y = b assert m.y.y.y.y.y.txt == "b"
5
5
1
0.25
2
2.5
1
1
1
5
2
2
3
0.6
3
0.6
3
3
3
3
1
5
5
1
107
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt e = A("e") g = B("g") k = A("k") c = A("c") e.x = g g.y = c k.x = g c.x = g assert k.x.y.x.y.txt == "
c"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt e = A("e") g = B("g") k = A("k") c = A("c") e.x = g g.y = c k.x = g c.x = g assert k.x.y.x.y.txt == "c"
4
4
1
0.333333
2
2
1
1
1
4
2
2
3
0.75
3
0.75
2
2
2
2
2
2
1
1
108
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt i = A("i") k = B("k") j = B("j") c = A("c") i.u = c k.w = j j.w = k c.u = i assert j.w.w.w.txt == "
k"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt i = A("i") k = B("k") j = B("j") c = A("c") i.u = c k.w = j j.w = k c.u = i assert j.w.w.w.txt == "k"
4
4
1
0.333333
2
2
1
1
1
3
2
2
2
0.5
2
0.5
2
2
2
2
1
3
3
1
109
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.q: A = None self.txt = txt l = A("l") c = B("c") e = A("e") m = A("m") b = B("b") l.q = m c.z = m c.q = l e.q = l m.q = l b.z = m b.q = l...
m"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.q: A = None self.txt = txt l = A("l") c = B("c") e = A("e") m = A("m") b = B("b") l.q = m c.z = m c.q = l e.q = l m.q = l b.z = m b.q = l...
5
7
1.4
0.35
2
2.5
2
1
1.5
4
2
2
3
0.6
3
0.428571
2
2
2
2
1
4
4
1
110
class A: def __init__(self, txt: str): self.o: A = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt c = A("c") k = B("k") a = A("a") e = A("e") b = A("b") n = B("n") h = A("h") l = A("l") c.o = e c.v = k k.w = ...
n"
class A: def __init__(self, txt: str): self.o: A = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt c = A("c") k = B("k") a = A("a") e = A("e") b = A("b") n = B("n") h = A("h") l = A("l") c.o = e c.v = k k.w = ...
8
14
1.75
0.25
2
4
2
1
1.5
5
2
1
5
0.625
5
0.357143
1
5
5
5
3
2
1
1
111
class A: def __init__(self, txt: str): self.w: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt m = A("m") c = B("c") a = B("a") m.w = c m.r = a c.t = m a.t = m assert a.t.w.t.txt == "
m"
class A: def __init__(self, txt: str): self.w: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt m = A("m") c = B("c") a = B("a") m.w = c m.r = a c.t = m a.t = m assert a.t.w.t.txt == "m"
3
4
1.333333
0.666667
2
1.5
2
1
1.5
3
2
1
3
1
3
0.75
1
2
2
2
2
2
1
1
112
class A: def __init__(self, txt: str): self.s: A = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt a = A("a") i = B("i") m = A("m") a.s = m a.o = m i.w = a m.s = a m.o = a assert m.s.o.o.txt == "
a"
class A: def __init__(self, txt: str): self.s: A = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt a = A("a") i = B("i") m = A("m") a.s = m a.o = m i.w = a m.s = a m.o = a assert m.s.o.o.txt == "a"
3
3
1
0.5
2
1.5
2
1
1.5
3
2
1
2
0.666667
3
1
2
2
2
2
2
2
2
2
113
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.x: B = None self.txt = txt j = A("j") f = B("f") a = B("a") n = A("n") j.y = n f.s = n f.x = a a.s = j a.x = f n.y = j assert j.y.y.y.y.t...
j"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.x: B = None self.txt = txt j = A("j") f = B("f") a = B("a") n = A("n") j.y = n f.s = n f.x = a a.s = j a.x = f n.y = j assert j.y.y.y.y.t...
4
6
1.5
0.5
2
2
2
1
1.5
4
3
2
2
0.5
2
0.333333
3
2
4
2.5
1
4
4
1
114
class A: def __init__(self, txt: str): self.q: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt a = A("a") k = B("k") c = A("c") f = B("f") a.q = k a.r = f k.z = c c.q = k c.r = k f.z = a assert a.r.z.r.txt...
f"
class A: def __init__(self, txt: str): self.q: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt a = A("a") k = B("k") c = A("c") f = B("f") a.q = k a.r = f k.z = c c.q = k c.r = k f.z = a assert a.r.z.r.txt...
4
5
1.25
0.416667
2
2
2
1
1.5
3
2
2
2
0.5
2
0.4
2
2
2
2
2
2
1
1
115
class A: def __init__(self, txt: str): self.z: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt h = A("h") a = B("a") e = A("e") l = B("l") f = B("f") c = B("c") i = B("i") h.z = e h.r = a a.r = c e.z = h e...
c"
class A: def __init__(self, txt: str): self.z: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt h = A("h") a = B("a") e = A("e") l = B("l") f = B("f") c = B("c") i = B("i") h.z = e h.r = a a.r = c e.z = h e...
7
9
1.285714
0.214286
2
3.5
2
1
1.5
6
3
3
3
0.428571
3
0.333333
4
2
4
2.666667
1
6
6
1
116
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.p: B = None self.txt = txt h = A("h") a = B("a") i = B("i") k = A("k") m = A("m") d = A("d") c = B("c") j = A("j") f = B("f") n = A("n") ...
a"
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.p: B = None self.txt = txt h = A("h") a = B("a") i = B("i") k = A("k") m = A("m") d = A("d") c = B("c") j = A("j") f = B("f") n = A("n") ...
10
14
1.4
0.155556
2
5
2
1
1.5
8
3
2
4
0.4
7
0.5
5
2
6
3.857143
2
4
2
2
117
class A: def __init__(self, txt: str): self.z: B = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt i = A("i") k = B("k") h = A("h") i.z = k i.q = h k.r = i h.z = k h.q = i assert h.z.r.q.txt == "
h"
class A: def __init__(self, txt: str): self.z: B = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt i = A("i") k = B("k") h = A("h") i.z = k i.q = h k.r = i h.z = k h.q = i assert h.z.r.q.txt == "h"
3
5
1.666667
0.833333
2
1.5
2
1
1.5
3
2
1
3
1
3
0.6
1
3
3
3
3
1
1
1
118
class A: def __init__(self, txt: str): self.v: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt c = A("c") n = B("n") h = B("h") c.v = n c.o = h n.w = h h.w = n assert h.w.w.w.txt == "
n"
class A: def __init__(self, txt: str): self.v: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt c = A("c") n = B("n") h = B("h") c.v = n c.o = h n.w = h h.w = n assert h.w.w.w.txt == "n"
3
4
1.333333
0.666667
2
1.5
2
1
1.5
3
2
2
2
0.666667
2
0.5
2
2
2
2
1
3
3
1
119
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.txt = txt k = A("k") n = B("n") m = A("m") k.p = n n.q = m m.p = n assert m.p.q.p.txt == "
n"
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.txt = txt k = A("k") n = B("n") m = A("m") k.p = n n.q = m m.p = n assert m.p.q.p.txt == "n"
3
3
1
0.5
2
1.5
1
1
1
3
2
2
2
0.666667
2
0.666667
2
2
2
2
2
2
1
1
120
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.y: B = None self.txt = txt n = A("n") i = B("i") h = B("h") a = B("a") b = A("b") m = B("m") c = B("c") l = A("l") n.y = c i.u = l i.y = ...
b"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.y: B = None self.txt = txt n = A("n") i = B("i") h = B("h") a = B("a") b = A("b") m = B("m") c = B("c") l = A("l") n.y = c i.u = l i.y = ...
8
13
1.625
0.232143
2
4
2
1
1.5
8
2
2
6
0.75
6
0.461538
3
6
6
6
2
5
2
1
121
class A: def __init__(self, txt: str): self.v: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt b = A("b") a = B("a") h = B("h") b.v = a b.x = h a.z = h h.z = a assert a.z.z.z.txt == "
h"
class A: def __init__(self, txt: str): self.v: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt b = A("b") a = B("a") h = B("h") b.v = a b.x = h a.z = h h.z = a assert a.z.z.z.txt == "h"
3
4
1.333333
0.666667
2
1.5
2
1
1.5
3
2
2
2
0.666667
2
0.5
2
2
2
2
1
3
3
1
122
class A: def __init__(self, txt: str): self.x: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt a = A("a") j = B("j") d = A("d") a.x = j a.r = d j.s = d d.x = j d.r = a assert a.r.x.s.txt == "
d"
class A: def __init__(self, txt: str): self.x: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt a = A("a") j = B("j") d = A("d") a.x = j a.r = d j.s = d d.x = j d.r = a assert a.r.x.s.txt == "d"
3
5
1.666667
0.833333
2
1.5
2
1
1.5
3
2
1
3
1
3
0.6
1
2
2
2
3
1
1
1
123
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt g = A("g") a = B("a") b = A("b") d = A("d") e = B("e") m = A("m") n = B("n") g.x = b a.q = d b.x = d d.x = m e.q = d m.x = d n.q = m as...
m"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt g = A("g") a = B("a") b = A("b") d = A("d") e = B("e") m = A("m") n = B("n") g.x = b a.q = d b.x = d d.x = m e.q = d m.x = d n.q = m as...
7
7
1
0.166667
2
3.5
1
1
1
3
2
1
3
0.428571
3
0.428571
1
2
2
2
2
2
2
1
124
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt d = A("d") m = B("m") j = A("j") d.v = j m.p = d j.v = d assert d.v.v.v.txt == "
j"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt d = A("d") m = B("m") j = A("j") d.v = j m.p = d j.v = d assert d.v.v.v.txt == "j"
3
3
1
0.5
2
1.5
1
1
1
3
2
2
2
0.666667
2
0.666667
2
2
2
2
1
3
3
1
125
class A: def __init__(self, txt: str): self.s: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt b = A("b") c = B("c") l = A("l") b.s = c b.u = c c.z = l l.s = c l.u = c assert l.u.z.s.txt == "
c"
class A: def __init__(self, txt: str): self.s: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt b = A("b") c = B("c") l = A("l") b.s = c b.u = c c.z = l l.s = c l.u = c assert l.u.z.s.txt == "c"
3
3
1
0.5
2
1.5
2
1
1.5
3
2
1
2
0.666667
3
1
2
2
2
2
3
1
1
2
126
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt b = A("b") i = B("i") e = B("e") g = A("g") d = A("d") j = B("j") h = A("h") k = B("k") c = B("c") l = A("l") b.p = j i.q = c e.q = c g...
c"
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt b = A("b") i = B("i") e = B("e") g = A("g") d = A("d") j = B("j") h = A("h") k = B("k") c = B("c") l = A("l") b.p = j i.q = c e.q = c g...
10
10
1
0.111111
2
5
1
1
1
4
1
1
5
0.5
4
0.4
0
null
null
null
2
3
3
1
127
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.t: A = None self.txt = txt a = A("a") n = B("n") m = A("m") e = B("e") b = A("b") f = A("f") h = A("h") c = A("c") g = B("g") a.w = n n.o...
f"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.t: A = None self.txt = txt a = A("a") n = B("n") m = A("m") e = B("e") b = A("b") f = A("f") h = A("h") c = A("c") g = B("g") a.w = n n.o...
9
12
1.333333
0.166667
2
4.5
2
1
1.5
3
1
1
4
0.444444
3
0.25
0
null
null
null
3
1
1
1
128
class A: def __init__(self, txt: str): self.t: B = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.s: A = None self.txt = txt a = A("a") f = B("f") i = B("i") b = A("b") a.t = f a.s = f f.q = b f.s = a i.q = b i...
b"
class A: def __init__(self, txt: str): self.t: B = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.s: A = None self.txt = txt a = A("a") f = B("f") i = B("i") b = A("b") a.t = f a.s = f f.q = b f.s = a i.q = b i...
4
6
1.5
0.5
2
2
2
2
2
4
3
1
3
0.75
4
0.666667
2
2
4
2.666667
3
2
1
2
129
class A: def __init__(self, txt: str): self.z: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.t: A = None self.txt = txt i = A("i") f = B("f") h = A("h") c = B("c") g = B("g") k = B("k") j = B("j") i.z = c ...
f"
class A: def __init__(self, txt: str): self.z: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.t: A = None self.txt = txt i = A("i") f = B("f") h = A("h") c = B("c") g = B("g") k = B("k") j = B("j") i.z = c ...
7
14
2
0.333333
2
3.5
2
2
2
6
3
2
4
0.571429
5
0.357143
3
2
5
3
4
3
3
2
130
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt h = A("h") d = B("d") f = B("f") k = A("k") m = A("m") e = B("e") i = A("i") c = A("c") g = B("g") l = B("l") h.v = f d.v = i f.v = i k...
i"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt h = A("h") d = B("d") f = B("f") k = A("k") m = A("m") e = B("e") i = A("i") c = A("c") g = B("g") l = B("l") h.v = f d.v = i f.v = i k...
10
10
1
0.111111
2
5
1
1
1
5
1
1
6
0.6
5
0.5
0
null
null
null
1
5
5
1
131
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.q: B = None self.txt = txt g = A("g") j = B("j") b = B("b") i = B("i") f = A("f") a = A("a") g.q = i j.v = a j.q = b b.v = f b.q = i i.v ...
g"
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.q: B = None self.txt = txt g = A("g") j = B("j") b = B("b") i = B("i") f = A("f") a = A("a") g.q = i j.v = a j.q = b b.v = f b.q = i i.v ...
6
9
1.5
0.3
2
3
2
1
1.5
3
1
1
4
0.666667
3
0.333333
0
null
null
null
2
2
2
1
132
class A: def __init__(self, txt: str): self.y: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.txt = txt k = A("k") a = B("a") j = B("j") d = B("d") n = A("n") e = B("e") g = A("g") l = B("l") h = A("h") c = B("c") ...
c"
class A: def __init__(self, txt: str): self.y: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.txt = txt k = A("k") a = B("a") j = B("j") d = B("d") n = A("n") e = B("e") g = A("g") l = B("l") h = A("h") c = B("c") ...
10
14
1.4
0.155556
2
5
2
1
1.5
8
5
4
2
0.2
2
0.142857
7
2
8
3.75
1
8
8
1
133
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.o: A = None self.txt = txt a = A("a") d = B("d") m = B("m") j = A("j") a.w = d d.v = m d.o = a m.v = d m.o = j j.w = m assert d.o.w.v.txt...
m"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.o: A = None self.txt = txt a = A("a") d = B("d") m = B("m") j = A("j") a.w = d d.v = m d.o = a m.v = d m.o = j j.w = m assert d.o.w.v.txt...
4
6
1.5
0.5
2
2
2
1
1.5
3
2
1
3
0.75
3
0.5
1
2
2
2
3
1
1
2
134
class A: def __init__(self, txt: str): self.r: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt c = A("c") l = B("l") j = B("j") h = A("h") i = B("i") g = A("g") d = A("d") k = A("k") b = A("b") c.r = i c.v...
b"
class A: def __init__(self, txt: str): self.r: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt c = A("c") l = B("l") j = B("j") h = A("h") i = B("i") g = A("g") d = A("d") k = A("k") b = A("b") c.r = i c.v...
9
15
1.666667
0.208333
2
4.5
2
1
1.5
6
3
1
5
0.555556
6
0.4
2
2
5
3.333333
2
4
4
2
135
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.z: A = None self.txt = txt i = A("i") m = B("m") f = A("f") c = B("c") n = A("n") h = A("h") i.r = h m.q = c m.z = f f.r = n c.q = m c.z ...
i"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.z: A = None self.txt = txt i = A("i") m = B("m") f = A("f") c = B("c") n = A("n") h = A("h") i.r = h m.q = c m.z = f f.r = n c.q = m c.z ...
6
8
1.333333
0.266667
2
3
2
1
1.5
3
1
1
4
0.666667
3
0.375
0
null
null
null
1
3
3
1
136
class A: def __init__(self, txt: str): self.t: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt c = A("c") k = B("k") j = A("j") m = B("m") e = B("e") f = B("f") d = A("d") l = A("l") c.t = m c.x = j k.z = ...
m"
class A: def __init__(self, txt: str): self.t: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt c = A("c") k = B("k") j = A("j") m = B("m") e = B("e") f = B("f") d = A("d") l = A("l") c.t = m c.x = j k.z = ...
8
12
1.5
0.214286
2
4
2
1
1.5
4
3
2
2
0.25
2
0.166667
3
2
4
2.5
1
4
4
1
137
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.r: A = None self.txt = txt e = A("e") k = B("k") g = A("g") d = B("d") b = B("b") f = A("f") n = A("n") c = A("c") i = A("i") h = B("h") ...
f"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.r: A = None self.txt = txt e = A("e") k = B("k") g = A("g") d = B("d") b = B("b") f = A("f") n = A("n") c = A("c") i = A("i") h = B("h") ...
10
14
1.4
0.155556
2
5
2
1
1.5
3
1
1
4
0.4
3
0.214286
0
null
null
null
3
1
1
1
138
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt d = A("d") h = B("h") b = B("b") f = A("f") k = B("k") l = B("l") m = B("m") c = B("c") d.v = f h.t = d b.t = d f.v = d k.t = f l.t = f...
d"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt d = A("d") h = B("h") b = B("b") f = A("f") k = B("k") l = B("l") m = B("m") c = B("c") d.v = f h.t = d b.t = d f.v = d k.t = f l.t = f...
8
8
1
0.142857
2
4
1
1
1
8
4
4
3
0.375
3
0.375
6
2
6
3.333333
2
7
7
1
139
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.v: B = None self.txt = txt c = A("c") i = B("i") n = B("n") h = B("h") k = B("k") m = B("m") l = A("l") b = B("b") c.t = m i.r = c i.v = ...
c"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.v: B = None self.txt = txt c = A("c") i = B("i") n = B("n") h = B("h") k = B("k") m = B("m") l = A("l") b = B("b") c.t = m i.r = c i.v = ...
8
14
1.75
0.25
2
4
2
1
1.5
6
3
2
4
0.5
5
0.357143
3
2
5
3
3
3
1
2
140
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt e = A("e") k = B("k") j = B("j") e.x = k k.q = e j.q = e assert k.q.x.q.txt == "
e"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt e = A("e") k = B("k") j = B("j") e.x = k k.q = e j.q = e assert k.q.x.q.txt == "e"
3
3
1
0.5
2
1.5
1
1
1
3
2
2
2
0.666667
2
0.666667
2
2
2
2
2
2
1
1
141
class A: def __init__(self, txt: str): self.u: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt d = A("d") b = B("b") n = A("n") e = A("e") d.u = b d.o = b b.w = e n.u = b n.o = b e.u = b e.o = b assert n.u...
e"
class A: def __init__(self, txt: str): self.u: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt d = A("d") b = B("b") n = A("n") e = A("e") d.u = b d.o = b b.w = e n.u = b n.o = b e.u = b e.o = b assert n.u...
4
4
1
0.333333
2
2
2
1
1.5
4
2
2
3
0.75
3
0.75
2
2
2
2
3
2
1
1
142
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.y: A = None self.txt = txt h = A("h") m = B("m") j = B("j") k = B("k") b = A("b") f = A("f") h.p = m m.p = j m.y = h j.p = m j.y = f k.p ...
m"
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.y: A = None self.txt = txt h = A("h") m = B("m") j = B("j") k = B("k") b = A("b") f = A("f") h.p = m m.p = j m.y = h j.p = m j.y = f k.p ...
6
9
1.5
0.3
2
3
2
1
1.5
6
3
2
4
0.666667
4
0.444444
3
2
4
2.5
2
4
2
1
143
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.s: B = None self.txt = txt g = A("g") h = B("h") i = B("i") j = B("j") c = A("c") g.r = c h.v = g h.s = j i.v = g i.s = j j.v = c j.s = h...
c"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.s: B = None self.txt = txt g = A("g") h = B("h") i = B("i") j = B("j") c = A("c") g.r = c h.v = g h.s = j i.v = g i.s = j j.v = c j.s = h...
5
8
1.6
0.4
2
2.5
2
1
1.5
3
2
2
2
0.4
2
0.25
2
2
2
2
1
3
3
1
144
class A: def __init__(self, txt: str): self.z: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.s: A = None self.txt = txt n = A("n") j = B("j") a = B("a") h = B("h") l = A("l") c = B("c") i = B("i") d = A("d"...
n"
class A: def __init__(self, txt: str): self.z: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.s: A = None self.txt = txt n = A("n") j = B("j") a = B("a") h = B("h") l = A("l") c = B("c") i = B("i") d = A("d"...
10
18
1.8
0.2
2
5
2
2
2
4
2
1
4
0.4
4
0.222222
1
2
2
2
2
3
3
2
145
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt d = A("d") g = B("g") c = A("c") b = B("b") a = B("a") f = B("f") d.q = c g.w = a c.q = d b.w = f a.w = f f.w = g assert g.w.w.w.w.txt ...
a"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt d = A("d") g = B("g") c = A("c") b = B("b") a = B("a") f = B("f") d.q = c g.w = a c.q = d b.w = f a.w = f f.w = g assert g.w.w.w.w.txt ...
6
6
1
0.2
2
3
1
1
1
4
2
2
3
0.5
3
0.5
2
3
3
3
1
4
4
1
146
class A: def __init__(self, txt: str): self.x: B = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt e = A("e") b = B("b") f = B("f") k = A("k") n = A("n") h = B("h") e.x = b e.t = h b.z = h f.z = b k.x = h k.t ...
h"
class A: def __init__(self, txt: str): self.x: B = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt e = A("e") b = B("b") f = B("f") k = A("k") n = A("n") h = B("h") e.x = b e.t = h b.z = h f.z = b k.x = h k.t ...
6
8
1.333333
0.266667
2
3
2
1
1.5
5
3
2
3
0.5
3
0.375
3
2
4
2.5
2
4
4
1
147
class A: def __init__(self, txt: str): self.o: B = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.v: A = None self.txt = txt a = A("a") b = B("b") i = A("i") a.o = b a.p = i b.q = a b.v = a i.o = b i.p = a asse...
a"
class A: def __init__(self, txt: str): self.o: B = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.v: A = None self.txt = txt a = A("a") b = B("b") i = A("i") a.o = b a.p = i b.q = a b.v = a i.o = b i.p = a asse...
3
5
1.666667
0.833333
2
1.5
2
2
2
3
2
1
3
1
3
0.6
1
2
2
2
3
1
1
1
148
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt j = A("j") i = B("i") m = A("m") j.q = m i.q = j m.q = j assert i.q.q.q.txt == "
j"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt j = A("j") i = B("i") m = A("m") j.q = m i.q = j m.q = j assert i.q.q.q.txt == "j"
3
3
1
0.5
2
1.5
1
1
1
3
2
1
3
1
3
1
1
2
2
2
1
3
3
1
149
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt k = A("k") j = B("j") h = A("h") e = A("e") k.p = e j.r = k h.p = k e.p = k assert j.r.p.p.txt == "
k"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt k = A("k") j = B("j") h = A("h") e = A("e") k.p = e j.r = k h.p = k e.p = k assert j.r.p.p.txt == "k"
4
4
1
0.333333
2
2
1
1
1
3
2
1
3
0.75
3
0.75
1
2
2
2
2
2
2
1
150
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.o: B = None self.txt = txt k = A("k") m = B("m") i = A("i") e = B("e") h = B("h") c = A("c") g = A("g") k.v = c m.s = h m.o = h i.v = g e...
m"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.o: B = None self.txt = txt k = A("k") m = B("m") i = A("i") e = B("e") h = B("h") c = A("c") g = A("g") k.v = c m.s = h m.o = h i.v = g e...
7
8
1.142857
0.190476
2
3.5
2
1
1.5
3
2
1
3
0.428571
3
0.375
1
2
2
2
2
2
2
1
151
class A: def __init__(self, txt: str): self.o: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.w: A = None self.txt = txt d = A("d") m = B("m") c = A("c") i = B("i") d.o = c d.s = m m.o = i m.w = d c.o = d c...
d"
class A: def __init__(self, txt: str): self.o: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.w: A = None self.txt = txt d = A("d") m = B("m") c = A("c") i = B("i") d.o = c d.s = m m.o = i m.w = d c.o = d c...
4
8
2
0.666667
2
2
2
2
2
4
2
2
3
0.75
3
0.375
2
3
3
3
3
2
1
1
152
class A: def __init__(self, txt: str): self.q: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.q: B = None self.txt = txt m = A("m") i = B("i") c = B("c") m.q = i m.p = c i.u = c i.q = c c.u = i c.q = i asse...
i"
class A: def __init__(self, txt: str): self.q: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.q: B = None self.txt = txt m = A("m") i = B("i") c = B("c") m.q = i m.p = c i.u = c i.q = c c.u = i c.q = i asse...
3
4
1.333333
0.666667
2
1.5
2
2
2
3
2
1
2
0.666667
3
0.75
2
2
2
2
2
2
2
2
153
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt i = A("i") c = B("c") n = B("n") l = A("l") m = A("m") a = A("a") g = A("g") f = B("f") i.t = c c.t = i n.t = g l.t = n m.t = c a.t = f...
c"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt i = A("i") c = B("c") n = B("n") l = A("l") m = A("m") a = A("a") g = A("g") f = B("f") i.t = c c.t = i n.t = g l.t = n m.t = c a.t = f...
8
8
1
0.142857
2
4
1
1
1
3
2
1
3
0.375
3
0.375
1
2
2
2
1
3
3
1
154
class A: def __init__(self, txt: str): self.o: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt d = A("d") a = B("a") c = A("c") h = B("h") b = B("b") k = B("k") e = A("e") i = A("i") n = B("n") m = B("m") ...
d"
class A: def __init__(self, txt: str): self.o: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt d = A("d") a = B("a") c = A("c") h = B("h") b = B("b") k = B("k") e = A("e") i = A("i") n = B("n") m = B("m") ...
10
14
1.4
0.155556
2
5
2
1
1.5
7
3
2
5
0.5
6
0.428571
3
2
7
4.75
2
5
2
2
155
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.q: A = None self.txt = txt j = A("j") i = B("i") n = A("n") h = B("h") j.q = n i.x = h i.q = j n.q = j h.x = i h.q = j assert h.q.q.q.q.t...
n"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.q: A = None self.txt = txt j = A("j") i = B("i") n = A("n") h = B("h") j.q = n i.x = h i.q = j n.q = j h.x = i h.q = j assert h.q.q.q.q.t...
4
6
1.5
0.5
2
2
2
1
1.5
4
2
2
3
0.75
3
0.5
2
2
2
2
1
4
4
1
156
class A: def __init__(self, txt: str): self.o: B = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt m = A("m") b = B("b") e = B("e") h = B("h") a = B("a") k = A("k") l = B("l") f = A("f") d = B("d") m.o = d m.q...
f"
class A: def __init__(self, txt: str): self.o: B = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt m = A("m") b = B("b") e = B("e") h = B("h") a = B("a") k = A("k") l = B("l") f = A("f") d = B("d") m.o = d m.q...
9
12
1.333333
0.166667
2
4.5
2
1
1.5
6
2
2
4
0.444444
5
0.416667
3
3
4
3.666667
2
4
2
2
157
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.v: B = None self.txt = txt d = A("d") i = B("i") c = B("c") b = B("b") f = B("f") k = B("k") n = B("n") g = A("g") m = A("m") a = A("a") ...
k"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.v: B = None self.txt = txt d = A("d") i = B("i") c = B("c") b = B("b") f = B("f") k = B("k") n = B("n") g = A("g") m = A("m") a = A("a") ...
10
16
1.6
0.177778
2
5
2
1
1.5
3
2
1
3
0.3
3
0.1875
1
3
3
3
2
2
2
1
158
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt l = A("l") n = B("n") i = A("i") l.s = i n.r = l i.s = l assert n.r.s.s.txt == "
l"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt l = A("l") n = B("n") i = A("i") l.s = i n.r = l i.s = l assert n.r.s.s.txt == "l"
3
3
1
0.5
2
1.5
1
1
1
3
2
1
3
1
3
1
1
2
2
2
2
2
2
1
159
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.o: B = None self.txt = txt h = A("h") k = B("k") m = B("m") f = A("f") b = B("b") a = B("a") i = A("i") j = A("j") h.x = f k.q = h k.o = ...
f"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.o: B = None self.txt = txt h = A("h") k = B("k") m = B("m") f = A("f") b = B("b") a = B("a") i = A("i") j = A("j") h.x = f k.q = h k.o = ...
8
12
1.5
0.214286
2
4
2
1
1.5
7
3
2
5
0.625
5
0.416667
3
2
4
2.5
3
5
5
1
160
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.r: B = None self.txt = txt b = A("b") h = B("h") c = B("c") e = A("e") n = B("n") g = B("g") j = B("j") f = A("f") b.r = h h.p = b h.r = ...
n"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.r: B = None self.txt = txt b = A("b") h = B("h") c = B("c") e = A("e") n = B("n") g = B("g") j = B("j") f = A("f") b.r = h h.p = b h.r = ...
8
13
1.625
0.232143
2
4
2
1
1.5
5
2
1
5
0.625
5
0.384615
1
2
2
2
2
4
4
1
161
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.w: A = None self.txt = txt m = A("m") i = B("i") j = A("j") c = A("c") e = B("e") b = B("b") l = B("l") d = B("d") h = A("h") n = A("n") ...
c"
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.w: A = None self.txt = txt m = A("m") i = B("i") j = A("j") c = A("c") e = B("e") b = B("b") l = B("l") d = B("d") h = A("h") n = A("n") ...
10
15
1.5
0.166667
2
5
2
1
1.5
4
2
2
3
0.3
3
0.2
2
2
2
2
2
3
3
1
162
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt i = A("i") m = B("m") l = B("l") n = A("n") k = B("k") g = B("g") b = B("b") j = B("j") c = A("c") d = B("d") i.s = l m.y = c l.y = i n...
i"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt i = A("i") m = B("m") l = B("l") n = A("n") k = B("k") g = B("g") b = B("b") j = B("j") c = A("c") d = B("d") i.s = l m.y = c l.y = i n...
10
10
1
0.111111
2
5
1
1
1
8
3
2
6
0.6
6
0.6
3
2
4
2.5
2
4
1
1
163
class A: def __init__(self, txt: str): self.p: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.r: A = None self.txt = txt n = A("n") d = B("d") b = A("b") f = B("f") i = B("i") c = B("c") k = B("k") j = A("j"...
h"
class A: def __init__(self, txt: str): self.p: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.r: A = None self.txt = txt n = A("n") d = B("d") b = A("b") f = B("f") i = B("i") c = B("c") k = B("k") j = A("j"...
10
20
2
0.222222
2
5
2
2
2
9
2
2
6
0.6
7
0.35
4
2
7
4.5
4
4
3
2
164
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.q: A = None self.txt = txt b = A("b") f = B("f") g = A("g") n = A("n") l = A("l") d = A("d") e = B("e") b.u = e f.x = e f.q = n g.u = f n...
e"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.q: A = None self.txt = txt b = A("b") f = B("f") g = A("g") n = A("n") l = A("l") d = A("d") e = B("e") b.u = e f.x = e f.q = n g.u = f n...
7
9
1.285714
0.214286
2
3.5
2
1
1.5
4
3
2
2
0.285714
2
0.222222
3
2
4
2.5
1
4
4
1
165
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt b = A("b") n = B("n") i = A("i") j = B("j") b.r = i n.r = i i.r = b j.r = i assert b.r.r.r.txt == "
i"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt b = A("b") n = B("n") i = A("i") j = B("j") b.r = i n.r = i i.r = b j.r = i assert b.r.r.r.txt == "i"
4
4
1
0.333333
2
2
1
1
1
3
2
2
2
0.5
2
0.5
2
2
2
2
1
3
3
1
166
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.s: A = None self.txt = txt d = A("d") m = B("m") f = B("f") e = A("e") j = B("j") g = A("g") d.u = m m.o = d m.s = e f.o = g f.s = e e.u ...
e"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.s: A = None self.txt = txt d = A("d") m = B("m") f = B("f") e = A("e") j = B("j") g = A("g") d.u = m m.o = d m.s = e f.o = g f.s = e e.u ...
6
9
1.5
0.3
2
3
2
1
1.5
3
2
1
3
0.5
3
0.333333
1
2
2
2
2
2
1
1
167
class A: def __init__(self, txt: str): self.p: A = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt f = A("f") i = B("i") h = A("h") g = B("g") k = A("k") d = B("d") c = B("c") f.p = h f.y = k i.z = k h.p = k h...
k"
class A: def __init__(self, txt: str): self.p: A = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt f = A("f") i = B("i") h = A("h") g = B("g") k = A("k") d = B("d") c = B("c") f.p = h f.y = k i.z = k h.p = k h...
7
9
1.285714
0.214286
2
3.5
2
1
1.5
6
3
2
4
0.571429
5
0.555556
3
2
4
3
3
4
3
2
168
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.t: A = None self.txt = txt a = A("a") l = B("l") h = B("h") a.w = l l.q = h l.t = a h.q = l h.t = a assert a.w.q.t.txt == "
a"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.t: A = None self.txt = txt a = A("a") l = B("l") h = B("h") a.w = l l.q = h l.t = a h.q = l h.t = a assert a.w.q.t.txt == "a"
3
5
1.666667
0.833333
2
1.5
2
1
1.5
3
2
1
3
1
3
0.6
1
3
3
3
3
1
1
1
169
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.u: B = None self.txt = txt f = A("f") n = B("n") a = A("a") l = B("l") c = A("c") f.x = l n.x = l n.u = l a.x = l l.x = n l.u = n c.x = l...
l"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.u: B = None self.txt = txt f = A("f") n = B("n") a = A("a") l = B("l") c = A("c") f.x = l n.x = l n.u = l a.x = l l.x = n l.u = n c.x = l...
5
5
1
0.25
2
2.5
2
1
1.5
5
3
2
3
0.6
4
0.8
3
2
4
2.5
2
3
2
2
170
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt i = A("i") n = B("n") e = B("e") i.u = e n.w = i e.w = i assert i.u.w.u.txt == "
e"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt i = A("i") n = B("n") e = B("e") i.u = e n.w = i e.w = i assert i.u.w.u.txt == "e"
3
3
1
0.5
2
1.5
1
1
1
3
2
2
2
0.666667
2
0.666667
2
2
2
2
2
2
1
1
171
class A: def __init__(self, txt: str): self.u: B = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.s: B = None self.txt = txt h = A("h") e = B("e") g = B("g") b = A("b") a = B("a") h.u = g h.p = b e.z = g e.s = ...
g"
class A: def __init__(self, txt: str): self.u: B = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.s: B = None self.txt = txt h = A("h") e = B("e") g = B("g") b = A("b") a = B("a") h.u = g h.p = b e.z = g e.s = ...
5
9
1.8
0.45
2
2.5
2
2
2
3
2
1
2
0.4
3
0.333333
2
2
2
2
2
2
2
2
172
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt i = A("i") d = B("d") e = B("e") l = B("l") c = A("c") h = B("h") n = B("n") m = B("m") g = B("g") a = A("a") i.u = l d.z = e e.z = n l...
e"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt i = A("i") d = B("d") e = B("e") l = B("l") c = A("c") h = B("h") n = B("n") m = B("m") g = B("g") a = A("a") i.u = l d.z = e e.z = n l...
10
10
1
0.111111
2
5
1
1
1
3
2
1
3
0.3
3
0.3
1
3
3
3
1
3
3
1
173
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.u: B = None self.txt = txt e = A("e") g = B("g") a = A("a") h = A("h") l = B("l") b = B("b") i = A("i") n = A("n") d = A("d") e.x = l g.w...
l"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.u: B = None self.txt = txt e = A("e") g = B("g") a = A("a") h = A("h") l = B("l") b = B("b") i = A("i") n = A("n") d = A("d") e.x = l g.w...
9
12
1.333333
0.166667
2
4.5
2
1
1.5
5
2
2
4
0.444444
4
0.333333
2
2
2
2
2
3
1
1
174
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.y: B = None self.txt = txt i = A("i") n = B("n") b = B("b") m = A("m") i.u = b n.z = m n.y = b b.z = i b.y = n m.u = n assert b.z.u.y.txt...
n"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.y: B = None self.txt = txt i = A("i") n = B("n") b = B("b") m = A("m") i.u = b n.z = m n.y = b b.z = i b.y = n m.u = n assert b.z.u.y.txt...
4
6
1.5
0.5
2
2
2
1
1.5
3
2
1
3
0.75
3
0.5
1
2
2
2
3
1
1
2
175
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt j = A("j") b = B("b") f = B("f") e = B("e") h = A("h") n = B("n") j.t = h b.z = h f.z = j e.z = j h.t = j n.z = j assert h.t.t.t.t.txt ...
h"
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt j = A("j") b = B("b") f = B("f") e = B("e") h = A("h") n = B("n") j.t = h b.z = h f.z = j e.z = j h.t = j n.z = j assert h.t.t.t.t.txt ...
6
6
1
0.2
2
3
1
1
1
4
3
2
2
0.333333
2
0.333333
3
2
4
2.5
1
4
4
1
176
class A: def __init__(self, txt: str): self.u: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.s: B = None self.txt = txt h = A("h") m = B("m") d = A("d") n = A("n") b = B("b") e = A("e") h.u = b h.x = d m.p...
b"
class A: def __init__(self, txt: str): self.u: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.s: B = None self.txt = txt h = A("h") m = B("m") d = A("d") n = A("n") b = B("b") e = A("e") h.u = b h.x = d m.p...
6
12
2
0.4
2
3
2
2
2
5
2
1
5
0.833333
5
0.416667
1
5
5
5
4
2
2
1
177
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.p: B = None self.txt = txt g = A("g") h = B("h") c = B("c") j = A("j") e = A("e") g.r = e h.w = c h.p = c c.w = h c.p = h j.r = g e.r = g...
h"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.p: B = None self.txt = txt g = A("g") h = B("h") c = B("c") j = A("j") e = A("e") g.r = e h.w = c h.p = c c.w = h c.p = h j.r = g e.r = g...
5
5
1
0.25
2
2.5
2
1
1.5
5
3
2
2
0.4
3
0.6
4
2
4
2.666667
2
3
3
2
178
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt b = A("b") f = B("f") h = A("h") c = A("c") n = A("n") b.q = n f.w = h h.q = b c.q = h n.q = b assert b.q.q.q.q.q.txt == "
n"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt b = A("b") f = B("f") h = A("h") c = A("c") n = A("n") b.q = n f.w = h h.q = b c.q = h n.q = b assert b.q.q.q.q.q.txt == "n"
5
5
1
0.25
2
2.5
1
1
1
5
3
3
2
0.4
2
0.4
4
2
4
2.666667
1
5
5
1
179
class A: def __init__(self, txt: str): self.v: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.q: A = None self.txt = txt m = A("m") f = B("f") k = B("k") n = B("n") a = B("a") g = A("g") j = A("j") i = A("i"...
f"
class A: def __init__(self, txt: str): self.v: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.q: A = None self.txt = txt m = A("m") f = B("f") k = B("k") n = B("n") a = B("a") g = A("g") j = A("j") i = A("i"...
9
17
1.888889
0.236111
2
4.5
2
2
2
7
2
1
6
0.666667
7
0.411765
2
2
3
2.5
3
3
2
2
180
class A: def __init__(self, txt: str): self.w: B = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.t: A = None self.txt = txt i = A("i") l = B("l") f = B("f") c = A("c") g = A("g") h = A("h") i.w = l i.q = g l.u...
c"
class A: def __init__(self, txt: str): self.w: B = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.t: A = None self.txt = txt i = A("i") l = B("l") f = B("f") c = A("c") g = A("g") h = A("h") i.w = l i.q = g l.u...
6
11
1.833333
0.366667
2
3
2
2
2
5
2
2
3
0.5
4
0.363636
3
3
3
3
4
2
1
2
181
class A: def __init__(self, txt: str): self.s: B = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt l = A("l") k = B("k") m = B("m") g = A("g") a = B("a") i = B("i") n = B("n") h = B("h") l.s = k l.u = g k.o = ...
n"
class A: def __init__(self, txt: str): self.s: B = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt l = A("l") k = B("k") m = B("m") g = A("g") a = B("a") i = B("i") n = B("n") h = B("h") l.s = k l.u = g k.o = ...
8
10
1.25
0.178571
2
4
2
1
1.5
3
1
1
4
0.5
3
0.3
0
null
null
null
1
3
3
1
182
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.v: A = None self.txt = txt f = A("f") c = B("c") m = B("m") f.s = c c.t = m c.v = f m.t = c m.v = f assert f.s.v.s.txt == "
c"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.v: A = None self.txt = txt f = A("f") c = B("c") m = B("m") f.s = c c.t = m c.v = f m.t = c m.v = f assert f.s.v.s.txt == "c"
3
5
1.666667
0.833333
2
1.5
2
1
1.5
3
2
2
2
0.666667
2
0.4
2
2
2
2
2
2
1
1
183
class A: def __init__(self, txt: str): self.v: B = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt j = A("j") n = B("n") k = A("k") a = B("a") j.v = a j.t = k n.x = k k.v = n k.t = j a.x = k assert n.x.t.t.v.t...
n"
class A: def __init__(self, txt: str): self.v: B = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt j = A("j") n = B("n") k = A("k") a = B("a") j.v = a j.t = k n.x = k k.v = n k.t = j a.x = k assert n.x.t.t.v.t...
4
6
1.5
0.5
2
2
2
1
1.5
4
2
1
3
0.75
4
0.666667
2
2
4
3
3
2
2
2
184
class A: def __init__(self, txt: str): self.o: B = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt n = A("n") m = B("m") a = A("a") j = B("j") l = B("l") k = B("k") b = A("b") f = A("f") n.o = m n.q = f m.y = ...
m"
class A: def __init__(self, txt: str): self.o: B = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt n = A("n") m = B("m") a = A("a") j = B("j") l = B("l") k = B("k") b = A("b") f = A("f") n.o = m n.q = f m.y = ...
8
12
1.5
0.214286
2
4
2
1
1.5
5
3
2
3
0.375
3
0.25
3
2
4
2.5
2
4
4
2
185
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt b = A("b") n = B("n") k = B("k") g = B("g") l = A("l") c = A("c") f = A("f") m = A("m") b.z = l n.t = l k.t = f g.t = m l.z = f c.z = m...
f"
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt b = A("b") n = B("n") k = B("k") g = B("g") l = A("l") c = A("c") f = A("f") m = A("m") b.z = l n.t = l k.t = f g.t = m l.z = f c.z = m...
8
8
1
0.142857
2
4
1
1
1
3
2
1
3
0.375
3
0.375
1
2
2
2
2
2
2
1
186
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt l = A("l") i = B("i") j = A("j") k = B("k") l.w = k i.w = l j.w = k k.w = j assert i.w.w.w.w.txt == "
k"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt l = A("l") i = B("i") j = A("j") k = B("k") l.w = k i.w = l j.w = k k.w = j assert i.w.w.w.w.txt == "k"
4
4
1
0.333333
2
2
1
1
1
4
2
1
4
1
4
1
1
2
2
2
1
4
4
1
187
class A: def __init__(self, txt: str): self.w: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.p: A = None self.txt = txt e = A("e") d = B("d") m = A("m") e.w = d e.v = m d.t = e d.p = e m.w = d m.v = e asse...
e"
class A: def __init__(self, txt: str): self.w: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.p: A = None self.txt = txt e = A("e") d = B("d") m = A("m") e.w = d e.v = m d.t = e d.p = e m.w = d m.v = e asse...
3
5
1.666667
0.833333
2
1.5
2
2
2
3
2
1
3
1
3
0.6
1
2
2
2
2
2
2
1
188
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt c = A("c") k = B("k") l = A("l") c.q = k k.r = c l.q = k assert c.q.r.q.txt == "
k"
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt c = A("c") k = B("k") l = A("l") c.q = k k.r = c l.q = k assert c.q.r.q.txt == "k"
3
3
1
0.5
2
1.5
1
1
1
3
2
2
2
0.666667
2
0.666667
2
2
2
2
2
2
1
1
189
class A: def __init__(self, txt: str): self.v: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt i = A("i") n = B("n") g = B("g") j = A("j") d = B("d") e = B("e") b = A("b") h = B("h") i.v = g i.q = e n.z = ...
e"
class A: def __init__(self, txt: str): self.v: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt i = A("i") n = B("n") g = B("g") j = A("j") d = B("d") e = B("e") b = A("b") h = B("h") i.v = g i.q = e n.z = ...
8
10
1.25
0.178571
2
4
2
1
1.5
7
2
2
4
0.5
4
0.4
4
4
4
4
1
7
7
1
190
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt a = A("a") b = B("b") g = A("g") a.y = b b.w = a g.y = b assert b.w.y.w.txt == "
a"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt a = A("a") b = B("b") g = A("g") a.y = b b.w = a g.y = b assert b.w.y.w.txt == "a"
3
3
1
0.5
2
1.5
1
1
1
3
2
2
2
0.666667
2
0.666667
2
2
2
2
2
2
1
1
191
class A: def __init__(self, txt: str): self.s: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.t: A = None self.txt = txt e = A("e") i = B("i") b = A("b") m = B("m") a = B("a") d = A("d") h = A("h") l = A("l"...
d"
class A: def __init__(self, txt: str): self.s: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.t: A = None self.txt = txt e = A("e") i = B("i") b = A("b") m = B("m") a = B("a") d = A("d") h = A("h") l = A("l"...
8
16
2
0.285714
2
4
2
2
2
5
2
2
4
0.5
4
0.25
2
3
3
3
3
2
1
2
192
class A: def __init__(self, txt: str): self.z: A = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt l = A("l") f = B("f") c = A("c") n = B("n") d = B("d") g = B("g") m = B("m") e = A("e") l.z = c l.y = c f.x = ...
n"
class A: def __init__(self, txt: str): self.z: A = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt l = A("l") f = B("f") c = A("c") n = B("n") d = B("d") g = B("g") m = B("m") e = A("e") l.z = c l.y = c f.x = ...
8
9
1.125
0.160714
2
4
2
1
1.5
3
2
2
2
0.25
2
0.222222
2
2
2
2
1
3
3
1
193
class A: def __init__(self, txt: str): self.p: A = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt d = A("d") i = B("i") a = B("a") l = A("l") k = B("k") m = A("m") d.p = l d.x = k i.r = a a.r = k l.p = m l.x ...
k"
class A: def __init__(self, txt: str): self.p: A = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt d = A("d") i = B("i") a = B("a") l = A("l") k = B("k") m = A("m") d.p = l d.x = k i.r = a a.r = k l.p = m l.x ...
6
9
1.5
0.3
2
3
2
1
1.5
5
3
3
2
0.333333
2
0.222222
4
2
4
2.666667
1
5
5
1
194
class A: def __init__(self, txt: str): self.v: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.u: B = None self.txt = txt j = A("j") k = B("k") g = B("g") d = A("d") l = A("l") b = B("b") f = A("f") h = B("h"...
i"
class A: def __init__(self, txt: str): self.v: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.u: B = None self.txt = txt j = A("j") k = B("k") g = B("g") d = A("d") l = A("l") b = B("b") f = A("f") h = B("h"...
10
18
1.8
0.2
2
5
2
2
2
10
5
2
4
0.4
5
0.277778
7
2
10
5
3
6
3
2
195
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt e = A("e") n = B("n") j = B("j") c = B("c") l = A("l") m = B("m") a = A("a") e.v = l n.z = j j.z = c c.z = n l.v = a m.z = j a.v = l as...
n"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt e = A("e") n = B("n") j = B("j") c = B("c") l = A("l") m = B("m") a = A("a") e.v = l n.z = j j.z = c c.z = n l.v = a m.z = j a.v = l as...
7
7
1
0.166667
2
3.5
1
1
1
3
2
1
3
0.428571
3
0.428571
1
3
3
3
1
3
3
1
196
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.o: A = None self.txt = txt a = A("a") e = B("e") j = B("j") i = B("i") d = A("d") l = B("l") k = B("k") a.x = d e.s = j e.o = a j.s = e j...
d"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.o: A = None self.txt = txt a = A("a") e = B("e") j = B("j") i = B("i") d = A("d") l = B("l") k = B("k") a.x = d e.s = j e.o = a j.s = e j...
7
12
1.714286
0.285714
2
3.5
2
1
1.5
5
2
2
4
0.571429
4
0.333333
2
2
2
2
3
3
3
1
197
class A: def __init__(self, txt: str): self.u: A = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt l = A("l") e = B("e") n = B("n") m = B("m") d = B("d") c = A("c") g = B("g") a = B("a") l.u = c l.r = c e.s = ...
d"
class A: def __init__(self, txt: str): self.u: A = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt l = A("l") e = B("e") n = B("n") m = B("m") d = B("d") c = A("c") g = B("g") a = B("a") l.u = c l.r = c e.s = ...
8
8
1
0.142857
2
4
2
1
1.5
3
1
1
4
0.5
3
0.375
0
null
null
null
1
3
3
1
198
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt l = A("l") f = B("f") m = B("m") g = B("g") k = A("k") l.s = k f.t = l m.t = k g.t = l k.s = l assert m.t.s.s.s.s.txt == "
k"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt l = A("l") f = B("f") m = B("m") g = B("g") k = A("k") l.s = k f.t = l m.t = k g.t = l k.s = l assert m.t.s.s.s.s.txt == "k"
5
5
1
0.25
2
2.5
1
1
1
5
3
2
3
0.6
3
0.6
3
2
4
2.5
2
4
4
1
199
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt b = A("b") m = B("m") h = A("h") b.x = h m.q = h h.x = b assert b.x.x.x.txt == "
h"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt b = A("b") m = B("m") h = A("h") b.x = h m.q = h h.x = b assert b.x.x.x.txt == "h"
3
3
1
0.5
2
1.5
1
1
1
3
2
2
2
0.666667
2
0.666667
2
2
2
2
1
3
3
1