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
700
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 n = A("n") h = B("h") f = A("f") m = A("m") n.q = f h.w = f f.q = n m.q = f assert f.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 n = A("n") h = B("h") f = A("f") m = A("m") n.q = f h.w = f f.q = n m.q = f assert f.q.q.q.txt == "n"
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
701
class A: def __init__(self, txt: str): self.p: A = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.v: A = None self.txt = txt l = A("l") g = B("g") k = A("k") l.p = k l.r = k g.x = l g.v = k k.p = l k.r = l assert k.p.p.r.txt == "
l"
class A: def __init__(self, txt: str): self.p: A = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.v: A = None self.txt = txt l = A("l") g = B("g") k = A("k") l.p = k l.r = k g.x = l g.v = k k.p = l k.r = l assert k.p.p.r.txt == "l"
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
702
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.q: B = None self.txt = txt m = A("m") c = B("c") k = B("k") b = B("b") f = A("f") d = B("d") a = B("a") g = B("g") j = B("j") m.z = f c.w = a c.q = a k.w = j k.q = j b.w = a b.q = g f.z = m d.w = c d.q = b a.w = c a.q = d g.w = a g.q = c j.w = d j.q = a assert m.z.z.z.z.z.z.z.txt == "
f"
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.q: B = None self.txt = txt m = A("m") c = B("c") k = B("k") b = B("b") f = A("f") d = B("d") a = B("a") g = B("g") j = B("j") m.z = f c.w = a c.q = a k.w = j k.q = j b.w = a b.q = g f.z = m d.w = c d.q = b a.w = c a.q = d g.w = a g.q = c j.w = d j.q = a assert m.z.z.z.z.z.z.z.txt == "f"
9
14
1.555556
0.194444
2
4.5
2
1
1.5
7
4
4
2
0.222222
2
0.142857
6
2
6
3.333333
1
7
7
1
703
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt c = A("c") a = B("a") n = A("n") e = B("e") c.p = a a.w = n n.p = a e.w = c assert e.w.p.w.p.txt == "
a"
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt c = A("c") a = B("a") n = A("n") e = B("e") c.p = a a.w = n n.p = a e.w = c assert e.w.p.w.p.txt == "a"
4
4
1
0.333333
2
2
1
1
1
4
2
1
4
1
4
1
1
2
2
2
2
2
1
1
704
class A: def __init__(self, txt: str): self.x: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt g = A("g") d = B("d") f = A("f") j = B("j") n = A("n") h = A("h") i = B("i") m = A("m") g.x = j g.o = i d.p = g f.x = j f.o = j j.p = f n.x = d n.o = d h.x = i h.o = i i.p = f m.x = j m.o = j assert f.o.p.x.p.o.p.x.txt == "
j"
class A: def __init__(self, txt: str): self.x: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt g = A("g") d = B("d") f = A("f") j = B("j") n = A("n") h = A("h") i = B("i") m = A("m") g.x = j g.o = i d.p = g f.x = j f.o = j j.p = f n.x = d n.o = d h.x = i h.o = i i.p = f m.x = j m.o = j assert f.o.p.x.p.o.p.x.txt == "j"
8
9
1.125
0.160714
2
4
2
1
1.5
7
4
3
2
0.25
3
0.333333
6
2
6
3.333333
3
3
1
2
705
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.u: B = None self.txt = txt d = A("d") i = B("i") n = B("n") a = A("a") f = B("f") l = A("l") g = A("g") k = B("k") b = B("b") d.p = a d.y = l i.u = f n.u = i a.p = l a.y = g f.u = i l.p = d l.y = a g.p = l g.y = a k.u = i b.u = n assert n.u.u.u.u.u.u.u.txt == "
i"
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.u: B = None self.txt = txt d = A("d") i = B("i") n = B("n") a = A("a") f = B("f") l = A("l") g = A("g") k = B("k") b = B("b") d.p = a d.y = l i.u = f n.u = i a.p = l a.y = g f.u = i l.p = d l.y = a g.p = l g.y = a k.u = i b.u = n assert n.u.u.u.u.u.u.u.txt == "i"
9
13
1.444444
0.180556
2
4.5
2
1
1.5
7
4
3
3
0.333333
3
0.230769
5
2
6
3.111111
1
7
7
1
706
class A: def __init__(self, txt: str): self.s: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt j = A("j") f = B("f") a = A("a") b = A("b") e = B("e") j.s = e j.y = f f.u = j a.s = f a.y = e b.s = e b.y = f e.u = a assert f.u.s.u.txt == "
a"
class A: def __init__(self, txt: str): self.s: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt j = A("j") f = B("f") a = A("a") b = A("b") e = B("e") j.s = e j.y = f f.u = j a.s = f a.y = e b.s = e b.y = f e.u = a assert f.u.s.u.txt == "a"
5
8
1.6
0.4
2
2.5
2
1
1.5
3
1
1
4
0.8
3
0.375
0
null
null
null
2
2
1
1
707
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.t: A = None self.txt = txt k = A("k") l = B("l") n = B("n") k.u = n k.q = n l.t = k n.t = k assert l.t.q.t.txt == "
k"
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.t: A = None self.txt = txt k = A("k") l = B("l") n = B("n") k.u = n k.q = n l.t = k n.t = k assert l.t.q.t.txt == "k"
3
3
1
0.5
2
1.5
2
1
1.5
3
2
1
3
1
3
1
1
2
2
2
2
2
1
1
708
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.t: B = None self.txt = txt m = A("m") g = B("g") a = B("a") j = B("j") c = A("c") d = A("d") m.v = c g.u = d g.t = j a.u = m a.t = j j.u = m j.t = g c.v = m d.v = c assert g.t.t.t.u.v.v.txt == "
m"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.t: B = None self.txt = txt m = A("m") g = B("g") a = B("a") j = B("j") c = A("c") d = A("d") m.v = c g.u = d g.t = j a.u = m a.t = j j.u = m j.t = g c.v = m d.v = c assert g.t.t.t.u.v.v.txt == "m"
6
9
1.5
0.3
2
3
2
1
1.5
6
2
2
4
0.666667
5
0.555556
3
2
2
2
3
3
3
2
709
class A: def __init__(self, txt: str): self.r: B = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.o: A = None self.txt = txt n = A("n") l = B("l") d = A("d") f = A("f") h = B("h") c = A("c") j = A("j") i = A("i") a = A("a") n.r = l n.s = i l.r = c l.o = j d.r = l d.s = a f.r = l f.s = a h.r = n h.o = i c.r = h c.s = f j.r = h j.s = n i.r = h i.s = a a.r = h a.s = f assert f.r.o.s.s.s.s.txt == "
f"
class A: def __init__(self, txt: str): self.r: B = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.o: A = None self.txt = txt n = A("n") l = B("l") d = A("d") f = A("f") h = B("h") c = A("c") j = A("j") i = A("i") a = A("a") n.r = l n.s = i l.r = c l.o = j d.r = l d.s = a f.r = l f.s = a h.r = n h.o = i c.r = h c.s = f j.r = h j.s = n i.r = h i.s = a a.r = h a.s = f assert f.r.o.s.s.s.s.txt == "f"
9
18
2
0.25
2
4.5
2
2
2
6
2
1
6
0.666667
6
0.333333
1
6
6
6
3
4
4
1
710
class A: def __init__(self, txt: str): self.u: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.u: B = None self.txt = txt i = A("i") e = B("e") j = A("j") n = A("n") g = B("g") i.u = n i.w = g e.y = g e.u = g j.u = i j.w = g n.u = i n.w = e g.y = e g.u = e assert i.u.w.y.u.txt == "
e"
class A: def __init__(self, txt: str): self.u: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.u: B = None self.txt = txt i = A("i") e = B("e") j = A("j") n = A("n") g = B("g") i.u = n i.w = g e.y = g e.u = g j.u = i j.w = g n.u = i n.w = e g.y = e g.u = e assert i.u.w.y.u.txt == "e"
5
8
1.6
0.4
2
2.5
2
2
2
4
2
1
4
0.8
4
0.5
1
2
2
2
3
2
1
1
711
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.o: A = None self.txt = txt j = A("j") m = B("m") h = B("h") g = A("g") d = A("d") f = B("f") n = B("n") j.r = g m.w = h m.o = d h.w = n h.o = d g.r = j d.r = g f.w = h f.o = d n.w = m n.o = g assert f.o.r.r.r.txt == "
g"
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.o: A = None self.txt = txt j = A("j") m = B("m") h = B("h") g = A("g") d = A("d") f = B("f") n = B("n") j.r = g m.w = h m.o = d h.w = n h.o = d g.r = j d.r = g f.w = h f.o = d n.w = m n.o = g assert f.o.r.r.r.txt == "g"
7
11
1.571429
0.261905
2
3.5
2
1
1.5
4
2
1
4
0.571429
4
0.363636
1
2
2
2
2
3
3
1
712
class A: def __init__(self, txt: str): self.s: A = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt i = A("i") g = B("g") f = A("f") i.s = f i.v = g g.x = i f.s = i f.v = g assert i.v.x.s.txt == "
f"
class A: def __init__(self, txt: str): self.s: A = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt i = A("i") g = B("g") f = A("f") i.s = f i.v = g g.x = i f.s = i f.v = g assert i.v.x.s.txt == "f"
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
2
713
class A: def __init__(self, txt: str): self.s: B = None self.z: A = 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 = B("k") h = A("h") d = B("d") e.s = k e.z = h g.y = h k.y = h h.s = k h.z = e d.y = e assert g.y.s.y.z.txt == "
e"
class A: def __init__(self, txt: str): self.s: B = None self.z: A = 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 = B("k") h = A("h") d = B("d") e.s = k e.z = h g.y = h k.y = h h.s = k h.z = e d.y = e assert g.y.s.y.z.txt == "e"
5
7
1.4
0.35
2
2.5
2
1
1.5
4
2
1
4
0.8
4
0.571429
1
2
2
2
3
2
1
2
714
class A: def __init__(self, txt: str): self.y: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.p: B = None self.txt = txt d = A("d") l = B("l") m = A("m") a = B("a") d.y = m d.q = l l.w = m l.p = a m.y = d m.q = l a.w = m a.p = l assert m.y.y.q.txt == "
l"
class A: def __init__(self, txt: str): self.y: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.p: B = None self.txt = txt d = A("d") l = B("l") m = A("m") a = B("a") d.y = m d.q = l l.w = m l.p = a m.y = d m.q = l a.w = m a.p = l assert m.y.y.q.txt == "l"
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
715
class A: def __init__(self, txt: str): self.r: A = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.q: B = None self.txt = txt d = A("d") a = B("a") i = B("i") g = A("g") d.r = g d.u = a a.r = i a.q = i i.r = a i.q = a g.r = d g.u = a assert d.r.u.r.r.txt == "
a"
class A: def __init__(self, txt: str): self.r: A = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.q: B = None self.txt = txt d = A("d") a = B("a") i = B("i") g = A("g") d.r = g d.u = a a.r = i a.q = i i.r = a i.q = a g.r = d g.u = a assert d.r.u.r.r.txt == "a"
4
6
1.5
0.5
2
2
2
2
2
4
2
1
4
1
4
0.666667
1
2
2
2
2
3
2
1
716
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.t: A = None self.txt = txt g = A("g") d = B("d") b = A("b") a = A("a") n = A("n") e = B("e") i = A("i") m = A("m") l = B("l") g.o = b d.o = e d.t = a b.o = n a.o = g n.o = a e.o = l e.t = i i.o = b m.o = a l.o = e l.t = m assert i.o.o.o.o.txt == "
g"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.t: A = None self.txt = txt g = A("g") d = B("d") b = A("b") a = A("a") n = A("n") e = B("e") i = A("i") m = A("m") l = B("l") g.o = b d.o = e d.t = a b.o = n a.o = g n.o = a e.o = l e.t = i i.o = b m.o = a l.o = e l.t = m assert i.o.o.o.o.txt == "g"
9
12
1.333333
0.166667
2
4.5
2
1
1.5
4
1
1
5
0.555556
4
0.333333
0
null
null
null
1
4
4
1
717
class A: def __init__(self, txt: str): self.u: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt g = A("g") l = B("l") e = A("e") a = A("a") f = B("f") i = B("i") g.u = a g.x = e l.w = f e.u = a e.x = a a.u = e a.x = e f.w = i i.w = l assert l.w.w.w.w.w.txt == "
i"
class A: def __init__(self, txt: str): self.u: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt g = A("g") l = B("l") e = A("e") a = A("a") f = B("f") i = B("i") g.u = a g.x = e l.w = f e.u = a e.x = a a.u = e a.x = e f.w = i i.w = l assert l.w.w.w.w.w.txt == "i"
6
7
1.166667
0.233333
2
3
2
1
1.5
5
2
2
3
0.5
3
0.428571
3
3
3
3
1
5
5
1
718
class A: def __init__(self, txt: str): self.t: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt n = A("n") d = B("d") k = A("k") a = B("a") b = B("b") e = A("e") g = A("g") l = A("l") j = A("j") n.t = a n.y = l d.x = l k.t = b k.y = l a.x = e b.x = j e.t = b e.y = l g.t = b g.y = k l.t = b l.y = j j.t = d j.y = k assert b.x.t.x.txt == "
l"
class A: def __init__(self, txt: str): self.t: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt n = A("n") d = B("d") k = A("k") a = B("a") b = B("b") e = A("e") g = A("g") l = A("l") j = A("j") n.t = a n.y = l d.x = l k.t = b k.y = l a.x = e b.x = j e.t = b e.y = l g.t = b g.y = k l.t = b l.y = j j.t = d j.y = k assert b.x.t.x.txt == "l"
9
15
1.666667
0.208333
2
4.5
2
1
1.5
3
1
1
4
0.444444
3
0.2
0
null
null
null
2
2
1
1
719
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt d = A("d") k = B("k") c = A("c") h = A("h") j = A("j") n = B("n") b = B("b") l = B("l") d.w = n k.z = c c.w = n h.w = n j.w = k n.z = c b.z = j l.z = j assert n.z.w.z.txt == "
c"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt d = A("d") k = B("k") c = A("c") h = A("h") j = A("j") n = B("n") b = B("b") l = B("l") d.w = n k.z = c c.w = n h.w = n j.w = k n.z = c b.z = j l.z = j assert n.z.w.z.txt == "c"
8
8
1
0.142857
2
4
1
1
1
3
2
2
2
0.25
2
0.25
2
2
2
2
2
2
1
1
720
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.z: A = None self.txt = txt b = A("b") m = B("m") k = B("k") b.r = m m.u = k m.z = b k.u = m k.z = b assert k.z.r.u.txt == "
k"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.z: A = None self.txt = txt b = A("b") m = B("m") k = B("k") b.r = m m.u = k m.z = b k.u = m k.z = b assert k.z.r.u.txt == "k"
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
721
class A: def __init__(self, txt: str): self.q: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt g = A("g") a = B("a") e = A("e") f = A("f") c = B("c") m = A("m") g.q = m g.v = f a.r = f e.q = f e.v = m f.q = e f.v = g c.r = g m.q = g m.v = e assert a.r.v.v.v.v.txt == "
f"
class A: def __init__(self, txt: str): self.q: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt g = A("g") a = B("a") e = A("e") f = A("f") c = B("c") m = A("m") g.q = m g.v = f a.r = f e.q = f e.v = m f.q = e f.v = g c.r = g m.q = g m.v = e assert a.r.v.v.v.v.txt == "f"
6
10
1.666667
0.333333
2
3
2
1
1.5
5
3
2
3
0.5
3
0.3
3
2
4
2.5
2
4
4
1
722
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.t: A = None self.txt = txt f = A("f") n = B("n") i = B("i") k = A("k") f.r = k n.q = i n.t = f i.q = n i.t = k k.r = f assert i.q.t.r.r.txt == "
f"
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.t: A = None self.txt = txt f = A("f") n = B("n") i = B("i") k = A("k") f.r = k n.q = i n.t = f i.q = n i.t = k k.r = f assert i.q.t.r.r.txt == "f"
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
723
class A: def __init__(self, txt: str): self.x: B = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.y: A = None self.txt = txt j = A("j") c = B("c") k = A("k") j.x = c j.t = k c.x = k c.y = j k.x = c k.t = j assert j.t.x.x.txt == "
k"
class A: def __init__(self, txt: str): self.x: B = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.y: A = None self.txt = txt j = A("j") c = B("c") k = A("k") j.x = c j.t = k c.x = k c.y = j k.x = c k.t = j assert j.t.x.x.txt == "k"
3
6
2
1
2
1.5
2
2
2
3
2
1
3
1
3
0.5
1
2
2
2
2
2
2
1
724
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt e = A("e") l = B("l") j = A("j") i = A("i") d = B("d") m = A("m") g = B("g") e.o = g l.p = i j.o = d i.o = g d.p = m m.o = l g.p = e assert l.p.o.p.txt == "
e"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt e = A("e") l = B("l") j = A("j") i = A("i") d = B("d") m = A("m") g = B("g") e.o = g l.p = i j.o = d i.o = g d.p = m m.o = l g.p = e assert l.p.o.p.txt == "e"
7
7
1
0.166667
2
3.5
1
1
1
3
1
1
4
0.571429
3
0.428571
0
null
null
null
2
2
1
1
725
class A: def __init__(self, txt: str): self.o: A = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt c = A("c") e = B("e") m = A("m") c.o = m c.x = e e.v = m m.o = c m.x = e assert c.o.x.v.txt == "
m"
class A: def __init__(self, txt: str): self.o: A = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt c = A("c") e = B("e") m = A("m") c.o = m c.x = e e.v = m m.o = c m.x = e assert c.o.x.v.txt == "m"
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
726
class A: def __init__(self, txt: str): self.q: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.p: A = None self.txt = txt a = A("a") i = B("i") g = A("g") a.q = i a.x = i i.z = g i.p = g g.q = i g.x = i assert a.x.p.q.txt == "
i"
class A: def __init__(self, txt: str): self.q: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.p: A = None self.txt = txt a = A("a") i = B("i") g = A("g") a.q = i a.x = i i.z = g i.p = g g.q = i g.x = i assert a.x.p.q.txt == "i"
3
3
1
0.5
2
1.5
2
2
2
3
2
1
3
1
3
1
1
2
2
2
3
1
1
1
727
class A: def __init__(self, txt: str): self.x: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.o: A = None self.txt = txt n = A("n") g = B("g") b = A("b") j = A("j") d = B("d") m = B("m") e = A("e") i = B("i") c = A("c") f = B("f") n.x = f n.q = f g.s = f g.o = c b.x = m b.q = m j.x = m j.q = m d.s = i d.o = e m.s = f m.o = c e.x = f e.q = d i.s = d i.o = n c.x = m c.q = g f.s = g f.o = j assert j.x.s.s.o.txt == "
c"
class A: def __init__(self, txt: str): self.x: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.o: A = None self.txt = txt n = A("n") g = B("g") b = A("b") j = A("j") d = B("d") m = B("m") e = A("e") i = B("i") c = A("c") f = B("f") n.x = f n.q = f g.s = f g.o = c b.x = m b.q = m j.x = m j.q = m d.s = i d.o = e m.s = f m.o = c e.x = f e.q = d i.s = d i.o = n c.x = m c.q = g f.s = g f.o = j assert j.x.s.s.o.txt == "c"
10
17
1.7
0.188889
2
5
2
2
2
4
1
1
5
0.5
4
0.235294
0
null
null
null
3
2
2
1
728
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt l = A("l") i = B("i") g = A("g") d = B("d") j = B("j") e = B("e") f = A("f") l.w = j i.s = j g.w = d d.s = i j.s = i e.s = d f.w = j assert i.s.s.s.s.s.s.txt == "
i"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt l = A("l") i = B("i") g = A("g") d = B("d") j = B("j") e = B("e") f = A("f") l.w = j i.s = j g.w = d d.s = i j.s = i e.s = d f.w = j assert i.s.s.s.s.s.s.txt == "i"
7
7
1
0.166667
2
3.5
1
1
1
6
4
3
2
0.285714
2
0.285714
5
2
6
3.111111
1
6
6
1
729
class A: def __init__(self, txt: str): self.x: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt m = A("m") k = B("k") j = B("j") l = B("l") d = A("d") e = A("e") n = B("n") c = B("c") h = B("h") m.x = e m.p = k k.r = j j.r = h l.r = n d.x = e d.p = n e.x = d e.p = n n.r = c c.r = j h.r = j assert h.r.r.r.r.r.r.r.r.txt == "
h"
class A: def __init__(self, txt: str): self.x: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt m = A("m") k = B("k") j = B("j") l = B("l") d = A("d") e = A("e") n = B("n") c = B("c") h = B("h") m.x = e m.p = k k.r = j j.r = h l.r = n d.x = e d.p = n e.x = d e.p = n n.r = c c.r = j h.r = j assert h.r.r.r.r.r.r.r.r.txt == "h"
9
12
1.333333
0.166667
2
4.5
2
1
1.5
8
5
4
2
0.222222
2
0.166667
7
2
8
3.75
1
8
8
1
730
class A: def __init__(self, txt: str): self.y: A = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt j = A("j") g = B("g") b = B("b") a = B("a") n = B("n") m = A("m") f = A("f") h = A("h") i = A("i") j.y = m j.u = f g.v = f b.v = j a.v = i n.v = i m.y = f m.u = h f.y = j f.u = m h.y = m h.u = m i.y = f i.u = f assert i.u.u.u.u.y.txt == "
f"
class A: def __init__(self, txt: str): self.y: A = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt j = A("j") g = B("g") b = B("b") a = B("a") n = B("n") m = A("m") f = A("f") h = A("h") i = A("i") j.y = m j.u = f g.v = f b.v = j a.v = i n.v = i m.y = f m.u = h f.y = j f.u = m h.y = m h.u = m i.y = f i.u = f assert i.u.u.u.u.y.txt == "f"
9
12
1.333333
0.166667
2
4.5
2
1
1.5
5
2
1
4
0.444444
5
0.416667
2
2
4
3
2
4
4
2
731
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt j = A("j") l = B("l") c = A("c") n = B("n") f = A("f") g = A("g") a = B("a") m = A("m") j.q = l l.t = f c.q = n n.t = m f.q = a g.q = n a.t = f m.q = l assert c.q.t.q.t.q.t.txt == "
f"
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt j = A("j") l = B("l") c = A("c") n = B("n") f = A("f") g = A("g") a = B("a") m = A("m") j.q = l l.t = f c.q = n n.t = m f.q = a g.q = n a.t = f m.q = l assert c.q.t.q.t.q.t.txt == "f"
8
8
1
0.142857
2
4
1
1
1
6
2
1
6
0.75
6
0.75
1
2
2
2
2
3
1
1
732
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.v: A = None self.txt = txt g = A("g") h = B("h") l = B("l") g.s = h h.r = g h.v = g l.r = g l.v = g assert g.s.v.s.txt == "
h"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.v: A = None self.txt = txt g = A("g") h = B("h") l = B("l") g.s = h h.r = g h.v = g l.r = g l.v = g assert g.s.v.s.txt == "h"
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
733
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt i = A("i") k = B("k") c = A("c") b = B("b") h = B("h") e = A("e") g = B("g") i.p = e k.w = i c.p = i b.w = c h.w = e e.p = c g.w = c assert k.w.p.p.p.p.p.p.txt == "
i"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt i = A("i") k = B("k") c = A("c") b = B("b") h = B("h") e = A("e") g = B("g") i.p = e k.w = i c.p = i b.w = c h.w = e e.p = c g.w = c assert k.w.p.p.p.p.p.p.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
734
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.p: A = None self.txt = txt m = A("m") k = B("k") i = B("i") b = A("b") f = B("f") l = A("l") j = B("j") m.z = f k.r = b k.p = b i.r = m i.p = m b.z = k f.r = l f.p = b l.z = f j.r = m j.p = l assert l.z.r.z.txt == "
f"
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.p: A = None self.txt = txt m = A("m") k = B("k") i = B("i") b = A("b") f = B("f") l = A("l") j = B("j") m.z = f k.r = b k.p = b i.r = m i.p = m b.z = k f.r = l f.p = b l.z = f j.r = m j.p = l assert l.z.r.z.txt == "f"
7
9
1.285714
0.214286
2
3.5
2
1
1.5
3
2
2
2
0.285714
2
0.222222
2
2
2
2
2
2
1
1
735
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.u: A = None self.txt = txt h = A("h") n = B("n") l = B("l") b = A("b") d = A("d") a = B("a") h.z = a n.q = a n.u = h l.q = a l.u = h b.z = a d.z = a a.q = n a.u = h assert h.z.u.z.txt == "
a"
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.u: A = None self.txt = txt h = A("h") n = B("n") l = B("l") b = A("b") d = A("d") a = B("a") h.z = a n.q = a n.u = h l.q = a l.u = h b.z = a d.z = a a.q = n a.u = h assert h.z.u.z.txt == "a"
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
2
2
1
1
736
class A: def __init__(self, txt: str): self.o: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt n = A("n") l = B("l") i = B("i") b = A("b") n.o = i n.w = b l.r = n i.r = n b.o = i b.w = n assert n.w.w.w.txt == "
b"
class A: def __init__(self, txt: str): self.o: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt n = A("n") l = B("l") i = B("i") b = A("b") n.o = i n.w = b l.r = n i.r = n b.o = i b.w = n assert n.w.w.w.txt == "b"
4
6
1.5
0.5
2
2
2
1
1.5
3
2
2
2
0.5
2
0.333333
2
2
2
2
1
3
3
1
737
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 n = A("n") i = B("i") h = B("h") k = A("k") c = B("c") d = A("d") l = B("l") n.p = d i.v = n h.v = d k.p = d c.v = n d.p = k l.v = n assert n.p.p.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.v: A = None self.txt = txt n = A("n") i = B("i") h = B("h") k = A("k") c = B("c") d = A("d") l = B("l") n.p = d i.v = n h.v = d k.p = d c.v = n d.p = k l.v = n assert n.p.p.p.p.txt == "k"
7
7
1
0.166667
2
3.5
1
1
1
4
2
2
3
0.428571
3
0.428571
2
2
2
2
1
4
4
1
738
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.txt = txt k = A("k") n = B("n") l = A("l") h = B("h") c = B("c") i = A("i") m = B("m") k.u = i n.v = m l.u = k h.v = n c.v = m i.u = l m.v = c assert l.u.u.u.u.u.txt == "
i"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.txt = txt k = A("k") n = B("n") l = A("l") h = B("h") c = B("c") i = A("i") m = B("m") k.u = i n.v = m l.u = k h.v = n c.v = m i.u = l m.v = c assert l.u.u.u.u.u.txt == "i"
7
7
1
0.166667
2
3.5
1
1
1
5
2
2
3
0.428571
3
0.428571
3
3
3
3
1
5
5
1
739
class A: def __init__(self, txt: str): self.o: B = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt c = A("c") f = B("f") a = B("a") g = B("g") c.o = f c.s = a f.r = c a.r = c g.r = c assert f.r.s.r.txt == "
c"
class A: def __init__(self, txt: str): self.o: B = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt c = A("c") f = B("f") a = B("a") g = B("g") c.o = f c.s = a f.r = c a.r = c g.r = c assert f.r.s.r.txt == "c"
4
5
1.25
0.416667
2
2
2
1
1.5
3
2
1
3
0.75
3
0.6
1
2
2
2
2
2
1
1
740
class A: def __init__(self, txt: str): self.p: B = None 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 d = A("d") i = B("i") a = B("a") f = A("f") j = A("j") h = B("h") d.p = h d.q = j i.p = d i.r = d a.p = d a.r = j f.p = h f.q = j j.p = i j.q = f h.p = d h.r = j assert h.r.p.r.p.r.q.txt == "
f"
class A: def __init__(self, txt: str): self.p: B = None 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 d = A("d") i = B("i") a = B("a") f = A("f") j = A("j") h = B("h") d.p = h d.q = j i.p = d i.r = d a.p = d a.r = j f.p = h f.q = j j.p = i j.q = f h.p = d h.r = j assert h.r.p.r.p.r.q.txt == "f"
6
11
1.833333
0.366667
2
3
2
2
2
6
2
2
5
0.833333
5
0.454545
2
4
4
4
3
3
1
2
741
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.z: A = None self.txt = txt h = A("h") a = B("a") g = B("g") f = A("f") h.p = f a.u = f a.z = f g.u = h g.z = f f.p = h assert a.z.p.p.txt == "
f"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.z: A = None self.txt = txt h = A("h") a = B("a") g = B("g") f = A("f") h.p = f a.u = f a.z = f g.u = h g.z = f f.p = h assert a.z.p.p.txt == "f"
4
5
1.25
0.416667
2
2
2
1
1.5
3
2
1
3
0.75
3
0.6
1
2
2
2
2
2
2
1
742
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.x: B = None self.txt = txt g = A("g") b = B("b") e = B("e") i = A("i") m = B("m") g.o = i b.y = i b.x = e e.y = g e.x = b i.o = g m.y = g m.x = e assert m.x.y.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.y: A = None self.x: B = None self.txt = txt g = A("g") b = B("b") e = B("e") i = A("i") m = B("m") g.o = i b.y = i b.x = e e.y = g e.x = b i.o = g m.y = g m.x = e assert m.x.y.o.o.o.txt == "i"
5
8
1.6
0.4
2
2.5
2
1
1.5
5
2
2
4
0.8
4
0.5
2
2
2
2
3
3
3
1
743
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt i = A("i") n = B("n") l = B("l") i.t = l n.o = i l.o = i assert n.o.t.o.txt == "
i"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt i = A("i") n = B("n") l = B("l") i.t = l n.o = i l.o = i assert n.o.t.o.txt == "i"
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
744
class A: def __init__(self, txt: str): self.o: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt c = A("c") g = B("g") e = B("e") i = B("i") h = A("h") d = B("d") j = B("j") m = A("m") c.o = g c.w = m g.o = i e.o = g i.o = g h.o = j h.w = c d.o = j j.o = g m.o = e m.w = c assert h.w.w.w.w.o.o.o.txt == "
i"
class A: def __init__(self, txt: str): self.o: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt c = A("c") g = B("g") e = B("e") i = B("i") h = A("h") d = B("d") j = B("j") m = A("m") c.o = g c.w = m g.o = i e.o = g i.o = g h.o = j h.w = c d.o = j j.o = g m.o = e m.w = c assert h.w.w.w.w.o.o.o.txt == "i"
8
11
1.375
0.196429
2
4
2
1
1.5
7
2
2
6
0.75
6
0.545455
2
2
2
2
2
4
4
2
745
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.w: B = None self.txt = txt k = A("k") j = B("j") e = B("e") g = B("g") k.r = g j.v = e j.w = e e.v = g e.w = j g.v = e g.w = e assert j.w.v.w.txt == "
e"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.w: B = None self.txt = txt k = A("k") j = B("j") e = B("e") g = B("g") k.r = g j.v = e j.w = e e.v = g e.w = j g.v = e g.w = e assert j.w.v.w.txt == "e"
4
5
1.25
0.416667
2
2
2
1
1.5
3
2
1
3
0.75
3
0.6
1
2
2
2
2
2
1
1
746
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt e = A("e") j = B("j") h = A("h") b = A("b") g = B("g") f = A("f") d = A("d") n = B("n") c = B("c") i = A("i") e.w = b j.t = e h.w = d b.w = i g.t = f f.w = d d.w = i n.t = h c.t = d i.w = h assert i.w.w.w.w.w.w.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.t: A = None self.txt = txt e = A("e") j = B("j") h = A("h") b = A("b") g = B("g") f = A("f") d = A("d") n = B("n") c = B("c") i = A("i") e.w = b j.t = e h.w = d b.w = i g.t = f f.w = d d.w = i n.t = h c.t = d i.w = h assert i.w.w.w.w.w.w.w.w.w.w.txt == "h"
10
10
1
0.111111
2
5
1
1
1
10
4
4
3
0.3
3
0.3
8
3
9
4.8
1
10
10
1
747
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.txt = txt k = A("k") l = B("l") c = B("c") m = A("m") d = A("d") b = A("b") i = A("i") k.q = b l.z = k c.z = k m.q = i d.q = m b.q = i i.q = k assert m.q.q.q.txt == "
b"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt k = A("k") l = B("l") c = B("c") m = A("m") d = A("d") b = A("b") i = A("i") k.q = b l.z = k c.z = k m.q = i d.q = m b.q = i i.q = k assert m.q.q.q.txt == "b"
7
7
1
0.166667
2
3.5
1
1
1
3
1
1
4
0.571429
3
0.428571
0
null
null
null
1
3
3
1
748
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt f = A("f") k = B("k") h = B("h") f.v = k k.s = h h.s = k assert h.s.s.s.txt == "
k"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt f = A("f") k = B("k") h = B("h") f.v = k k.s = h h.s = k assert h.s.s.s.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
1
3
3
1
749
class A: def __init__(self, txt: str): self.t: B = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.v: A = None self.txt = txt j = A("j") b = B("b") d = A("d") j.t = b j.z = b b.p = d b.v = d d.t = b d.z = b assert j.t.p.z.txt == "
b"
class A: def __init__(self, txt: str): self.t: B = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.v: A = None self.txt = txt j = A("j") b = B("b") d = A("d") j.t = b j.z = b b.p = d b.v = d d.t = b d.z = b assert j.t.p.z.txt == "b"
3
3
1
0.5
2
1.5
2
2
2
3
2
1
3
1
3
1
1
2
2
2
3
1
1
1
750
class A: def __init__(self, txt: str): self.r: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.w: B = None self.txt = txt k = A("k") i = B("i") g = A("g") n = A("n") j = B("j") k.r = i k.x = i i.t = k i.w = j g.r = i g.x = i n.r = j n.x = j j.t = n j.w = i assert k.r.t.r.txt == "
i"
class A: def __init__(self, txt: str): self.r: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.w: B = None self.txt = txt k = A("k") i = B("i") g = A("g") n = A("n") j = B("j") k.r = i k.x = i i.t = k i.w = j g.r = i g.x = i n.r = j n.x = j j.t = n j.w = i assert k.r.t.r.txt == "i"
5
7
1.4
0.35
2
2.5
2
2
2
3
2
2
2
0.4
2
0.285714
2
2
2
2
2
2
1
1
751
class A: def __init__(self, txt: str): self.r: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt a = A("a") c = B("c") i = B("i") j = A("j") f = A("f") a.r = c a.y = i c.x = i i.x = c j.r = c j.y = c f.r = i f.y = i assert j.y.x.x.txt == "
c"
class A: def __init__(self, txt: str): self.r: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt a = A("a") c = B("c") i = B("i") j = A("j") f = A("f") a.r = c a.y = i c.x = i i.x = c j.r = c j.y = c f.r = i f.y = i assert j.y.x.x.txt == "c"
5
6
1.2
0.3
2
2.5
2
1
1.5
3
2
1
3
0.6
3
0.5
1
2
2
2
2
2
2
1
752
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.u: B = None self.txt = txt j = A("j") c = B("c") a = A("a") g = A("g") n = A("n") l = A("l") f = B("f") j.u = c c.t = f c.u = f a.u = f g.u = f n.u = c l.u = c f.t = c f.u = c assert a.u.t.u.u.t.txt == "
f"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.u: B = None self.txt = txt j = A("j") c = B("c") a = A("a") g = A("g") n = A("n") l = A("l") f = B("f") j.u = c c.t = f c.u = f a.u = f g.u = f n.u = c l.u = c f.t = c f.u = c assert a.u.t.u.u.t.txt == "f"
7
7
1
0.166667
2
3.5
2
1
1.5
5
3
1
3
0.428571
5
0.714286
3
2
4
2.5
2
3
2
2
753
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.t: B = None self.txt = txt l = A("l") m = B("m") e = A("e") d = A("d") c = A("c") j = A("j") i = B("i") l.u = d m.p = i m.t = i e.u = l d.u = e c.u = e j.u = e i.p = m i.t = m assert c.u.u.u.u.txt == "
e"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.t: B = None self.txt = txt l = A("l") m = B("m") e = A("e") d = A("d") c = A("c") j = A("j") i = B("i") l.u = d m.p = i m.t = i e.u = l d.u = e c.u = e j.u = e i.p = m i.t = m assert c.u.u.u.u.txt == "e"
7
7
1
0.166667
2
3.5
2
1
1.5
4
2
1
4
0.571429
4
0.571429
1
3
3
3
1
4
4
1
754
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt h = A("h") d = B("d") b = B("b") j = A("j") f = A("f") m = B("m") h.y = j d.s = b b.s = d j.y = f f.y = j m.s = b assert f.y.y.y.y.y.y.txt == "
f"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt h = A("h") d = B("d") b = B("b") j = A("j") f = A("f") m = B("m") h.y = j d.s = b b.s = d j.y = f f.y = j m.s = b assert f.y.y.y.y.y.y.txt == "f"
6
6
1
0.2
2
3
1
1
1
6
4
3
2
0.333333
2
0.333333
5
2
6
3.111111
1
6
6
1
755
class A: def __init__(self, txt: str): self.v: B = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt h = A("h") m = B("m") b = A("b") l = A("l") e = A("e") g = B("g") k = A("k") h.v = g h.u = k m.z = k b.v = g b.u = l l.v = m l.u = e e.v = g e.u = k g.z = k k.v = m k.u = h assert l.u.u.u.txt == "
h"
class A: def __init__(self, txt: str): self.v: B = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt h = A("h") m = B("m") b = A("b") l = A("l") e = A("e") g = B("g") k = A("k") h.v = g h.u = k m.z = k b.v = g b.u = l l.v = m l.u = e e.v = g e.u = k g.z = k k.v = m k.u = h assert l.u.u.u.txt == "h"
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
756
class A: def __init__(self, txt: str): self.s: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt g = A("g") i = B("i") k = A("k") e = B("e") f = B("f") g.s = k g.w = f i.w = f k.s = g k.w = f e.w = f f.w = i assert f.w.w.w.w.txt == "
f"
class A: def __init__(self, txt: str): self.s: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt g = A("g") i = B("i") k = A("k") e = B("e") f = B("f") g.s = k g.w = f i.w = f k.s = g k.w = f e.w = f f.w = i assert f.w.w.w.w.txt == "f"
5
7
1.4
0.35
2
2.5
2
1
1.5
4
3
2
2
0.4
2
0.285714
3
2
4
2.5
1
4
4
1
757
class A: def __init__(self, txt: str): self.o: B = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt d = A("d") e = B("e") a = B("a") b = B("b") c = B("c") d.o = c d.t = c e.r = d a.r = d b.r = d c.r = d assert b.r.o.r.o.txt == "
c"
class A: def __init__(self, txt: str): self.o: B = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt d = A("d") e = B("e") a = B("a") b = B("b") c = B("c") d.o = c d.t = c e.r = d a.r = d b.r = d c.r = d assert b.r.o.r.o.txt == "c"
5
5
1
0.25
2
2.5
2
1
1.5
4
2
2
3
0.6
3
0.6
2
2
2
2
2
2
1
1
758
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.v: A = None self.txt = txt c = A("c") e = B("e") a = A("a") n = B("n") f = B("f") i = B("i") m = A("m") d = A("d") b = B("b") l = A("l") c.t = a e.q = c e.v = a a.t = m n.q = c n.v = l f.q = l f.v = d i.q = m i.v = m m.t = c d.t = m b.q = c b.v = d l.t = m assert n.q.t.t.t.t.t.t.t.txt == "
a"
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.v: A = None self.txt = txt c = A("c") e = B("e") a = A("a") n = B("n") f = B("f") i = B("i") m = A("m") d = A("d") b = B("b") l = A("l") c.t = a e.q = c e.v = a a.t = m n.q = c n.v = l f.q = l f.v = d i.q = m i.v = m m.t = c d.t = m b.q = c b.v = d l.t = m assert n.q.t.t.t.t.t.t.t.txt == "a"
10
14
1.4
0.155556
2
5
2
1
1.5
8
3
3
4
0.4
4
0.285714
5
3
6
3.857143
2
7
7
1
759
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.q: A = None self.txt = txt b = A("b") j = B("j") c = A("c") f = B("f") h = B("h") b.v = c j.z = f j.q = b c.v = b f.z = j f.q = c h.z = f h.q = c assert j.q.v.v.v.txt == "
c"
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.q: A = None self.txt = txt b = A("b") j = B("j") c = A("c") f = B("f") h = B("h") b.v = c j.z = f j.q = b c.v = b f.z = j f.q = c h.z = f h.q = c assert j.q.v.v.v.txt == "c"
5
8
1.6
0.4
2
2.5
2
1
1.5
4
2
2
3
0.6
3
0.375
2
2
2
2
2
3
3
1
760
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.p: A = None self.txt = txt b = A("b") m = B("m") d = A("d") j = B("j") b.o = d m.s = j m.p = d d.o = b j.s = m j.p = d assert d.o.o.o.txt == "
b"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.p: A = None self.txt = txt b = A("b") m = B("m") d = A("d") j = B("j") b.o = d m.s = j m.p = d d.o = b j.s = m j.p = d assert d.o.o.o.txt == "b"
4
6
1.5
0.5
2
2
2
1
1.5
3
2
2
2
0.5
2
0.333333
2
2
2
2
1
3
3
1
761
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.x: A = None self.txt = txt l = A("l") m = B("m") a = B("a") g = B("g") e = A("e") c = A("c") f = A("f") l.q = a m.y = f m.x = f a.y = e a.x = l g.y = l g.x = c e.q = a c.q = m f.q = m assert f.q.y.q.y.txt == "
f"
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.x: A = None self.txt = txt l = A("l") m = B("m") a = B("a") g = B("g") e = A("e") c = A("c") f = A("f") l.q = a m.y = f m.x = f a.y = e a.x = l g.y = l g.x = c e.q = a c.q = m f.q = m assert f.q.y.q.y.txt == "f"
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
2
2
1
1
762
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.z: A = None self.txt = txt e = A("e") m = B("m") i = B("i") g = A("g") a = A("a") l = A("l") n = A("n") c = A("c") b = A("b") k = B("k") e.t = k m.x = n m.z = n i.x = a i.z = a g.t = m a.t = i l.t = k n.t = m c.t = i b.t = m k.x = c k.z = n assert k.x.t.x.txt == "
a"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.z: A = None self.txt = txt e = A("e") m = B("m") i = B("i") g = A("g") a = A("a") l = A("l") n = A("n") c = A("c") b = A("b") k = B("k") e.t = k m.x = n m.z = n i.x = a i.z = a g.t = m a.t = i l.t = k n.t = m c.t = i b.t = m k.x = c k.z = n assert k.x.t.x.txt == "a"
10
11
1.1
0.122222
2
5
2
1
1.5
3
1
1
4
0.4
3
0.272727
0
null
null
null
2
2
1
1
763
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt f = A("f") j = B("j") l = B("l") e = B("e") c = A("c") i = A("i") d = B("d") f.z = c j.x = i l.x = f e.x = c c.z = i i.z = f d.x = i assert j.x.z.z.z.z.z.z.txt == "
i"
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt f = A("f") j = B("j") l = B("l") e = B("e") c = A("c") i = A("i") d = B("d") f.z = c j.x = i l.x = f e.x = c c.z = i i.z = f d.x = i assert j.x.z.z.z.z.z.z.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
764
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.p: A = None self.txt = txt k = A("k") g = B("g") i = B("i") j = B("j") f = B("f") a = A("a") l = A("l") b = B("b") k.t = a k.y = i g.p = l i.p = a j.p = l f.p = k a.t = k a.y = g l.t = a l.y = b b.p = a assert l.t.t.y.p.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.p: A = None self.txt = txt k = A("k") g = B("g") i = B("i") j = B("j") f = B("f") a = A("a") l = A("l") b = B("b") k.t = a k.y = i g.p = l i.p = a j.p = l f.p = k a.t = k a.y = g l.t = a l.y = b b.p = a assert l.t.t.y.p.t.y.txt == "i"
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
3
3
2
1
765
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt g = A("g") c = B("c") h = B("h") g.o = c c.p = g h.p = g assert h.p.o.p.txt == "
g"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt g = A("g") c = B("c") h = B("h") g.o = c c.p = g h.p = g assert h.p.o.p.txt == "g"
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
766
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.t: B = None self.txt = txt e = A("e") l = B("l") k = A("k") h = B("h") a = B("a") i = B("i") n = A("n") c = A("c") f = A("f") b = A("b") e.o = h l.q = i l.t = a k.o = l h.q = l h.t = i a.q = h a.t = l i.q = l i.t = l n.o = h c.o = a f.o = a b.o = a assert a.t.q.t.q.t.q.q.t.t.txt == "
l"
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.t: B = None self.txt = txt e = A("e") l = B("l") k = A("k") h = B("h") a = B("a") i = B("i") n = A("n") c = A("c") f = A("f") b = A("b") e.o = h l.q = i l.t = a k.o = l h.q = l h.t = i a.q = h a.t = l i.q = l i.t = l n.o = h c.o = a f.o = a b.o = a assert a.t.q.t.q.t.q.q.t.t.txt == "l"
10
13
1.3
0.144444
2
5
2
1
1.5
9
5
3
3
0.3
5
0.384615
7
2
8
4
2
5
2
2
767
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt i = A("i") f = B("f") l = B("l") h = A("h") m = B("m") g = B("g") a = A("a") b = A("b") i.y = f f.z = h l.z = b h.y = f m.z = h g.z = h a.y = g b.y = m assert l.z.y.z.y.z.y.z.y.txt == "
f"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt i = A("i") f = B("f") l = B("l") h = A("h") m = B("m") g = B("g") a = A("a") b = A("b") i.y = f f.z = h l.z = b h.y = f m.z = h g.z = h a.y = g b.y = m assert l.z.y.z.y.z.y.z.y.txt == "f"
8
8
1
0.142857
2
4
1
1
1
8
3
3
5
0.625
5
0.625
4
2
4
2.666667
2
4
1
1
768
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.p: A = None self.txt = txt l = A("l") a = B("a") b = A("b") e = A("e") k = B("k") f = B("f") j = B("j") i = B("i") l.v = b a.q = i a.p = e b.v = e e.v = b k.q = j k.p = e f.q = i f.p = l j.q = f j.p = b i.q = k i.p = e assert l.v.v.v.v.v.v.txt == "
e"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.p: A = None self.txt = txt l = A("l") a = B("a") b = A("b") e = A("e") k = B("k") f = B("f") j = B("j") i = B("i") l.v = b a.q = i a.p = e b.v = e e.v = b k.q = j k.p = e f.q = i f.p = l j.q = f j.p = b i.q = k i.p = e assert l.v.v.v.v.v.v.txt == "e"
8
13
1.625
0.232143
2
4
2
1
1.5
6
3
3
3
0.375
3
0.230769
4
2
4
2.666667
1
6
6
1
769
class A: def __init__(self, txt: str): self.x: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt i = A("i") b = B("b") c = A("c") e = A("e") g = B("g") a = A("a") i.x = a i.w = g b.z = g c.x = e c.w = g e.x = c e.w = b g.z = b a.x = c a.w = g assert a.x.w.z.txt == "
b"
class A: def __init__(self, txt: str): self.x: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt i = A("i") b = B("b") c = A("c") e = A("e") g = B("g") a = A("a") i.x = a i.w = g b.z = g c.x = e c.w = g e.x = c e.w = b g.z = b a.x = c a.w = g assert a.x.w.z.txt == "b"
6
10
1.666667
0.333333
2
3
2
1
1.5
3
1
1
4
0.666667
3
0.3
0
null
null
null
3
1
1
1
770
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.x: A = None self.txt = txt f = A("f") a = B("a") k = B("k") f.o = k a.v = f a.x = f k.v = f k.x = f assert k.x.o.x.txt == "
f"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.x: A = None self.txt = txt f = A("f") a = B("a") k = B("k") f.o = k a.v = f a.x = f k.v = f k.x = f assert k.x.o.x.txt == "f"
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
771
class A: def __init__(self, txt: str): self.y: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt f = A("f") m = B("m") a = A("a") b = A("b") k = A("k") g = A("g") l = B("l") d = A("d") j = A("j") i = B("i") f.y = g f.p = i m.p = j a.y = d a.p = i b.y = g b.p = i k.y = a k.p = i g.y = f g.p = i l.p = b d.y = b d.p = m j.y = f j.p = i i.p = k assert f.p.p.p.p.p.p.p.p.txt == "
k"
class A: def __init__(self, txt: str): self.y: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt f = A("f") m = B("m") a = A("a") b = A("b") k = A("k") g = A("g") l = B("l") d = A("d") j = A("j") i = B("i") f.y = g f.p = i m.p = j a.y = d a.p = i b.y = g b.p = i k.y = a k.p = i g.y = f g.p = i l.p = b d.y = b d.p = m j.y = f j.p = i i.p = k assert f.p.p.p.p.p.p.p.p.txt == "k"
10
17
1.7
0.188889
2
5
2
1
1.5
8
4
4
3
0.3
3
0.176471
6
2
6
3.333333
1
8
8
1
772
class A: def __init__(self, txt: str): self.p: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt e = A("e") a = B("a") f = B("f") e.p = a e.o = f a.w = f f.w = a assert e.p.w.w.txt == "
a"
class A: def __init__(self, txt: str): self.p: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt e = A("e") a = B("a") f = B("f") e.p = a e.o = f a.w = f f.w = a assert e.p.w.w.txt == "a"
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
2
1
773
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: B = None self.txt = txt d = A("d") l = B("l") m = B("m") c = A("c") k = A("k") d.x = m d.r = c l.s = m m.s = l c.x = m c.r = d k.x = l k.r = d assert m.s.s.s.txt == "
l"
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: B = None self.txt = txt d = A("d") l = B("l") m = B("m") c = A("c") k = A("k") d.x = m d.r = c l.s = m m.s = l c.x = m c.r = d k.x = l k.r = d assert m.s.s.s.txt == "l"
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
774
class A: def __init__(self, txt: str): self.z: A = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.r: A = None self.txt = txt m = A("m") h = B("h") i = B("i") k = B("k") a = A("a") g = A("g") b = B("b") e = A("e") n = B("n") d = B("d") m.z = e m.s = a h.v = a h.r = g i.v = g i.r = a k.v = a k.r = a a.z = g a.s = m g.z = a g.s = e b.v = m b.r = g e.z = g e.s = g n.v = m n.r = a d.v = m d.r = e assert b.v.z.s.z.s.s.txt == "
a"
class A: def __init__(self, txt: str): self.z: A = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.r: A = None self.txt = txt m = A("m") h = B("h") i = B("i") k = B("k") a = A("a") g = A("g") b = B("b") e = A("e") n = B("n") d = B("d") m.z = e m.s = a h.v = a h.r = g i.v = g i.r = a k.v = a k.r = a a.z = g a.s = m g.z = a g.s = e b.v = m b.r = g e.z = g e.s = g n.v = m n.r = a d.v = m d.r = e assert b.v.z.s.z.s.s.txt == "a"
10
18
1.8
0.2
2
5
2
2
2
6
2
1
5
0.5
6
0.333333
2
2
4
3
3
3
2
2
775
class A: def __init__(self, txt: str): self.q: A = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt j = A("j") k = B("k") l = B("l") e = A("e") f = A("f") g = B("g") i = A("i") c = A("c") d = A("d") a = A("a") j.q = a j.z = l k.t = g l.t = g e.q = f e.z = g f.q = j f.z = g g.t = l i.q = j i.z = g c.q = i c.z = g d.q = e d.z = l a.q = i a.z = l assert f.z.t.t.t.txt == "
l"
class A: def __init__(self, txt: str): self.q: A = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt j = A("j") k = B("k") l = B("l") e = A("e") f = A("f") g = B("g") i = A("i") c = A("c") d = A("d") a = A("a") j.q = a j.z = l k.t = g l.t = g e.q = f e.z = g f.q = j f.z = g g.t = l i.q = j i.z = g c.q = i c.z = g d.q = e d.z = l a.q = i a.z = l assert f.z.t.t.t.txt == "l"
10
17
1.7
0.188889
2
5
2
1
1.5
4
2
2
3
0.3
3
0.176471
2
2
2
2
2
3
3
1
776
class A: def __init__(self, txt: str): self.y: A = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.u: B = None self.txt = txt d = A("d") h = B("h") e = A("e") l = B("l") d.y = e d.t = h h.p = e h.u = l e.y = d e.t = l l.p = d l.u = h assert e.t.p.t.p.txt == "
e"
class A: def __init__(self, txt: str): self.y: A = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.u: B = None self.txt = txt d = A("d") h = B("h") e = A("e") l = B("l") d.y = e d.t = h h.p = e h.u = l e.y = d e.t = l l.p = d l.u = h assert e.t.p.t.p.txt == "e"
4
8
2
0.666667
2
2
2
2
2
4
2
1
4
1
4
0.5
1
4
4
4
2
2
1
1
777
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt b = A("b") l = B("l") i = A("i") e = B("e") m = A("m") b.y = e l.q = i i.y = l e.q = m m.y = l assert l.q.y.q.txt == "
i"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt b = A("b") l = B("l") i = A("i") e = B("e") m = A("m") b.y = e l.q = i i.y = l e.q = m m.y = l assert l.q.y.q.txt == "i"
5
5
1
0.25
2
2.5
1
1
1
3
2
2
2
0.4
2
0.4
2
2
2
2
2
2
1
1
778
class A: def __init__(self, txt: str): self.s: A = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.txt = txt e = A("e") b = B("b") c = A("c") j = A("j") a = A("a") d = B("d") h = A("h") f = B("f") k = A("k") e.s = k e.z = f b.v = f c.s = j c.z = d j.s = c j.z = b a.s = e a.z = b d.v = f h.s = a h.z = f f.v = d k.s = e k.z = d assert k.s.s.z.v.v.v.v.v.v.txt == "
d"
class A: def __init__(self, txt: str): self.s: A = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.txt = txt e = A("e") b = B("b") c = A("c") j = A("j") a = A("a") d = B("d") h = A("h") f = B("f") k = A("k") e.s = k e.z = f b.v = f c.s = j c.z = d j.s = c j.z = b a.s = e a.z = b d.v = f h.s = a h.z = f f.v = d k.s = e k.z = d assert k.s.s.z.v.v.v.v.v.v.txt == "d"
9
15
1.666667
0.208333
2
4.5
2
1
1.5
9
4
3
4
0.444444
5
0.333333
6
2
6
3
3
6
6
2
779
class A: def __init__(self, txt: str): self.r: B = None 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 h = A("h") n = B("n") j = B("j") a = A("a") f = A("f") b = B("b") e = A("e") g = B("g") c = B("c") h.r = c h.x = a n.o = j n.v = f j.o = n j.v = h a.r = j a.x = e f.r = n f.x = e b.o = g b.v = a e.r = c e.x = f g.o = j g.v = h c.o = n c.v = h assert n.o.o.v.txt == "
f"
class A: def __init__(self, txt: str): self.r: B = None 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 h = A("h") n = B("n") j = B("j") a = A("a") f = A("f") b = B("b") e = A("e") g = B("g") c = B("c") h.r = c h.x = a n.o = j n.v = f j.o = n j.v = h a.r = j a.x = e f.r = n f.x = e b.o = g b.v = a e.r = c e.x = f g.o = j g.v = h c.o = n c.v = h assert n.o.o.v.txt == "f"
9
18
2
0.25
2
4.5
2
2
2
3
2
1
3
0.333333
3
0.166667
1
2
2
2
2
2
2
2
780
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.v: A = None self.txt = txt g = A("g") b = B("b") d = A("d") c = B("c") k = A("k") m = B("m") h = B("h") n = B("n") g.x = m b.x = d b.v = d d.x = h c.x = g c.v = g k.x = n m.x = g m.v = d h.x = g h.v = k n.x = g n.v = d assert k.x.x.x.v.x.v.x.v.txt == "
d"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.v: A = None self.txt = txt g = A("g") b = B("b") d = A("d") c = B("c") k = A("k") m = B("m") h = B("h") n = B("n") g.x = m b.x = d b.v = d d.x = h c.x = g c.v = g k.x = n m.x = g m.v = d h.x = g h.v = k n.x = g n.v = d assert k.x.x.x.v.x.v.x.v.txt == "d"
8
11
1.375
0.196429
2
4
2
1
1.5
8
2
2
6
0.75
7
0.636364
3
4
6
5.333333
2
5
3
2
781
class A: def __init__(self, txt: str): self.w: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt d = A("d") a = B("a") f = A("f") g = A("g") d.w = g d.x = f a.w = g f.w = d f.x = d g.w = f g.x = d assert f.x.w.w.x.txt == "
d"
class A: def __init__(self, txt: str): self.w: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt d = A("d") a = B("a") f = A("f") g = A("g") d.w = g d.x = f a.w = g f.w = d f.x = d g.w = f g.x = d assert f.x.w.w.x.txt == "d"
4
6
1.5
0.5
2
2
2
1
1.5
4
2
2
3
0.75
3
0.5
2
3
3
3
2
2
2
1
782
class A: def __init__(self, txt: str): self.y: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.s: A = None self.txt = txt d = A("d") j = B("j") l = A("l") f = B("f") c = B("c") d.y = l d.q = f j.q = d j.s = l l.y = d l.q = j f.q = d f.s = d c.q = d c.s = l assert l.q.s.q.s.y.txt == "
d"
class A: def __init__(self, txt: str): self.y: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.s: A = None self.txt = txt d = A("d") j = B("j") l = A("l") f = B("f") c = B("c") d.y = l d.q = f j.q = d j.s = l l.y = d l.q = j f.q = d f.s = d c.q = d c.s = l assert l.q.s.q.s.y.txt == "d"
5
9
1.8
0.45
2
2.5
2
2
2
5
3
2
3
0.6
3
0.333333
3
2
4
2.5
3
2
1
2
783
class A: def __init__(self, txt: str): self.p: B = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.p: B = None self.txt = txt h = A("h") c = B("c") a = B("a") h.p = a h.z = a c.u = h c.p = a a.u = h a.p = c assert a.u.z.u.txt == "
h"
class A: def __init__(self, txt: str): self.p: B = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.p: B = None self.txt = txt h = A("h") c = B("c") a = B("a") h.p = a h.z = a c.u = h c.p = a a.u = h a.p = c assert a.u.z.u.txt == "h"
3
5
1.666667
0.833333
2
1.5
2
2
2
3
2
2
2
0.666667
2
0.4
2
2
2
2
2
2
1
1
784
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt b = A("b") j = B("j") a = B("a") b.w = a j.s = b a.s = b assert a.s.w.s.txt == "
b"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt b = A("b") j = B("j") a = B("a") b.w = a j.s = b a.s = b assert a.s.w.s.txt == "b"
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
785
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.q: A = None self.txt = txt l = A("l") m = B("m") a = A("a") g = A("g") l.p = a l.q = a m.q = l a.p = l a.q = g g.p = a g.q = a assert m.q.p.p.q.txt == "
a"
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.q: A = None self.txt = txt l = A("l") m = B("m") a = A("a") g = A("g") l.p = a l.q = a m.q = l a.p = l a.q = g g.p = a g.q = a assert m.q.p.p.q.txt == "a"
4
5
1.25
0.416667
2
2
2
1
1.5
4
2
1
3
0.75
4
0.8
2
2
2
2
2
2
2
2
786
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt l = A("l") i = B("i") b = B("b") n = A("n") c = A("c") d = B("d") e = A("e") k = B("k") l.u = b i.w = k b.w = d n.u = b c.u = b d.w = i e.u = b k.w = i assert l.u.w.w.w.txt == "
k"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt l = A("l") i = B("i") b = B("b") n = A("n") c = A("c") d = B("d") e = A("e") k = B("k") l.u = b i.w = k b.w = d n.u = b c.u = b d.w = i e.u = b k.w = i assert l.u.w.w.w.txt == "k"
8
8
1
0.142857
2
4
1
1
1
4
1
1
5
0.625
4
0.5
0
null
null
null
2
3
3
1
787
class A: def __init__(self, txt: str): self.s: A = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt e = A("e") j = B("j") h = A("h") b = B("b") f = A("f") g = A("g") l = B("l") e.s = f e.u = h j.t = h h.s = f h.u = e b.t = e f.s = g f.u = e g.s = f g.u = h l.t = g assert l.t.s.u.s.u.txt == "
e"
class A: def __init__(self, txt: str): self.s: A = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt e = A("e") j = B("j") h = A("h") b = B("b") f = A("f") g = A("g") l = B("l") e.s = f e.u = h j.t = h h.s = f h.u = e b.t = e f.s = g f.u = e g.s = f g.u = h l.t = g assert l.t.s.u.s.u.txt == "e"
7
11
1.571429
0.261905
2
3.5
2
1
1.5
5
2
2
4
0.571429
4
0.363636
2
2
2
2
3
2
1
1
788
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt b = A("b") i = B("i") f = A("f") d = B("d") n = A("n") j = A("j") b.s = n i.w = d f.s = j d.w = i n.s = j j.s = n assert i.w.w.w.w.w.w.txt == "
i"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt b = A("b") i = B("i") f = A("f") d = B("d") n = A("n") j = A("j") b.s = n i.w = d f.s = j d.w = i n.s = j j.s = n assert i.w.w.w.w.w.w.txt == "i"
6
6
1
0.2
2
3
1
1
1
6
4
3
2
0.333333
2
0.333333
5
2
6
3.111111
1
6
6
1
789
class A: def __init__(self, txt: str): self.r: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.s: B = None self.txt = txt k = A("k") c = B("c") i = A("i") m = A("m") l = B("l") h = A("h") b = A("b") g = B("g") n = B("n") a = A("a") k.r = h k.x = h c.q = m c.s = n i.r = a i.x = k m.r = a m.x = k l.q = h l.s = n h.r = i h.x = a b.r = m b.x = a g.q = m g.s = c n.q = a n.s = g a.r = m a.x = m assert n.q.r.r.txt == "
a"
class A: def __init__(self, txt: str): self.r: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.s: B = None self.txt = txt k = A("k") c = B("c") i = A("i") m = A("m") l = B("l") h = A("h") b = A("b") g = B("g") n = B("n") a = A("a") k.r = h k.x = h c.q = m c.s = n i.r = a i.x = k m.r = a m.x = k l.q = h l.s = n h.r = i h.x = a b.r = m b.x = a g.q = m g.s = c n.q = a n.s = g a.r = m a.x = m assert n.q.r.r.txt == "a"
10
18
1.8
0.2
2
5
2
2
2
3
2
1
3
0.3
3
0.166667
1
2
2
2
2
2
2
1
790
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt g = A("g") b = B("b") m = B("m") l = B("l") e = B("e") n = B("n") h = A("h") c = B("c") f = B("f") d = B("d") g.p = h b.y = g m.y = g l.y = h e.y = g n.y = g h.p = g c.y = g f.y = h d.y = h assert c.y.p.p.p.p.txt == "
g"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt g = A("g") b = B("b") m = B("m") l = B("l") e = B("e") n = B("n") h = A("h") c = B("c") f = B("f") d = B("d") g.p = h b.y = g m.y = g l.y = h e.y = g n.y = g h.p = g c.y = g f.y = h d.y = h assert c.y.p.p.p.p.txt == "g"
10
10
1
0.111111
2
5
1
1
1
5
3
2
3
0.3
3
0.3
3
2
4
2.5
2
4
4
1
791
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt j = A("j") l = B("l") k = A("k") g = B("g") m = B("m") j.v = m l.s = g k.v = m g.s = m m.s = l assert g.s.s.s.s.s.txt == "
l"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt j = A("j") l = B("l") k = A("k") g = B("g") m = B("m") j.v = m l.s = g k.v = m g.s = m m.s = l assert g.s.s.s.s.s.txt == "l"
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
792
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt e = A("e") a = B("a") n = A("n") f = A("f") g = B("g") h = A("h") m = B("m") l = A("l") e.z = m a.x = e n.z = g f.z = a g.x = e h.z = g m.x = l l.z = g assert n.z.x.z.x.txt == "
l"
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt e = A("e") a = B("a") n = A("n") f = A("f") g = B("g") h = A("h") m = B("m") l = A("l") e.z = m a.x = e n.z = g f.z = a g.x = e h.z = g m.x = l l.z = g assert n.z.x.z.x.txt == "l"
8
8
1
0.142857
2
4
1
1
1
4
1
1
5
0.625
4
0.5
0
null
null
null
2
2
1
1
793
class A: def __init__(self, txt: str): self.v: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.q: A = None self.txt = txt h = A("h") n = B("n") b = B("b") f = A("f") j = B("j") k = B("k") g = A("g") c = A("c") d = B("d") a = A("a") h.v = j h.y = a n.x = a n.q = h b.x = g b.q = h f.v = b f.y = c j.x = g j.q = f k.x = g k.q = f g.v = b g.y = a c.v = j c.y = h d.x = g d.q = f a.v = j a.y = f assert a.y.y.y.y.y.txt == "
f"
class A: def __init__(self, txt: str): self.v: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.q: A = None self.txt = txt h = A("h") n = B("n") b = B("b") f = A("f") j = B("j") k = B("k") g = A("g") c = A("c") d = B("d") a = A("a") h.v = j h.y = a n.x = a n.q = h b.x = g b.q = h f.v = b f.y = c j.x = g j.q = f k.x = g k.q = f g.v = b g.y = a c.v = j c.y = h d.x = g d.q = f a.v = j a.y = f assert a.y.y.y.y.y.txt == "f"
10
20
2
0.222222
2
5
2
2
2
5
2
2
4
0.4
4
0.2
2
4
4
4
1
5
5
1
794
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.q: B = None self.txt = txt g = A("g") h = B("h") e = B("e") m = B("m") f = B("f") l = A("l") c = A("c") j = B("j") i = B("i") k = A("k") g.p = h h.u = m h.q = m e.u = j e.q = i m.u = j m.q = h f.u = j f.q = m l.p = m c.p = f j.u = h j.q = f i.u = f i.q = j k.p = i assert c.p.q.u.q.txt == "
f"
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.q: B = None self.txt = txt g = A("g") h = B("h") e = B("e") m = B("m") f = B("f") l = A("l") c = A("c") j = B("j") i = B("i") k = A("k") g.p = h h.u = m h.q = m e.u = j e.q = i m.u = j m.q = h f.u = j f.q = m l.p = m c.p = f j.u = h j.q = f i.u = f i.q = j k.p = i assert c.p.q.u.q.txt == "f"
10
15
1.5
0.166667
2
5
2
1
1.5
4
2
1
4
0.4
4
0.266667
1
3
3
3
3
2
1
1
795
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt c = A("c") a = B("a") k = A("k") l = A("l") j = B("j") e = B("e") b = B("b") d = A("d") h = B("h") i = A("i") c.x = k a.x = k k.x = d l.x = k j.x = d e.x = l b.x = d d.x = k h.x = k i.x = k assert e.x.x.x.x.x.x.txt == "
k"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt c = A("c") a = B("a") k = A("k") l = A("l") j = B("j") e = B("e") b = B("b") d = A("d") h = B("h") i = A("i") c.x = k a.x = k k.x = d l.x = k j.x = d e.x = l b.x = d d.x = k h.x = k i.x = k assert e.x.x.x.x.x.x.txt == "k"
10
10
1
0.111111
2
5
1
1
1
6
3
2
4
0.4
4
0.4
3
2
4
2.5
1
6
6
1
796
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt i = A("i") d = B("d") b = A("b") e = B("e") f = B("f") n = A("n") l = A("l") g = B("g") k = B("k") i.q = n d.q = g b.q = l e.q = g f.q = k n.q = i l.q = n g.q = k k.q = d assert b.q.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.q: B = None self.txt = txt i = A("i") d = B("d") b = A("b") e = B("e") f = B("f") n = A("n") l = A("l") g = B("g") k = B("k") i.q = n d.q = g b.q = l e.q = g f.q = k n.q = i l.q = n g.q = k k.q = d assert b.q.q.q.q.q.q.txt == "n"
9
9
1
0.125
2
4.5
1
1
1
6
3
2
4
0.444444
4
0.444444
3
2
4
2.5
1
6
6
1
797
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.y: B = None self.txt = txt k = A("k") j = B("j") g = B("g") c = A("c") f = B("f") a = B("a") i = B("i") k.p = c j.t = k j.y = f g.t = c g.y = j c.p = k f.t = c f.y = i a.t = c a.y = j i.t = c i.y = f assert i.t.p.p.txt == "
c"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.y: B = None self.txt = txt k = A("k") j = B("j") g = B("g") c = A("c") f = B("f") a = B("a") i = B("i") k.p = c j.t = k j.y = f g.t = c g.y = j c.p = k f.t = c f.y = i a.t = c a.y = j i.t = c i.y = f assert i.t.p.p.txt == "c"
7
12
1.714286
0.285714
2
3.5
2
1
1.5
3
2
1
3
0.428571
3
0.25
1
2
2
2
2
2
2
1
798
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt f = A("f") k = B("k") m = A("m") f.v = k k.q = m m.v = k assert m.v.q.v.txt == "
k"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt f = A("f") k = B("k") m = A("m") f.v = k k.q = m m.v = k assert m.v.q.v.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
799
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.txt = txt a = A("a") i = B("i") c = B("c") k = B("k") n = A("n") j = B("j") a.q = i i.x = k c.x = i k.x = i n.q = j j.x = c assert n.q.x.x.x.x.txt == "
i"
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.txt = txt a = A("a") i = B("i") c = B("c") k = B("k") n = A("n") j = B("j") a.q = i i.x = k c.x = i k.x = i n.q = j j.x = c assert n.q.x.x.x.x.txt == "i"
6
6
1
0.2
2
3
1
1
1
5
2
1
5
0.833333
5
0.833333
1
2
2
2
2
4
4
1