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
600
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt d = A("d") a = B("a") e = A("e") d.w = a a.v = d e.w = a assert a.v.w.v.txt == "
d"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt d = A("d") a = B("a") e = A("e") d.w = a a.v = d e.w = a assert a.v.w.v.txt == "d"
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
601
class A: def __init__(self, txt: str): self.p: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt c = A("c") d = B("d") n = A("n") c.p = d c.x = d d.p = n n.p = d n.x = d assert n.p.p.x.txt == "
d"
class A: def __init__(self, txt: str): self.p: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt c = A("c") d = B("d") n = A("n") c.p = d c.x = d d.p = n n.p = d n.x = d assert n.p.p.x.txt == "d"
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
602
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt h = A("h") n = B("n") f = B("f") e = A("e") i = B("i") h.r = e n.s = i f.s = n e.r = h i.s = n assert i.s.s.s.s.s.txt == "
n"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt h = A("h") n = B("n") f = B("f") e = A("e") i = B("i") h.r = e n.s = i f.s = n e.r = h i.s = n assert i.s.s.s.s.s.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
603
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.txt = txt h = A("h") i = B("i") e = A("e") d = A("d") m = B("m") h.t = i i.u = m e.t = m d.t = m m.u = i assert e.t.u.u.u.u.txt == "
m"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.txt = txt h = A("h") i = B("i") e = A("e") d = A("d") m = B("m") h.t = i i.u = m e.t = m d.t = m m.u = i assert e.t.u.u.u.u.txt == "m"
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
604
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt i = A("i") f = B("f") a = B("a") l = B("l") b = B("b") g = B("g") e = A("e") i.s = b f.r = b a.r = l l.r = g b.r = l g.r = f e.s = b assert g.r.r.r.r.r.r.r.txt == "
l"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt i = A("i") f = B("f") a = B("a") l = B("l") b = B("b") g = B("g") e = A("e") i.s = b f.r = b a.r = l l.r = g b.r = l g.r = f e.s = b assert g.r.r.r.r.r.r.r.txt == "l"
7
7
1
0.166667
2
3.5
1
1
1
7
2
2
4
0.571429
4
0.571429
4
4
4
4
1
7
7
1
605
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt a = A("a") n = B("n") h = A("h") d = A("d") g = B("g") m = A("m") c = A("c") f = A("f") e = B("e") a.x = e n.r = h h.x = e d.x = e g.r = c m.x = n c.x = n f.x = e e.r = h assert a.x.r.x.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.r: A = None self.txt = txt a = A("a") n = B("n") h = A("h") d = A("d") g = B("g") m = A("m") c = A("c") f = A("f") e = B("e") a.x = e n.r = h h.x = e d.x = e g.r = c m.x = n c.x = n f.x = e e.r = h assert a.x.r.x.r.txt == "h"
9
9
1
0.125
2
4.5
1
1
1
4
2
2
3
0.333333
3
0.333333
2
2
2
2
2
2
1
1
606
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.w: A = None self.txt = txt j = A("j") m = B("m") g = A("g") j.v = g m.z = j m.w = g g.v = j assert g.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.z: A = None self.w: A = None self.txt = txt j = A("j") m = B("m") g = A("g") j.v = g m.z = j m.w = g g.v = j assert g.v.v.v.txt == "j"
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
607
class A: def __init__(self, txt: str): self.s: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.w: A = None self.txt = txt k = A("k") c = B("c") g = A("g") a = B("a") k.s = a k.w = g c.t = a c.w = g g.s = c g.w = k a.t = c a.w = g assert k.w.s.t.txt == "
a"
class A: def __init__(self, txt: str): self.s: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.w: A = None self.txt = txt k = A("k") c = B("c") g = A("g") a = B("a") k.s = a k.w = g c.t = a c.w = g g.s = c g.w = k a.t = c a.w = g assert k.w.s.t.txt == "a"
4
8
2
0.666667
2
2
2
2
2
3
1
1
4
1
3
0.375
0
null
null
null
3
1
1
1
608
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt i = A("i") d = B("d") a = A("a") l = A("l") h = B("h") m = A("m") i.q = m d.o = l a.q = i l.q = m h.o = a m.q = a assert m.q.q.q.q.q.q.txt == "
m"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt i = A("i") d = B("d") a = A("a") l = A("l") h = B("h") m = A("m") i.q = m d.o = l a.q = i l.q = m h.o = a m.q = a assert m.q.q.q.q.q.q.txt == "m"
6
6
1
0.2
2
3
1
1
1
6
3
2
3
0.5
3
0.5
4
3
6
3.6
1
6
6
1
609
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt g = A("g") l = B("l") a = B("a") j = A("j") k = A("k") i = B("i") g.s = k l.s = a a.s = l j.s = k k.s = j i.s = a assert g.s.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.s: B = None self.txt = txt g = A("g") l = B("l") a = B("a") j = A("j") k = A("k") i = B("i") g.s = k l.s = a a.s = l j.s = k k.s = j i.s = a assert g.s.s.s.s.s.txt == "k"
6
6
1
0.2
2
3
1
1
1
5
3
2
3
0.5
3
0.5
3
2
4
2.5
1
5
5
1
610
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.p: A = None self.txt = txt e = A("e") l = B("l") n = A("n") e.q = l l.t = n l.p = e n.q = l assert n.q.t.q.txt == "
l"
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.p: A = None self.txt = txt e = A("e") l = B("l") n = A("n") e.q = l l.t = n l.p = e n.q = l assert n.q.t.q.txt == "l"
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
2
2
1
1
611
class A: def __init__(self, txt: str): self.z: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.v: B = None self.txt = txt j = A("j") b = B("b") e = B("e") m = A("m") j.z = m j.o = e b.t = e b.v = e e.t = b e.v = b m.z = j m.o = e assert b.t.t.t.t.txt == "
b"
class A: def __init__(self, txt: str): self.z: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.v: B = None self.txt = txt j = A("j") b = B("b") e = B("e") m = A("m") j.z = m j.o = e b.t = e b.v = e e.t = b e.v = b m.z = j m.o = e assert b.t.t.t.t.txt == "b"
4
6
1.5
0.5
2
2
2
2
2
4
3
2
2
0.5
2
0.333333
3
2
4
2.5
1
4
4
1
612
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.v: B = None self.txt = txt h = A("h") d = B("d") f = A("f") c = A("c") b = A("b") i = A("i") m = B("m") j = A("j") g = A("g") l = A("l") h.z = j d.y = l d.v = m f.z = g c.z = l b.z = l i.z = f m.y = j m.v = d j.z = i g.z = c l.z = j assert j.z.z.z.z.z.z.z.z.z.txt == "
g"
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.v: B = None self.txt = txt h = A("h") d = B("d") f = A("f") c = A("c") b = A("b") i = A("i") m = B("m") j = A("j") g = A("g") l = A("l") h.z = j d.y = l d.v = m f.z = g c.z = l b.z = l i.z = f m.y = j m.v = d j.z = i g.z = c l.z = j assert j.z.z.z.z.z.z.z.z.z.txt == "g"
10
12
1.2
0.133333
2
5
2
1
1.5
9
2
2
6
0.6
6
0.5
4
6
6
6
1
9
9
1
613
class A: def __init__(self, txt: str): self.v: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt k = A("k") j = B("j") g = B("g") l = A("l") a = A("a") h = A("h") d = B("d") e = A("e") c = B("c") b = B("b") k.v = g k.o = e j.y = a g.y = a l.v = b l.o = h a.v = j a.o = h h.v = d h.o = a d.y = e e.v = g e.o = k c.y = l b.y = e assert d.y.v.y.o.o.v.y.v.y.v.txt == "
j"
class A: def __init__(self, txt: str): self.v: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt k = A("k") j = B("j") g = B("g") l = A("l") a = A("a") h = A("h") d = B("d") e = A("e") c = B("c") b = B("b") k.v = g k.o = e j.y = a g.y = a l.v = b l.o = h a.v = j a.o = h h.v = d h.o = a d.y = e e.v = g e.o = k c.y = l b.y = e assert d.y.v.y.o.o.v.y.v.y.v.txt == "j"
10
15
1.5
0.166667
2
5
2
1
1.5
10
4
3
6
0.6
7
0.466667
5
2
6
3.111111
3
4
2
2
614
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt a = A("a") j = B("j") b = B("b") e = B("e") d = B("d") g = A("g") c = B("c") f = A("f") m = B("m") h = A("h") a.o = c j.y = h b.y = h e.y = f d.y = h g.o = e c.y = h f.o = d m.y = h h.o = m assert c.y.o.y.o.y.o.y.o.txt == "
m"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt a = A("a") j = B("j") b = B("b") e = B("e") d = B("d") g = A("g") c = B("c") f = A("f") m = B("m") h = A("h") a.o = c j.y = h b.y = h e.y = f d.y = h g.o = e c.y = h f.o = d m.y = h h.o = m assert c.y.o.y.o.y.o.y.o.txt == "m"
10
10
1
0.111111
2
5
1
1
1
8
4
4
3
0.3
3
0.3
6
2
6
3.333333
2
4
1
1
615
class A: def __init__(self, txt: str): self.z: A = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.s: B = None self.txt = txt c = A("c") k = B("k") a = A("a") f = B("f") i = A("i") c.z = i c.v = f k.z = i k.s = f a.z = c a.v = f f.z = i f.s = k i.z = c i.v = f assert f.s.s.s.s.txt == "
f"
class A: def __init__(self, txt: str): self.z: A = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.s: B = None self.txt = txt c = A("c") k = B("k") a = A("a") f = B("f") i = A("i") c.z = i c.v = f k.z = i k.s = f a.z = c a.v = f f.z = i f.s = k i.z = c i.v = f assert f.s.s.s.s.txt == "f"
5
10
2
0.5
2
2.5
2
2
2
4
3
2
2
0.4
2
0.2
3
2
4
2.5
1
4
4
1
616
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.q: A = None self.txt = txt a = A("a") j = B("j") f = B("f") g = A("g") k = A("k") c = B("c") h = A("h") e = B("e") n = A("n") a.u = g a.r = n j.q = k f.q = h g.u = k g.r = h k.u = n k.r = n c.q = k h.u = k h.r = g e.q = h n.u = g n.r = g assert k.r.u.r.txt == "
h"
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.q: A = None self.txt = txt a = A("a") j = B("j") f = B("f") g = A("g") k = A("k") c = B("c") h = A("h") e = B("e") n = A("n") a.u = g a.r = n j.q = k f.q = h g.u = k g.r = h k.u = n k.r = n c.q = k h.u = k h.r = g e.q = h n.u = g n.r = g assert k.r.u.r.txt == "h"
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
2
2
1
1
617
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 f = A("f") m = B("m") c = B("c") i = B("i") f.o = m m.o = i c.o = i i.o = c assert c.o.o.o.txt == "
i"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt f = A("f") m = B("m") c = B("c") i = B("i") f.o = m m.o = i c.o = i i.o = c assert c.o.o.o.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
618
class A: def __init__(self, txt: str): self.y: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt m = A("m") g = B("g") k = A("k") i = A("i") j = B("j") f = A("f") c = A("c") l = A("l") m.y = j m.r = k g.r = c k.y = j k.r = c i.y = j i.r = f j.r = l f.y = g f.r = k c.y = j c.r = m l.y = j l.r = c assert l.r.y.r.y.r.txt == "
l"
class A: def __init__(self, txt: str): self.y: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt m = A("m") g = B("g") k = A("k") i = A("i") j = B("j") f = A("f") c = A("c") l = A("l") m.y = j m.r = k g.r = c k.y = j k.r = c i.y = j i.r = f j.r = l f.y = g f.r = k c.y = j c.r = m l.y = j l.r = c assert l.r.y.r.y.r.txt == "l"
8
14
1.75
0.25
2
4
2
1
1.5
5
3
2
3
0.375
4
0.285714
3
2
5
3
2
3
1
2
619
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt e = A("e") n = B("n") m = A("m") b = A("b") d = B("d") h = B("h") f = A("f") i = A("i") j = B("j") l = B("l") e.o = b n.t = d m.o = f b.o = i d.t = n h.t = j f.o = i i.o = b j.t = l l.t = j assert i.o.o.o.o.txt == "
i"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt e = A("e") n = B("n") m = A("m") b = A("b") d = B("d") h = B("h") f = A("f") i = A("i") j = B("j") l = B("l") e.o = b n.t = d m.o = f b.o = i d.t = n h.t = j f.o = i i.o = b j.t = l l.t = j assert i.o.o.o.o.txt == "i"
10
10
1
0.111111
2
5
1
1
1
4
3
2
2
0.2
2
0.2
3
2
4
2.5
1
4
4
1
620
class A: def __init__(self, txt: str): self.q: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt n = A("n") m = B("m") g = A("g") c = B("c") d = A("d") a = A("a") b = A("b") h = A("h") f = A("f") e = A("e") n.q = b n.x = g m.t = c g.q = a g.x = b c.t = m d.q = f d.x = g a.q = d a.x = h b.q = n b.x = e h.q = g h.x = b f.q = a f.x = a e.q = f e.x = d assert d.x.x.x.q.q.x.txt == "
h"
class A: def __init__(self, txt: str): self.q: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt n = A("n") m = B("m") g = A("g") c = B("c") d = A("d") a = A("a") b = A("b") h = A("h") f = A("f") e = A("e") n.q = b n.x = g m.t = c g.q = a g.x = b c.t = m d.q = f d.x = g a.q = d a.x = h b.q = n b.x = e h.q = g h.x = b f.q = a f.x = a e.q = f e.x = d assert d.x.x.x.q.q.x.txt == "h"
10
17
1.7
0.188889
2
5
2
1
1.5
6
1
1
7
0.7
6
0.352941
0
null
null
null
2
4
3
1
621
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt j = A("j") k = B("k") n = B("n") g = A("g") i = A("i") j.s = g k.w = g n.w = j g.s = i i.s = g assert g.s.s.s.s.txt == "
g"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt j = A("j") k = B("k") n = B("n") g = A("g") i = A("i") j.s = g k.w = g n.w = j g.s = i i.s = g assert g.s.s.s.s.txt == "g"
5
5
1
0.25
2
2.5
1
1
1
4
3
2
2
0.4
2
0.4
3
2
4
2.5
1
4
4
1
622
class A: def __init__(self, txt: str): self.q: B = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.s: A = None self.txt = txt i = A("i") g = B("g") l = A("l") a = B("a") j = A("j") n = B("n") m = B("m") i.q = m i.z = j g.x = i g.s = l l.q = n l.z = i a.x = j a.s = l j.q = m j.z = l n.x = l n.s = i m.x = l m.s = i assert j.z.z.q.x.txt == "
l"
class A: def __init__(self, txt: str): self.q: B = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.s: A = None self.txt = txt i = A("i") g = B("g") l = A("l") a = B("a") j = A("j") n = B("n") m = B("m") i.q = m i.z = j g.x = i g.s = l l.q = n l.z = i a.x = j a.s = l j.q = m j.z = l n.x = l n.s = i m.x = l m.s = i assert j.z.z.q.x.txt == "l"
7
14
2
0.333333
2
3.5
2
2
2
4
2
1
4
0.571429
4
0.285714
1
3
3
3
3
2
2
1
623
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.r: B = None self.txt = txt h = A("h") m = B("m") n = A("n") c = A("c") b = A("b") d = B("d") a = A("a") j = A("j") k = B("k") h.x = j m.q = k m.r = d n.x = a c.x = j b.x = a d.q = m d.r = k a.x = h j.x = n k.q = m k.r = m assert n.x.x.x.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: B = None self.r: B = None self.txt = txt h = A("h") m = B("m") n = A("n") c = A("c") b = A("b") d = B("d") a = A("a") j = A("j") k = B("k") h.x = j m.q = k m.r = d n.x = a c.x = j b.x = a d.q = m d.r = k a.x = h j.x = n k.q = m k.r = m assert n.x.x.x.x.x.x.txt == "h"
9
11
1.222222
0.152778
2
4.5
2
1
1.5
6
2
2
4
0.444444
4
0.363636
3
4
4
4
1
6
6
1
624
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt d = A("d") f = B("f") h = B("h") b = A("b") d.p = f f.p = d h.p = b b.p = f assert d.p.p.p.txt == "
f"
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt d = A("d") f = B("f") h = B("h") b = A("b") d.p = f f.p = d h.p = b b.p = f assert d.p.p.p.txt == "f"
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
625
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt h = A("h") a = B("a") j = B("j") l = A("l") h.o = l a.s = j j.s = a l.o = h assert a.s.s.s.txt == "
j"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt h = A("h") a = B("a") j = B("j") l = A("l") h.o = l a.s = j j.s = a l.o = h assert a.s.s.s.txt == "j"
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
626
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.txt = txt e = A("e") f = B("f") n = A("n") e.q = f f.v = n n.q = f assert f.v.q.v.txt == "
n"
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.txt = txt e = A("e") f = B("f") n = A("n") e.q = f f.v = n n.q = f assert f.v.q.v.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
627
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.r: A = None self.txt = txt e = A("e") k = B("k") g = A("g") n = A("n") h = B("h") l = A("l") e.t = k k.s = h k.r = l g.t = h n.t = h h.s = k h.r = l l.t = k assert n.t.s.s.txt == "
h"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.r: A = None self.txt = txt e = A("e") k = B("k") g = A("g") n = A("n") h = B("h") l = A("l") e.t = k k.s = h k.r = l g.t = h n.t = h h.s = k h.r = l l.t = k assert n.t.s.s.txt == "h"
6
8
1.333333
0.266667
2
3
2
1
1.5
3
2
1
3
0.5
3
0.375
1
2
2
2
2
2
2
1
628
class A: def __init__(self, txt: str): self.u: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt n = A("n") b = B("b") m = B("m") h = B("h") n.u = b n.q = b b.z = h m.z = b h.z = b assert b.z.z.z.txt == "
h"
class A: def __init__(self, txt: str): self.u: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt n = A("n") b = B("b") m = B("m") h = B("h") n.u = b n.q = b b.z = h m.z = b h.z = b assert b.z.z.z.txt == "h"
4
4
1
0.333333
2
2
2
1
1.5
3
2
2
2
0.5
2
0.5
2
2
2
2
1
3
3
1
629
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.p: B = None self.txt = txt j = A("j") k = B("k") n = A("n") l = A("l") m = A("m") f = B("f") g = B("g") i = A("i") j.x = g k.z = j k.p = g n.x = f l.x = f m.x = k f.z = j f.p = k g.z = l g.p = k i.x = f assert g.z.x.z.txt == "
j"
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.p: B = None self.txt = txt j = A("j") k = B("k") n = A("n") l = A("l") m = A("m") f = B("f") g = B("g") i = A("i") j.x = g k.z = j k.p = g n.x = f l.x = f m.x = k f.z = j f.p = k g.z = l g.p = k i.x = f assert g.z.x.z.txt == "j"
8
11
1.375
0.196429
2
4
2
1
1.5
3
1
1
4
0.5
3
0.272727
0
null
null
null
2
2
1
1
630
class A: def __init__(self, txt: str): self.r: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt f = A("f") j = B("j") k = B("k") l = A("l") h = A("h") g = A("g") a = A("a") e = B("e") f.r = e f.q = j j.r = f k.r = l l.r = e l.q = k h.r = e h.q = j g.r = j g.q = e a.r = j a.q = k e.r = f assert e.r.r.r.q.r.txt == "
f"
class A: def __init__(self, txt: str): self.r: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt f = A("f") j = B("j") k = B("k") l = A("l") h = A("h") g = A("g") a = A("a") e = B("e") f.r = e f.q = j j.r = f k.r = l l.r = e l.q = k h.r = e h.q = j g.r = j g.q = e a.r = j a.q = k e.r = f assert e.r.r.r.q.r.txt == "f"
8
13
1.625
0.232143
2
4
2
1
1.5
5
3
2
3
0.375
4
0.307692
3
2
4
2.5
2
4
3
2
631
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt l = A("l") i = B("i") m = B("m") n = B("n") h = A("h") j = A("j") k = A("k") e = A("e") d = A("d") b = A("b") l.x = d i.w = l m.w = b n.w = k h.x = l j.x = e k.x = l e.x = k d.x = e b.x = l assert j.x.x.x.x.x.txt == "
e"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt l = A("l") i = B("i") m = B("m") n = B("n") h = A("h") j = A("j") k = A("k") e = A("e") d = A("d") b = A("b") l.x = d i.w = l m.w = b n.w = k h.x = l j.x = e k.x = l e.x = k d.x = e b.x = l assert j.x.x.x.x.x.txt == "e"
10
10
1
0.111111
2
5
1
1
1
5
2
1
5
0.5
5
0.5
1
4
4
4
1
5
5
1
632
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt e = A("e") n = B("n") m = B("m") k = B("k") e.o = m n.q = m m.q = n k.q = n assert k.q.q.q.txt == "
n"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt e = A("e") n = B("n") m = B("m") k = B("k") e.o = m n.q = m m.q = n k.q = n assert k.q.q.q.txt == "n"
4
4
1
0.333333
2
2
1
1
1
3
2
1
3
0.75
3
0.75
1
2
2
2
1
3
3
1
633
class A: def __init__(self, txt: str): self.u: B = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt f = A("f") d = B("d") b = B("b") h = A("h") f.u = d f.z = h d.s = b b.s = d h.u = d h.z = f assert h.z.u.s.s.txt == "
d"
class A: def __init__(self, txt: str): self.u: B = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt f = A("f") d = B("d") b = B("b") h = A("h") f.u = d f.z = h d.s = b b.s = d h.u = d h.z = f assert h.z.u.s.s.txt == "d"
4
6
1.5
0.5
2
2
2
1
1.5
4
2
1
4
1
4
0.666667
1
2
2
2
3
2
2
1
634
class A: def __init__(self, txt: str): self.t: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.t: B = None self.txt = txt d = A("d") m = B("m") k = B("k") e = B("e") d.t = k d.u = e m.v = d m.t = k k.v = d k.t = m e.v = d e.t = k assert d.t.v.t.txt == "
k"
class A: def __init__(self, txt: str): self.t: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.t: B = None self.txt = txt d = A("d") m = B("m") k = B("k") e = B("e") d.t = k d.u = e m.v = d m.t = k k.v = d k.t = m e.v = d e.t = k assert d.t.v.t.txt == "k"
4
8
2
0.666667
2
2
2
2
2
3
2
2
2
0.5
2
0.25
2
2
2
2
2
2
1
1
635
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt n = A("n") m = B("m") k = A("k") n.o = k m.x = k k.o = n assert m.x.o.o.txt == "
k"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt n = A("n") m = B("m") k = A("k") n.o = k m.x = k k.o = n assert m.x.o.o.txt == "k"
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
636
class A: def __init__(self, txt: str): self.y: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt m = A("m") l = B("l") e = B("e") f = B("f") a = B("a") m.y = a m.q = f l.q = a e.q = f f.q = a a.q = f assert m.y.q.q.q.q.txt == "
a"
class A: def __init__(self, txt: str): self.y: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt m = A("m") l = B("l") e = B("e") f = B("f") a = B("a") m.y = a m.q = f l.q = a e.q = f f.q = a a.q = f assert m.y.q.q.q.q.txt == "a"
5
6
1.2
0.3
2
2.5
2
1
1.5
5
3
2
3
0.6
3
0.5
3
2
4
2.5
2
4
4
1
637
class A: def __init__(self, txt: str): self.w: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.w: A = None self.txt = txt c = A("c") a = B("a") d = B("d") l = A("l") c.w = l c.q = a a.z = d a.w = l d.z = a d.w = l l.w = c l.q = a assert d.z.z.w.w.txt == "
c"
class A: def __init__(self, txt: str): self.w: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.w: A = None self.txt = txt c = A("c") a = B("a") d = B("d") l = A("l") c.w = l c.q = a a.z = d a.w = l d.z = a d.w = l l.w = c l.q = a assert d.z.z.w.w.txt == "c"
4
8
2
0.666667
2
2
2
2
2
4
2
1
4
1
4
0.5
1
2
2
2
2
2
2
2
638
class A: def __init__(self, txt: str): self.w: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.s: B = None self.txt = txt a = A("a") d = B("d") k = A("k") j = B("j") h = B("h") g = A("g") m = A("m") l = A("l") f = A("f") n = A("n") a.w = d a.p = d d.z = j d.s = h k.w = j k.p = d j.z = d j.s = d h.z = j h.s = j g.w = d g.p = h m.w = j m.p = h l.w = d l.p = h f.w = h f.p = j n.w = h n.p = j assert n.w.s.s.s.s.s.z.s.z.txt == "
j"
class A: def __init__(self, txt: str): self.w: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.s: B = None self.txt = txt a = A("a") d = B("d") k = A("k") j = B("j") h = B("h") g = A("g") m = A("m") l = A("l") f = A("f") n = A("n") a.w = d a.p = d d.z = j d.s = h k.w = j k.p = d j.z = d j.s = d h.z = j h.s = j g.w = d g.p = h m.w = j m.p = h l.w = d l.p = h f.w = h f.p = j n.w = h n.p = j assert n.w.s.s.s.s.s.z.s.z.txt == "j"
10
17
1.7
0.188889
2
5
2
2
2
9
4
3
4
0.4
5
0.294118
6
2
7
3.6
3
6
5
2
639
class A: def __init__(self, txt: str): self.p: B = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt n = A("n") m = B("m") g = B("g") f = A("f") n.p = m n.t = f m.w = g g.w = m f.p = m f.t = n assert f.p.w.w.txt == "
m"
class A: def __init__(self, txt: str): self.p: B = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt n = A("n") m = B("m") g = B("g") f = A("f") n.p = m n.t = f m.w = g g.w = m f.p = m f.t = n assert f.p.w.w.txt == "m"
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
2
2
2
1
640
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.w: A = None self.txt = txt d = A("d") g = B("g") c = B("c") f = A("f") i = A("i") e = A("e") d.y = i g.q = e g.w = i c.q = f c.w = i f.y = d i.y = e e.y = f assert g.q.y.y.y.txt == "
i"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.w: A = None self.txt = txt d = A("d") g = B("g") c = B("c") f = A("f") i = A("i") e = A("e") d.y = i g.q = e g.w = i c.q = f c.w = i f.y = d i.y = e e.y = f assert g.q.y.y.y.txt == "i"
6
8
1.333333
0.266667
2
3
2
1
1.5
4
1
1
5
0.833333
4
0.5
0
null
null
null
2
3
3
1
641
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt b = A("b") d = B("d") e = A("e") b.s = d d.x = b e.s = d assert e.s.x.s.txt == "
d"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt b = A("b") d = B("d") e = A("e") b.s = d d.x = b e.s = d assert e.s.x.s.txt == "d"
3
3
1
0.5
2
1.5
1
1
1
3
2
1
3
1
3
1
1
2
2
2
2
2
1
1
642
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt h = A("h") m = B("m") a = B("a") e = B("e") k = A("k") c = B("c") h.w = k m.x = k a.x = h e.x = h k.w = h c.x = h assert h.w.w.w.w.txt == "
h"
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt h = A("h") m = B("m") a = B("a") e = B("e") k = A("k") c = B("c") h.w = k m.x = k a.x = h e.x = h k.w = h c.x = h assert h.w.w.w.w.txt == "h"
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
643
class A: def __init__(self, txt: str): self.t: A = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.z: A = None self.txt = txt f = A("f") i = B("i") h = A("h") n = B("n") f.t = h f.y = i i.q = n i.z = h h.t = f h.y = n n.q = i n.z = h assert f.t.t.y.txt == "
i"
class A: def __init__(self, txt: str): self.t: A = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.z: A = None self.txt = txt f = A("f") i = B("i") h = A("h") n = B("n") f.t = h f.y = i i.q = n i.z = h h.t = f h.y = n n.q = i n.z = h assert f.t.t.y.txt == "i"
4
8
2
0.666667
2
2
2
2
2
3
2
1
3
0.75
3
0.375
1
2
2
2
2
2
2
2
644
class A: def __init__(self, txt: str): self.o: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.x: B = None self.txt = txt d = A("d") i = B("i") e = A("e") j = A("j") f = B("f") k = A("k") d.o = j d.t = e i.u = f i.x = f e.o = d e.t = k j.o = k j.t = k f.u = i f.x = i k.o = j k.t = j assert e.o.t.o.o.t.t.txt == "
j"
class A: def __init__(self, txt: str): self.o: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.x: B = None self.txt = txt d = A("d") i = B("i") e = A("e") j = A("j") f = B("f") k = A("k") d.o = j d.t = e i.u = f i.x = f e.o = d e.t = k j.o = k j.t = k f.u = i f.x = i k.o = j k.t = j assert e.o.t.o.o.t.t.txt == "j"
6
8
1.333333
0.266667
2
3
2
2
2
6
2
2
4
0.666667
5
0.625
3
2
2
2
2
3
2
2
645
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt n = A("n") m = B("m") l = A("l") c = B("c") d = B("d") e = B("e") b = B("b") h = B("h") n.u = l m.t = n l.u = n c.t = l d.t = n e.t = l b.t = l h.t = l assert d.t.u.u.u.u.txt == "
n"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt n = A("n") m = B("m") l = A("l") c = B("c") d = B("d") e = B("e") b = B("b") h = B("h") n.u = l m.t = n l.u = n c.t = l d.t = n e.t = l b.t = l h.t = l assert d.t.u.u.u.u.txt == "n"
8
8
1
0.142857
2
4
1
1
1
5
3
2
3
0.375
3
0.375
3
2
4
2.5
2
4
4
1
646
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.o: B = None self.txt = txt i = A("i") a = B("a") e = A("e") m = B("m") i.q = a a.x = m a.o = m e.q = a m.x = a m.o = a assert m.x.o.o.x.txt == "
m"
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.o: B = None self.txt = txt i = A("i") a = B("a") e = A("e") m = B("m") i.q = a a.x = m a.o = m e.q = a m.x = a m.o = a assert m.x.o.o.x.txt == "m"
4
4
1
0.333333
2
2
2
1
1.5
4
3
1
2
0.5
4
1
3
2
4
2.5
2
2
2
2
647
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 j = A("j") m = B("m") b = A("b") i = A("i") h = A("h") d = B("d") n = B("n") g = A("g") c = A("c") l = B("l") j.v = h m.t = g b.v = i i.v = b h.v = g d.t = i n.t = h g.v = j c.v = i l.t = b assert i.v.v.v.v.v.v.txt == "
i"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt j = A("j") m = B("m") b = A("b") i = A("i") h = A("h") d = B("d") n = B("n") g = A("g") c = A("c") l = B("l") j.v = h m.t = g b.v = i i.v = b h.v = g d.t = i n.t = h g.v = j c.v = i l.t = b assert i.v.v.v.v.v.v.txt == "i"
10
10
1
0.111111
2
5
1
1
1
6
4
3
2
0.2
2
0.2
5
2
6
3.111111
1
6
6
1
648
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt l = A("l") g = B("g") h = B("h") k = A("k") b = B("b") f = A("f") n = B("n") e = A("e") a = B("a") c = B("c") l.v = k g.w = n h.w = g k.v = e b.w = c f.v = e n.w = c e.v = k a.w = n c.w = b assert k.v.v.v.v.txt == "
k"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt l = A("l") g = B("g") h = B("h") k = A("k") b = B("b") f = A("f") n = B("n") e = A("e") a = B("a") c = B("c") l.v = k g.w = n h.w = g k.v = e b.w = c f.v = e n.w = c e.v = k a.w = n c.w = b assert k.v.v.v.v.txt == "k"
10
10
1
0.111111
2
5
1
1
1
4
3
2
2
0.2
2
0.2
3
2
4
2.5
1
4
4
1
649
class A: def __init__(self, txt: str): self.p: B = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt f = A("f") b = B("b") h = A("h") d = B("d") m = A("m") j = A("j") f.p = d f.v = d b.x = d h.p = d h.v = d d.x = b m.p = b m.v = b j.p = d j.v = d assert j.p.x.x.x.x.txt == "
d"
class A: def __init__(self, txt: str): self.p: B = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt f = A("f") b = B("b") h = A("h") d = B("d") m = A("m") j = A("j") f.p = d f.v = d b.x = d h.p = d h.v = d d.x = b m.p = b m.v = b j.p = d j.v = d assert j.p.x.x.x.x.txt == "d"
6
6
1
0.2
2
3
2
1
1.5
5
3
2
3
0.5
3
0.5
3
2
4
2.5
2
4
4
1
650
class A: def __init__(self, txt: str): self.p: A = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.txt = txt e = A("e") b = B("b") n = A("n") f = B("f") i = B("i") h = A("h") m = A("m") e.p = h e.s = h b.v = i n.p = e n.s = m f.v = b i.v = f h.p = m h.s = m m.p = h m.s = h assert i.v.v.v.v.v.txt == "
b"
class A: def __init__(self, txt: str): self.p: A = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.txt = txt e = A("e") b = B("b") n = A("n") f = B("f") i = B("i") h = A("h") m = A("m") e.p = h e.s = h b.v = i n.p = e n.s = m f.v = b i.v = f h.p = m h.s = m m.p = h m.s = h assert i.v.v.v.v.v.txt == "b"
7
8
1.142857
0.190476
2
3.5
2
1
1.5
5
2
2
3
0.428571
3
0.375
3
3
3
3
1
5
5
1
651
class A: def __init__(self, txt: str): self.y: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt h = A("h") f = B("f") j = B("j") e = A("e") h.y = e h.w = j f.s = j j.s = f e.y = h e.w = j assert e.w.s.s.txt == "
j"
class A: def __init__(self, txt: str): self.y: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt h = A("h") f = B("f") j = B("j") e = A("e") h.y = e h.w = j f.s = j j.s = f e.y = h e.w = j assert e.w.s.s.txt == "j"
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
2
2
2
1
652
class A: def __init__(self, txt: str): self.o: A = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.o: A = None self.txt = txt e = A("e") n = B("n") i = A("i") g = A("g") j = A("j") k = B("k") l = B("l") a = B("a") e.o = g e.w = g n.s = i n.o = e i.o = g i.w = j g.o = e g.w = i j.o = g j.w = i k.s = e k.o = j l.s = i l.o = g a.s = j a.o = g assert l.o.w.o.txt == "
g"
class A: def __init__(self, txt: str): self.o: A = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.o: A = None self.txt = txt e = A("e") n = B("n") i = A("i") g = A("g") j = A("j") k = B("k") l = B("l") a = B("a") e.o = g e.w = g n.s = i n.o = e i.o = g i.w = j g.o = e g.w = i j.o = g j.w = i k.s = e k.o = j l.s = i l.o = g a.s = j a.o = g assert l.o.w.o.txt == "g"
8
15
1.875
0.267857
2
4
2
2
2
3
2
1
3
0.375
3
0.2
1
2
2
2
2
2
1
1
653
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.o: A = None self.txt = txt i = A("i") a = B("a") b = A("b") c = B("c") i.y = b a.w = b a.o = i b.y = i c.w = b c.o = b assert i.y.y.y.txt == "
b"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.o: A = None self.txt = txt i = A("i") a = B("a") b = A("b") c = B("c") i.y = b a.w = b a.o = i b.y = i c.w = b c.o = b assert i.y.y.y.txt == "b"
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
1
3
3
1
654
class A: def __init__(self, txt: str): self.z: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt j = A("j") l = B("l") f = A("f") b = A("b") a = A("a") n = B("n") m = A("m") c = A("c") j.z = m j.w = n l.w = b f.z = m f.w = n b.z = j b.w = n a.z = b a.w = l n.w = c m.z = c m.w = n c.z = b c.w = l assert f.z.z.w.w.z.w.w.txt == "
c"
class A: def __init__(self, txt: str): self.z: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt j = A("j") l = B("l") f = A("f") b = A("b") a = A("a") n = B("n") m = A("m") c = A("c") j.z = m j.w = n l.w = b f.z = m f.w = n b.z = j b.w = n a.z = b a.w = l n.w = c m.z = c m.w = n c.z = b c.w = l assert f.z.z.w.w.z.w.w.txt == "c"
8
14
1.75
0.25
2
4
2
1
1.5
7
2
1
7
0.875
7
0.5
1
5
5
5
2
4
2
1
655
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.o: A = None self.txt = txt m = A("m") n = B("n") h = A("h") k = B("k") f = B("f") g = B("g") i = A("i") m.y = n n.z = k n.o = h h.y = k k.z = f k.o = i f.z = k f.o = i g.z = n g.o = h i.y = g assert g.z.z.z.z.o.y.txt == "
g"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.o: A = None self.txt = txt m = A("m") n = B("n") h = A("h") k = B("k") f = B("f") g = B("g") i = A("i") m.y = n n.z = k n.o = h h.y = k k.z = f k.o = i f.z = k f.o = i g.z = n g.o = h i.y = g assert g.z.z.z.z.o.y.txt == "g"
7
11
1.571429
0.261905
2
3.5
2
1
1.5
6
2
1
5
0.714286
6
0.545455
2
2
6
4
3
4
4
2
656
class A: def __init__(self, txt: str): self.p: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt c = A("c") l = B("l") d = A("d") f = B("f") m = B("m") g = B("g") e = B("e") b = A("b") c.p = f c.y = d l.y = c d.p = e d.y = c f.y = c m.y = b g.y = d e.y = c b.p = e b.y = d assert l.y.y.y.txt == "
c"
class A: def __init__(self, txt: str): self.p: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt c = A("c") l = B("l") d = A("d") f = B("f") m = B("m") g = B("g") e = B("e") b = A("b") c.p = f c.y = d l.y = c d.p = e d.y = c f.y = c m.y = b g.y = d e.y = c b.p = e b.y = d assert l.y.y.y.txt == "c"
8
11
1.375
0.196429
2
4
2
1
1.5
3
2
1
3
0.375
3
0.272727
1
2
2
2
1
3
3
1
657
class A: def __init__(self, txt: str): self.v: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.w: B = None self.txt = txt b = A("b") c = B("c") m = B("m") e = B("e") k = B("k") i = B("i") b.v = e b.r = k c.y = k c.w = k m.y = c m.w = e e.y = c e.w = i k.y = c k.w = m i.y = e i.w = k assert m.y.y.w.w.y.txt == "
c"
class A: def __init__(self, txt: str): self.v: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.w: B = None self.txt = txt b = A("b") c = B("c") m = B("m") e = B("e") k = B("k") i = B("i") b.v = e b.r = k c.y = k c.w = k m.y = c m.w = e e.y = c e.w = i k.y = c k.w = m i.y = e i.w = k assert m.y.y.w.w.y.txt == "c"
6
11
1.833333
0.366667
2
3
2
2
2
5
2
1
4
0.666667
5
0.454545
2
3
4
3.5
2
3
2
2
658
class A: def __init__(self, txt: str): self.o: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.q: B = None self.txt = txt c = A("c") f = B("f") k = B("k") d = A("d") c.o = k c.y = d f.x = k f.q = k k.x = f k.q = f d.o = k d.y = c assert k.x.x.x.x.txt == "
k"
class A: def __init__(self, txt: str): self.o: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.q: B = None self.txt = txt c = A("c") f = B("f") k = B("k") d = A("d") c.o = k c.y = d f.x = k f.q = k k.x = f k.q = f d.o = k d.y = c assert k.x.x.x.x.txt == "k"
4
6
1.5
0.5
2
2
2
2
2
4
3
2
2
0.5
2
0.333333
3
2
4
2.5
1
4
4
1
659
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt b = A("b") m = B("m") d = A("d") b.t = d m.u = d d.t = b assert m.u.t.t.txt == "
d"
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt b = A("b") m = B("m") d = A("d") b.t = d m.u = d d.t = b assert m.u.t.t.txt == "d"
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
660
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt d = A("d") i = B("i") f = A("f") c = A("c") m = A("m") d.p = c i.v = f f.p = m c.p = m m.p = c assert f.p.p.p.p.p.txt == "
m"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt d = A("d") i = B("i") f = A("f") c = A("c") m = A("m") d.p = c i.v = f f.p = m c.p = m m.p = c assert f.p.p.p.p.p.txt == "m"
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
1
5
5
1
661
class A: def __init__(self, txt: str): self.u: B = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.t: B = None self.txt = txt d = A("d") i = B("i") e = A("e") b = B("b") d.u = b d.v = b i.w = b i.t = b e.u = b e.v = i b.w = i b.t = i assert i.w.t.w.txt == "
b"
class A: def __init__(self, txt: str): self.u: B = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.t: B = None self.txt = txt d = A("d") i = B("i") e = A("e") b = B("b") d.u = b d.v = b i.w = b i.t = b e.u = b e.v = i b.w = i b.t = i assert i.w.t.w.txt == "b"
4
5
1.25
0.416667
2
2
2
2
2
3
2
2
2
0.5
2
0.4
2
2
2
2
2
2
1
1
662
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.w: A = None self.txt = txt c = A("c") a = B("a") k = A("k") m = B("m") g = B("g") f = A("f") c.r = m a.q = g a.w = k k.r = m m.q = g m.w = c g.q = a g.w = k f.r = a assert f.r.q.q.txt == "
a"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.w: A = None self.txt = txt c = A("c") a = B("a") k = A("k") m = B("m") g = B("g") f = A("f") c.r = m a.q = g a.w = k k.r = m m.q = g m.w = c g.q = a g.w = k f.r = a assert f.r.q.q.txt == "a"
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
2
1
663
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.s: B = None self.txt = txt b = A("b") c = B("c") a = A("a") f = A("f") i = B("i") j = B("j") h = B("h") k = B("k") g = B("g") b.v = h c.p = f c.s = i a.v = i f.v = j i.p = a i.s = h j.p = f j.s = h h.p = f h.s = g k.p = f k.s = i g.p = a g.s = h assert g.s.p.v.s.p.v.p.txt == "
f"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.s: B = None self.txt = txt b = A("b") c = B("c") a = A("a") f = A("f") i = B("i") j = B("j") h = B("h") k = B("k") g = B("g") b.v = h c.p = f c.s = i a.v = i f.v = j i.p = a i.s = h j.p = f j.s = h h.p = f h.s = g k.p = f k.s = i g.p = a g.s = h assert g.s.p.v.s.p.v.p.txt == "f"
9
15
1.666667
0.208333
2
4.5
2
1
1.5
7
3
2
4
0.444444
5
0.333333
4
2
5
3.2
3
3
1
2
664
class A: def __init__(self, txt: str): self.t: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.z: B = None self.txt = txt m = A("m") i = B("i") k = B("k") a = B("a") g = A("g") l = B("l") m.t = g m.p = l i.v = m i.z = a k.v = g k.z = a a.v = m a.z = l g.t = m g.p = a l.v = m l.z = i assert g.p.z.z.z.z.z.txt == "
i"
class A: def __init__(self, txt: str): self.t: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.z: B = None self.txt = txt m = A("m") i = B("i") k = B("k") a = B("a") g = A("g") l = B("l") m.t = g m.p = l i.v = m i.z = a k.v = g k.z = a a.v = m a.z = l g.t = m g.p = a l.v = m l.z = i assert g.p.z.z.z.z.z.txt == "i"
6
12
2
0.4
2
3
2
2
2
6
2
2
4
0.666667
4
0.333333
3
3
3
3
2
5
5
1
665
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt n = A("n") c = B("c") f = B("f") j = A("j") g = B("g") d = B("d") b = B("b") l = A("l") n.x = b c.p = g f.p = c j.x = g g.p = f d.p = c b.p = g l.x = d assert j.x.p.p.p.p.txt == "
f"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt n = A("n") c = B("c") f = B("f") j = A("j") g = B("g") d = B("d") b = B("b") l = A("l") n.x = b c.p = g f.p = c j.x = g g.p = f d.p = c b.p = g l.x = d assert j.x.p.p.p.p.txt == "f"
8
8
1
0.142857
2
4
1
1
1
5
2
2
4
0.5
4
0.5
2
3
3
3
2
4
4
1
666
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.v: A = None self.txt = txt g = A("g") f = B("f") b = B("b") m = B("m") k = B("k") a = A("a") n = B("n") g.x = a f.o = m f.v = g b.o = m b.v = g m.o = n m.v = a k.o = f k.v = a a.x = g n.o = k n.v = g assert f.o.o.o.txt == "
k"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.v: A = None self.txt = txt g = A("g") f = B("f") b = B("b") m = B("m") k = B("k") a = A("a") n = B("n") g.x = a f.o = m f.v = g b.o = m b.v = g m.o = n m.v = a k.o = f k.v = a a.x = g n.o = k n.v = g assert f.o.o.o.txt == "k"
7
12
1.714286
0.285714
2
3.5
2
1
1.5
3
1
1
4
0.571429
3
0.25
0
null
null
null
1
3
3
1
667
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.t: A = None self.txt = txt h = A("h") c = B("c") a = A("a") i = B("i") h.p = a c.s = a c.t = a a.p = h i.s = a i.t = a assert c.t.p.p.p.txt == "
h"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.t: A = None self.txt = txt h = A("h") c = B("c") a = A("a") i = B("i") h.p = a c.s = a c.t = a a.p = h i.s = a i.t = a assert c.t.p.p.p.txt == "h"
4
4
1
0.333333
2
2
2
1
1.5
4
2
2
3
0.75
3
0.75
2
2
2
2
2
3
3
1
668
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt j = A("j") g = B("g") b = B("b") d = A("d") n = B("n") i = A("i") l = B("l") j.w = d g.y = i b.y = i d.w = i n.y = j i.w = j l.y = i assert g.y.w.w.w.w.w.w.txt == "
i"
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt j = A("j") g = B("g") b = B("b") d = A("d") n = B("n") i = A("i") l = B("l") j.w = d g.y = i b.y = i d.w = i n.y = j i.w = j l.y = i assert g.y.w.w.w.w.w.w.txt == "i"
7
7
1
0.166667
2
3.5
1
1
1
7
3
2
4
0.571429
4
0.571429
4
3
6
3.6
2
6
6
1
669
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.r: A = None self.txt = txt e = A("e") l = B("l") g = A("g") e.q = g l.p = e l.r = e g.q = e assert e.q.q.q.txt == "
g"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.r: A = None self.txt = txt e = A("e") l = B("l") g = A("g") e.q = g l.p = e l.r = e g.q = e assert e.q.q.q.txt == "g"
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
1
3
3
1
670
class A: def __init__(self, txt: str): self.r: A = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt e = A("e") n = B("n") m = A("m") h = A("h") e.r = h e.t = n n.o = h m.r = h m.t = n h.r = e h.t = n assert n.o.t.o.r.txt == "
e"
class A: def __init__(self, txt: str): self.r: A = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt e = A("e") n = B("n") m = A("m") h = A("h") e.r = h e.t = n n.o = h m.r = h m.t = n h.r = e h.t = n assert n.o.t.o.r.txt == "e"
4
7
1.75
0.583333
2
2
2
1
1.5
4
2
2
3
0.75
3
0.428571
2
2
2
2
3
2
1
2
671
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.r: A = None self.txt = txt b = A("b") c = B("c") d = A("d") h = B("h") k = B("k") f = A("f") n = B("n") g = A("g") e = A("e") l = A("l") b.x = e c.t = l c.r = d d.x = f h.t = l h.r = b k.t = e k.r = g f.x = l n.t = e n.r = g g.x = l e.x = l l.x = d assert n.r.x.x.x.x.x.txt == "
d"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.r: A = None self.txt = txt b = A("b") c = B("c") d = A("d") h = B("h") k = B("k") f = A("f") n = B("n") g = A("g") e = A("e") l = A("l") b.x = e c.t = l c.r = d d.x = f h.t = l h.r = b k.t = e k.r = g f.x = l n.t = e n.r = g g.x = l e.x = l l.x = d assert n.r.x.x.x.x.x.txt == "d"
10
14
1.4
0.155556
2
5
2
1
1.5
6
2
2
5
0.5
5
0.357143
2
3
3
3
2
5
5
1
672
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt b = A("b") d = B("d") k = A("k") c = A("c") h = B("h") b.v = k d.q = b k.v = b c.v = k h.q = k assert d.q.v.v.v.v.txt == "
b"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt b = A("b") d = B("d") k = A("k") c = A("c") h = B("h") b.v = k d.q = b k.v = b c.v = k h.q = k assert d.q.v.v.v.v.txt == "b"
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
673
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.u: A = None self.txt = txt n = A("n") m = B("m") l = B("l") d = B("d") e = A("e") i = A("i") j = A("j") n.r = l m.x = i m.u = i l.x = j l.u = i d.x = e d.u = e e.r = m i.r = l j.r = d assert m.u.r.u.r.x.r.x.txt == "
e"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.u: A = None self.txt = txt n = A("n") m = B("m") l = B("l") d = B("d") e = A("e") i = A("i") j = A("j") n.r = l m.x = i m.u = i l.x = j l.u = i d.x = e d.u = e e.r = m i.r = l j.r = d assert m.u.r.u.r.x.r.x.txt == "e"
7
8
1.142857
0.190476
2
3.5
2
1
1.5
7
2
2
6
0.857143
6
0.75
2
2
2
2
3
3
1
2
674
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.p: B = None self.txt = txt b = A("b") l = B("l") f = A("f") a = B("a") j = B("j") g = A("g") i = A("i") m = A("m") k = B("k") b.o = l b.p = m l.p = a f.o = j f.p = g a.p = k j.p = a g.o = l g.p = m i.o = k i.p = m m.o = j m.p = g k.p = j assert k.p.p.p.p.p.p.p.p.txt == "
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.p: B = None self.txt = txt b = A("b") l = B("l") f = A("f") a = B("a") j = B("j") g = A("g") i = A("i") m = A("m") k = B("k") b.o = l b.p = m l.p = a f.o = j f.p = g a.p = k j.p = a g.o = l g.p = m i.o = k i.p = m m.o = j m.p = g k.p = j assert k.p.p.p.p.p.p.p.p.txt == "a"
9
14
1.555556
0.194444
2
4.5
2
1
1.5
8
3
3
3
0.333333
3
0.214286
6
3
6
4
1
8
8
1
675
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.v: B = None self.txt = txt j = A("j") g = B("g") n = A("n") b = B("b") m = B("m") e = A("e") k = A("k") j.u = e g.s = e g.v = b n.u = j b.s = j b.v = m m.s = j m.v = g e.u = n k.u = e assert n.u.u.u.u.u.u.txt == "
n"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.v: B = None self.txt = txt j = A("j") g = B("g") n = A("n") b = B("b") m = B("m") e = A("e") k = A("k") j.u = e g.s = e g.v = b n.u = j b.s = j b.v = m m.s = j m.v = g e.u = n k.u = e assert n.u.u.u.u.u.u.txt == "n"
7
10
1.428571
0.238095
2
3.5
2
1
1.5
6
3
2
3
0.428571
3
0.3
4
3
6
3.6
1
6
6
1
676
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.r: B = None self.txt = txt f = A("f") k = B("k") c = A("c") m = A("m") g = A("g") l = B("l") f.v = k k.y = f k.r = l c.v = l m.v = l g.v = k l.y = g l.r = k assert c.v.y.v.y.txt == "
f"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.r: B = None self.txt = txt f = A("f") k = B("k") c = A("c") m = A("m") g = A("g") l = B("l") f.v = k k.y = f k.r = l c.v = l m.v = l g.v = k l.y = g l.r = k assert c.v.y.v.y.txt == "f"
6
8
1.333333
0.266667
2
3
2
1
1.5
4
1
1
5
0.833333
4
0.5
0
null
null
null
2
2
1
1
677
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt l = A("l") c = B("c") b = B("b") l.y = b c.t = b b.t = c assert l.y.t.t.txt == "
b"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt l = A("l") c = B("c") b = B("b") l.y = b c.t = b b.t = c assert l.y.t.t.txt == "b"
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
678
class A: def __init__(self, txt: str): self.s: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.p: B = None self.txt = txt k = A("k") d = B("d") c = B("c") f = A("f") h = B("h") l = A("l") j = A("j") e = B("e") k.s = j k.v = j d.y = c d.p = e c.y = d c.p = d f.s = k f.v = l h.y = c h.p = d l.s = k l.v = k j.s = f j.v = l e.y = c e.p = h assert h.p.y.p.p.p.txt == "
h"
class A: def __init__(self, txt: str): self.s: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.p: B = None self.txt = txt k = A("k") d = B("d") c = B("c") f = A("f") h = B("h") l = A("l") j = A("j") e = B("e") k.s = j k.v = j d.y = c d.p = e c.y = d c.p = d f.s = k f.v = l h.y = c h.p = d l.s = k l.v = k j.s = f j.v = l e.y = c e.p = h assert h.p.y.p.p.p.txt == "h"
8
13
1.625
0.232143
2
4
2
2
2
5
2
1
4
0.5
5
0.384615
2
2
5
3.5
2
4
3
2
679
class A: def __init__(self, txt: str): self.o: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt j = A("j") d = B("d") c = A("c") b = B("b") j.o = c j.x = c d.y = b c.o = j c.x = j b.y = d assert b.y.y.y.y.txt == "
b"
class A: def __init__(self, txt: str): self.o: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt j = A("j") d = B("d") c = A("c") b = B("b") j.o = c j.x = c d.y = b c.o = j c.x = j b.y = d assert b.y.y.y.y.txt == "b"
4
4
1
0.333333
2
2
2
1
1.5
4
3
2
2
0.5
2
0.5
3
2
4
2.5
1
4
4
1
680
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt m = A("m") f = B("f") h = B("h") d = A("d") n = A("n") l = B("l") e = B("e") b = B("b") m.w = n f.w = d h.w = d d.w = n n.w = m l.w = n e.w = m b.w = n assert m.w.w.w.w.txt == "
m"
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt m = A("m") f = B("f") h = B("h") d = A("d") n = A("n") l = B("l") e = B("e") b = B("b") m.w = n f.w = d h.w = d d.w = n n.w = m l.w = n e.w = m b.w = n assert m.w.w.w.w.txt == "m"
8
8
1
0.142857
2
4
1
1
1
4
3
2
2
0.25
2
0.25
3
2
4
2.5
1
4
4
1
681
class A: def __init__(self, txt: str): self.w: B = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.v: A = None self.txt = txt j = A("j") e = B("e") k = A("k") l = B("l") h = A("h") n = B("n") d = B("d") a = B("a") j.w = l j.p = k e.u = k e.v = h k.w = n k.p = h l.u = k l.v = j h.w = e h.p = j n.u = j n.v = j d.u = k d.v = k a.u = h a.v = k assert n.u.w.u.w.u.w.txt == "
l"
class A: def __init__(self, txt: str): self.w: B = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.v: A = None self.txt = txt j = A("j") e = B("e") k = A("k") l = B("l") h = A("h") n = B("n") d = B("d") a = B("a") j.w = l j.p = k e.u = k e.v = h k.w = n k.p = h l.u = k l.v = j h.w = e h.p = j n.u = j n.v = j d.u = k d.v = k a.u = h a.v = k assert n.u.w.u.w.u.w.txt == "l"
8
14
1.75
0.25
2
4
2
2
2
6
2
2
4
0.5
4
0.285714
3
4
4
4
2
3
1
1
682
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt l = A("l") g = B("g") b = B("b") n = B("n") h = B("h") k = A("k") l.u = n g.s = k b.s = l n.s = k h.s = l k.u = h assert k.u.s.u.s.txt == "
k"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt l = A("l") g = B("g") b = B("b") n = B("n") h = B("h") k = A("k") l.u = n g.s = k b.s = l n.s = k h.s = l k.u = h assert k.u.s.u.s.txt == "k"
6
6
1
0.2
2
3
1
1
1
4
2
1
4
0.666667
4
0.666667
1
4
4
4
2
2
1
1
683
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt f = A("f") c = B("c") b = A("b") e = B("e") g = B("g") a = B("a") d = A("d") l = B("l") k = A("k") j = B("j") f.r = l c.z = g b.r = g e.z = l g.z = a a.z = g d.r = g l.z = c k.r = j j.z = a assert f.r.z.z.z.z.z.z.z.z.txt == "
g"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt f = A("f") c = B("c") b = A("b") e = B("e") g = B("g") a = B("a") d = A("d") l = B("l") k = A("k") j = B("j") f.r = l c.z = g b.r = g e.z = l g.z = a a.z = g d.r = g l.z = c k.r = j j.z = a assert f.r.z.z.z.z.z.z.z.z.txt == "g"
10
10
1
0.111111
2
5
1
1
1
9
4
3
5
0.5
5
0.5
5
2
6
3.111111
2
8
8
1
684
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.x: B = None self.txt = txt j = A("j") n = B("n") c = B("c") i = A("i") j.w = i n.v = j n.x = c c.v = i c.x = n i.w = j assert i.w.w.w.w.txt == "
i"
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.x: B = None self.txt = txt j = A("j") n = B("n") c = B("c") i = A("i") j.w = i n.v = j n.x = c c.v = i c.x = n i.w = j assert i.w.w.w.w.txt == "i"
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
685
class A: def __init__(self, txt: str): self.w: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt b = A("b") i = B("i") h = A("h") j = B("j") n = B("n") d = A("d") b.w = j b.y = i i.w = j h.w = i h.y = n j.w = n n.w = j d.w = j d.y = i assert j.w.w.w.txt == "
n"
class A: def __init__(self, txt: str): self.w: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt b = A("b") i = B("i") h = A("h") j = B("j") n = B("n") d = A("d") b.w = j b.y = i i.w = j h.w = i h.y = n j.w = n n.w = j d.w = j d.y = i assert j.w.w.w.txt == "n"
6
9
1.5
0.3
2
3
2
1
1.5
3
2
2
2
0.333333
2
0.222222
2
2
2
2
1
3
3
1
686
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.w: A = None self.txt = txt m = A("m") a = B("a") h = A("h") j = A("j") g = B("g") e = A("e") m.w = e a.z = g a.w = h h.w = j j.w = m g.z = a g.w = j e.w = j assert j.w.w.w.w.w.w.txt == "
j"
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.w: A = None self.txt = txt m = A("m") a = B("a") h = A("h") j = A("j") g = B("g") e = A("e") m.w = e a.z = g a.w = h h.w = j j.w = m g.z = a g.w = j e.w = j assert j.w.w.w.w.w.w.txt == "j"
6
8
1.333333
0.266667
2
3
2
1
1.5
6
3
2
3
0.5
3
0.375
4
3
6
3.6
1
6
6
1
687
class A: def __init__(self, txt: str): self.u: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt i = A("i") l = B("l") m = B("m") a = B("a") c = A("c") d = B("d") i.u = c i.p = l l.s = i m.s = i a.s = c c.u = i c.p = a d.s = i assert c.p.s.u.p.s.txt == "
i"
class A: def __init__(self, txt: str): self.u: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt i = A("i") l = B("l") m = B("m") a = B("a") c = A("c") d = B("d") i.u = c i.p = l l.s = i m.s = i a.s = c c.u = i c.p = a d.s = i assert c.p.s.u.p.s.txt == "i"
6
8
1.333333
0.266667
2
3
2
1
1.5
5
2
1
4
0.666667
5
0.625
2
2
2
2
3
2
1
2
688
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.q: A = None self.txt = txt g = A("g") b = B("b") n = B("n") i = A("i") m = B("m") g.v = b b.o = i b.q = g n.o = g n.q = i i.v = b m.o = i m.q = g assert i.v.q.v.txt == "
b"
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.q: A = None self.txt = txt g = A("g") b = B("b") n = B("n") i = A("i") m = B("m") g.v = b b.o = i b.q = g n.o = g n.q = i i.v = b m.o = i m.q = g assert i.v.q.v.txt == "b"
5
8
1.6
0.4
2
2.5
2
1
1.5
3
2
1
3
0.6
3
0.375
1
2
2
2
2
2
1
1
689
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt i = A("i") m = B("m") b = B("b") i.r = b m.p = b b.p = m assert b.p.p.p.txt == "
m"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt i = A("i") m = B("m") b = B("b") i.r = b m.p = b b.p = m assert b.p.p.p.txt == "m"
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
690
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.u: A = None self.txt = txt h = A("h") c = B("c") l = B("l") j = A("j") g = A("g") d = A("d") e = A("e") m = A("m") n = B("n") k = A("k") h.o = n c.z = j c.u = e l.z = j l.u = h j.o = c g.o = l d.o = c e.o = c m.o = n n.z = k n.u = h k.o = c assert n.u.o.z.o.u.o.u.o.txt == "
c"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.u: A = None self.txt = txt h = A("h") c = B("c") l = B("l") j = A("j") g = A("g") d = A("d") e = A("e") m = A("m") n = B("n") k = A("k") h.o = n c.z = j c.u = e l.z = j l.u = h j.o = c g.o = l d.o = c e.o = c m.o = n n.z = k n.u = h k.o = c assert n.u.o.z.o.u.o.u.o.txt == "c"
10
13
1.3
0.144444
2
5
2
1
1.5
8
3
2
5
0.5
6
0.461538
4
2
4
2.4
3
4
1
2
691
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.w: A = None self.txt = txt n = A("n") l = B("l") j = B("j") n.x = j l.v = n l.w = n j.v = n j.w = n assert n.x.w.x.txt == "
j"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.w: A = None self.txt = txt n = A("n") l = B("l") j = B("j") n.x = j l.v = n l.w = n j.v = n j.w = n assert n.x.w.x.txt == "j"
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
692
class A: def __init__(self, txt: str): self.s: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt j = A("j") a = B("a") d = B("d") l = B("l") n = A("n") f = A("f") e = B("e") j.s = a j.x = l a.r = j d.r = f l.r = f n.s = d n.x = a f.s = a f.x = e e.r = j assert f.s.r.s.r.x.txt == "
l"
class A: def __init__(self, txt: str): self.s: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt j = A("j") a = B("a") d = B("d") l = B("l") n = A("n") f = A("f") e = B("e") j.s = a j.x = l a.r = j d.r = f l.r = f n.s = d n.x = a f.s = a f.x = e e.r = j assert f.s.r.s.r.x.txt == "l"
7
10
1.428571
0.238095
2
3.5
2
1
1.5
5
2
2
4
0.571429
4
0.4
2
2
2
2
3
2
1
2
693
class A: def __init__(self, txt: str): self.z: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt c = A("c") b = B("b") l = B("l") e = B("e") g = B("g") f = A("f") c.z = f c.o = b b.s = c l.s = f e.s = f g.s = f f.z = c f.o = l assert b.s.z.o.s.txt == "
f"
class A: def __init__(self, txt: str): self.z: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt c = A("c") b = B("b") l = B("l") e = B("e") g = B("g") f = A("f") c.z = f c.o = b b.s = c l.s = f e.s = f g.s = f f.z = c f.o = l assert b.s.z.o.s.txt == "f"
6
8
1.333333
0.266667
2
3
2
1
1.5
4
2
1
4
0.666667
4
0.5
1
2
2
2
3
2
1
1
694
class A: def __init__(self, txt: str): self.y: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt n = A("n") l = B("l") e = A("e") b = B("b") g = B("g") h = B("h") a = A("a") m = B("m") j = A("j") n.y = b n.o = j l.q = a e.y = h e.o = j b.q = n g.q = e h.q = j a.y = m a.o = j m.q = j j.y = g j.o = a assert h.q.o.y.txt == "
m"
class A: def __init__(self, txt: str): self.y: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt n = A("n") l = B("l") e = A("e") b = B("b") g = B("g") h = B("h") a = A("a") m = B("m") j = A("j") n.y = b n.o = j l.q = a e.y = h e.o = j b.q = n g.q = e h.q = j a.y = m a.o = j m.q = j j.y = g j.o = a assert h.q.o.y.txt == "m"
9
13
1.444444
0.180556
2
4.5
2
1
1.5
3
1
1
4
0.444444
3
0.230769
0
null
null
null
3
1
1
1
695
class A: def __init__(self, txt: str): self.t: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt g = A("g") j = B("j") l = B("l") b = B("b") f = A("f") a = B("a") e = B("e") n = B("n") g.t = b g.u = l j.y = n l.y = a b.y = n f.t = e f.u = e a.y = j e.y = n n.y = j assert a.y.y.y.txt == "
j"
class A: def __init__(self, txt: str): self.t: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt g = A("g") j = B("j") l = B("l") b = B("b") f = A("f") a = B("a") e = B("e") n = B("n") g.t = b g.u = l j.y = n l.y = a b.y = n f.t = e f.u = e a.y = j e.y = n n.y = j assert a.y.y.y.txt == "j"
8
9
1.125
0.160714
2
4
2
1
1.5
3
2
1
3
0.375
3
0.333333
1
2
2
2
1
3
3
1
696
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.t: B = None self.txt = txt i = A("i") n = B("n") m = A("m") g = B("g") i.v = n n.o = i n.t = g m.v = n g.o = i g.t = n assert m.v.t.o.v.txt == "
n"
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.t: B = None self.txt = txt i = A("i") n = B("n") m = A("m") g = B("g") i.v = n n.o = i n.t = g m.v = n g.o = i g.t = n assert m.v.t.o.v.txt == "n"
4
6
1.5
0.5
2
2
2
1
1.5
4
2
1
4
1
4
0.666667
1
3
3
3
3
2
1
1
697
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.z: A = None self.txt = txt m = A("m") i = B("i") b = A("b") j = B("j") g = A("g") c = A("c") d = A("d") k = B("k") m.y = b i.q = j i.z = b b.y = c j.q = k j.z = m g.y = c c.y = m d.y = m k.q = j k.z = m assert g.y.y.y.y.y.y.txt == "
b"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.z: A = None self.txt = txt m = A("m") i = B("i") b = A("b") j = B("j") g = A("g") c = A("c") d = A("d") k = B("k") m.y = b i.q = j i.z = b b.y = c j.q = k j.z = m g.y = c c.y = m d.y = m k.q = j k.z = m assert g.y.y.y.y.y.y.txt == "b"
8
11
1.375
0.196429
2
4
2
1
1.5
6
2
2
4
0.5
4
0.363636
3
3
3
3
1
6
6
1
698
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt e = A("e") c = B("c") k = A("k") l = B("l") a = B("a") m = B("m") g = A("g") e.z = g c.r = g k.z = e l.r = g a.r = e m.r = e g.z = k assert c.r.z.z.z.txt == "
g"
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt e = A("e") c = B("c") k = A("k") l = B("l") a = B("a") m = B("m") g = A("g") e.z = g c.r = g k.z = e l.r = g a.r = e m.r = e g.z = k assert c.r.z.z.z.txt == "g"
7
7
1
0.166667
2
3.5
1
1
1
4
2
1
4
0.571429
4
0.571429
1
3
3
3
2
3
3
1
699
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt m = A("m") h = B("h") f = A("f") j = A("j") b = B("b") d = B("d") l = B("l") c = A("c") m.s = f h.q = d f.s = m j.s = f b.q = d d.q = b l.q = b c.s = m assert d.q.q.q.q.txt == "
d"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt m = A("m") h = B("h") f = A("f") j = A("j") b = B("b") d = B("d") l = B("l") c = A("c") m.s = f h.q = d f.s = m j.s = f b.q = d d.q = b l.q = b c.s = m assert d.q.q.q.q.txt == "d"
8
8
1
0.142857
2
4
1
1
1
4
3
2
2
0.25
2
0.25
3
2
4
2.5
1
4
4
1