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
500
class A: def __init__(self, txt: str): self.x: A = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.w: B = None self.txt = txt g = A("g") f = B("f") b = B("b") h = A("h") g.x = h g.y = h f.t = h f.w = b b.t = h b...
g"
class A: def __init__(self, txt: str): self.x: A = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.w: B = None self.txt = txt g = A("g") f = B("f") b = B("b") h = A("h") g.x = h g.y = h f.t = h f.w = b b.t = h b...
4
6
1.5
0.5
2
2
2
2
2
3
2
1
2
0.5
3
0.5
2
2
2
2
2
2
2
2
501
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.y: B = None self.txt = txt g = A("g") n = B("n") b = B("b") g.y = n n.s = b n.y = b b.s = n b.y = n assert g.y.y.y.txt == "
n"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.y: B = None self.txt = txt g = A("g") n = B("n") b = B("b") g.y = n n.s = b n.y = b b.s = n b.y = n assert g.y.y.y.txt == "n"
3
3
1
0.5
2
1.5
2
1
1.5
3
2
1
3
1
3
1
1
2
2
2
1
3
3
1
502
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.r: B = None self.txt = txt l = A("l") a = B("a") n = B("n") k = A("k") e = B("e") j = B("j") c = A("c") m = A("m") l.z = m a.p = c a.r = ...
m"
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.r: B = None self.txt = txt l = A("l") a = B("a") n = B("n") k = A("k") e = B("e") j = B("j") c = A("c") m = A("m") l.z = m a.p = c a.r = ...
8
12
1.5
0.214286
2
4
2
1
1.5
6
2
2
5
0.625
5
0.416667
2
3
3
3
2
5
5
1
503
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.s: B = None self.txt = txt f = A("f") i = B("i") d = B("d") e = A("e") m = B("m") l = B("l") b = A("b") j = A("j") f.s = l i.u = l i.s = ...
m"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.s: B = None self.txt = txt f = A("f") i = B("i") d = B("d") e = A("e") m = B("m") l = B("l") b = A("b") j = A("j") f.s = l i.u = l i.s = ...
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
1
3
3
1
504
class A: def __init__(self, txt: str): self.w: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt h = A("h") d = B("d") n = B("n") g = A("g") a = A("a") f = B("f") i = B("i") h.w = i h.u = n d.r = h n.r = a g...
i"
class A: def __init__(self, txt: str): self.w: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt h = A("h") d = B("d") n = B("n") g = A("g") a = A("a") f = B("f") i = B("i") h.w = i h.u = n d.r = h n.r = a g...
7
10
1.428571
0.238095
2
3.5
2
1
1.5
7
2
2
5
0.714286
5
0.5
3
4
4
4
3
3
1
2
505
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt m = A("m") l = B("l") f = A("f") n = A("n") m.s = f l.s = n f.s = n n.s = m assert l.s.s.s.s.txt == "
n"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt m = A("m") l = B("l") f = A("f") n = A("n") m.s = f l.s = n f.s = n n.s = m assert l.s.s.s.s.txt == "n"
4
4
1
0.333333
2
2
1
1
1
4
2
1
4
1
4
1
1
3
3
3
1
4
4
1
506
class A: def __init__(self, txt: str): self.q: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.txt = txt a = A("a") k = B("k") m = B("m") e = A("e") b = A("b") g = A("g") h = B("h") a.q = m a.r = e k.u = h m.u = h e...
k"
class A: def __init__(self, txt: str): self.q: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.txt = txt a = A("a") k = B("k") m = B("m") e = A("e") b = A("b") g = A("g") h = B("h") a.q = m a.r = e k.u = h m.u = h e...
7
11
1.571429
0.261905
2
3.5
2
1
1.5
4
3
2
2
0.285714
2
0.181818
3
2
4
2.5
1
4
4
1
507
class A: def __init__(self, txt: str): self.u: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.u: A = None self.txt = txt e = A("e") b = B("b") l = A("l") k = A("k") c = B("c") n = B("n") j = A("j") a = A("a"...
l"
class A: def __init__(self, txt: str): self.u: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.u: A = None self.txt = txt e = A("e") b = B("b") l = A("l") k = A("k") c = B("c") n = B("n") j = A("j") a = A("a"...
9
17
1.888889
0.236111
2
4.5
2
2
2
6
2
2
5
0.555556
5
0.294118
2
4
4
4
2
4
3
1
508
class A: def __init__(self, txt: str): self.y: A = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.o: A = None self.txt = txt n = A("n") l = B("l") c = A("c") j = B("j") e = B("e") i = B("i") b = A("b") f = A("f"...
n"
class A: def __init__(self, txt: str): self.y: A = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.o: A = None self.txt = txt n = A("n") l = B("l") c = A("c") j = B("j") e = B("e") i = B("i") b = A("b") f = A("f"...
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
509
class A: def __init__(self, txt: str): self.p: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt j = A("j") i = B("i") k = B("k") j.p = i j.o = k i.p = j k.p = j assert i.p.p.p.txt == "
j"
class A: def __init__(self, txt: str): self.p: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt j = A("j") i = B("i") k = B("k") j.p = i j.o = k i.p = j k.p = j assert i.p.p.p.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
510
class A: def __init__(self, txt: str): self.w: A = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt g = A("g") f = B("f") h = A("h") g.w = h g.y = f f.z = g h.w = g h.y = f assert f.z.w.y.txt == "
f"
class A: def __init__(self, txt: str): self.w: A = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt g = A("g") f = B("f") h = A("h") g.w = h g.y = f f.z = g h.w = g h.y = f assert f.z.w.y.txt == "f"
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
511
class A: def __init__(self, txt: str): self.s: B = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt e = A("e") k = B("k") i = B("i") e.s = k e.v = i k.s = e i.s = e assert e.v.s.s.txt == "
k"
class A: def __init__(self, txt: str): self.s: B = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt e = A("e") k = B("k") i = B("i") e.s = k e.v = i k.s = e i.s = e assert e.v.s.s.txt == "k"
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
2
512
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt f = A("f") e = B("e") n = B("n") h = B("h") i = A("i") m = B("m") l = A("l") j = B("j") a = B("a") f.o = h e.p = a n.p = a h.p = e i.o ...
e"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt f = A("f") e = B("e") n = B("n") h = B("h") i = A("i") m = B("m") l = A("l") j = B("j") a = B("a") f.o = h e.p = a n.p = a h.p = e i.o ...
9
9
1
0.125
2
4.5
1
1
1
9
3
3
4
0.444444
4
0.444444
6
3
6
4
1
9
9
1
513
class A: def __init__(self, txt: str): self.s: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.o: B = None self.txt = txt d = A("d") b = B("b") m = A("m") k = A("k") e = B("e") a = A("a") g = A("g") l = A("l"...
e"
class A: def __init__(self, txt: str): self.s: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.o: B = None self.txt = txt d = A("d") b = B("b") m = A("m") k = A("k") e = B("e") a = A("a") g = A("g") l = A("l"...
9
18
2
0.25
2
4.5
2
2
2
7
3
1
6
0.666667
7
0.388889
2
2
6
4
4
3
2
2
514
class A: def __init__(self, txt: str): self.w: A = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt b = A("b") f = B("f") h = A("h") g = B("g") e = A("e") c = B("c") b.w = h b.z = f f.z = g h.w = e h.z = g g.z ...
c"
class A: def __init__(self, txt: str): self.w: A = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt b = A("b") f = B("f") h = A("h") g = B("g") e = A("e") c = B("c") b.w = h b.z = f f.z = g h.w = e h.z = g g.z ...
6
9
1.5
0.3
2
3
2
1
1.5
4
2
2
3
0.5
3
0.333333
2
3
3
3
1
4
4
1
515
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 h = A("h") l = B("l") n = A("n") a = A("a") e = B("e") b = A("b") h.u = a l.v = e n.u = h a.u = h e.v = l b.u = h assert l.v.v.v.txt ==...
e"
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 h = A("h") l = B("l") n = A("n") a = A("a") e = B("e") b = A("b") h.u = a l.v = e n.u = h a.u = h e.v = l b.u = h assert l.v.v.v.txt ==...
6
6
1
0.2
2
3
1
1
1
3
2
2
2
0.333333
2
0.333333
2
2
2
2
1
3
3
1
516
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.v: B = None self.txt = txt b = A("b") i = B("i") n = B("n") g = A("g") b.v = i b.u = g i.v = n n.v = i g.v = n g.u = b assert g.u.u.v.txt...
n"
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.v: B = None self.txt = txt b = A("b") i = B("i") n = B("n") g = A("g") b.v = i b.u = g i.v = n n.v = i g.v = n g.u = b assert g.u.u.v.txt...
4
6
1.5
0.5
2
2
2
1
1.5
3
2
1
3
0.75
3
0.5
1
2
2
2
2
2
2
2
517
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.y: B = None self.txt = txt g = A("g") j = B("j") k = B("k") i = A("i") d = B("d") g.r = i g.x = i j.y = k k.y = d i.r = g i.x = g d.y = j...
k"
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.y: B = None self.txt = txt g = A("g") j = B("j") k = B("k") i = A("i") d = B("d") g.r = i g.x = i j.y = k k.y = d i.r = g i.x = g d.y = j...
5
5
1
0.25
2
2.5
2
1
1.5
5
2
2
3
0.6
3
0.6
3
3
3
3
1
5
5
1
518
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 m = A("m") n = B("n") j = B("j") d = B("d") h = B("h") e = A("e") f = A("f") a = A("a") m.s = h n.r = j j.r = d d.r = j h.r = d e.s = h...
j"
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 m = A("m") n = B("n") j = B("j") d = B("d") h = B("h") e = A("e") f = A("f") a = A("a") m.s = h n.r = j j.r = d d.r = j h.r = d e.s = h...
8
8
1
0.142857
2
4
1
1
1
3
1
1
4
0.5
3
0.375
0
null
null
null
2
2
2
1
519
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: B = None self.u: A = None self.txt = txt b = A("b") m = B("m") j = B("j") h = A("h") b.x = m b.t = h m.x = j m.u = h j.x = m j...
m"
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: B = None self.u: A = None self.txt = txt b = A("b") m = B("m") j = B("j") h = A("h") b.x = m b.t = h m.x = j m.u = h j.x = m j...
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
520
class A: def __init__(self, txt: str): self.r: A = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.u: A = None self.txt = txt j = A("j") n = B("n") i = B("i") c = A("c") a = B("a") f = A("f") l = B("l") e = A("e"...
j"
class A: def __init__(self, txt: str): self.r: A = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.u: A = None self.txt = txt j = A("j") n = B("n") i = B("i") c = A("c") a = B("a") f = A("f") l = B("l") e = A("e"...
8
14
1.75
0.25
2
4
2
2
2
3
1
1
4
0.5
3
0.214286
0
null
null
null
2
2
2
1
521
class A: def __init__(self, txt: str): self.q: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt c = A("c") h = B("h") g = A("g") n = B("n") c.q = g c.p = n h.t = n g.q = c g.p = n n.t = h assert c.q.p.t.txt...
h"
class A: def __init__(self, txt: str): self.q: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt c = A("c") h = B("h") g = A("g") n = B("n") c.q = g c.p = n h.t = n g.q = c g.p = n n.t = h assert c.q.p.t.txt...
4
6
1.5
0.5
2
2
2
1
1.5
3
1
1
4
1
3
0.5
0
null
null
null
3
1
1
1
522
class A: def __init__(self, txt: str): self.y: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.x: B = None self.txt = txt e = A("e") n = B("n") d = B("d") e.y = n e.r = d n.s = d n.x = d d.s = n d.x = n asse...
d"
class A: def __init__(self, txt: str): self.y: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.x: B = None self.txt = txt e = A("e") n = B("n") d = B("d") e.y = n e.r = d n.s = d n.x = d d.s = n d.x = n asse...
3
4
1.333333
0.666667
2
1.5
2
2
2
3
2
1
2
0.666667
3
0.75
2
2
2
2
2
2
2
2
523
class A: def __init__(self, txt: str): self.o: A = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.z: B = None self.txt = txt i = A("i") l = B("l") a = B("a") e = A("e") g = B("g") b = B("b") d = A("d") f = A("f"...
l"
class A: def __init__(self, txt: str): self.o: A = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.z: B = None self.txt = txt i = A("i") l = B("l") a = B("a") e = A("e") g = B("g") b = B("b") d = A("d") f = A("f"...
8
15
1.875
0.267857
2
4
2
2
2
6
4
2
3
0.375
4
0.266667
4
2
6
3.428571
2
5
3
2
524
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt d = A("d") g = B("g") a = B("a") i = B("i") c = B("c") e = B("e") n = B("n") f = A("f") k = B("k") d.t = n g.r = a a.r = n i.r = k c.r ...
i"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt d = A("d") g = B("g") a = B("a") i = B("i") c = B("c") e = B("e") n = B("n") f = A("f") k = B("k") d.t = n g.r = a a.r = n i.r = k c.r ...
9
9
1
0.125
2
4.5
1
1
1
5
2
1
5
0.555556
5
0.555556
1
2
2
2
1
5
5
1
525
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt d = A("d") j = B("j") k = B("k") d.o = j j.s = k k.s = j assert d.o.s.s.txt == "
j"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt d = A("d") j = B("j") k = B("k") d.o = j j.s = k k.s = j assert d.o.s.s.txt == "j"
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
526
class A: def __init__(self, txt: str): self.q: A = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.z: A = None self.txt = txt g = A("g") a = B("a") e = A("e") i = A("i") l = A("l") j = B("j") c = A("c") n = A("n"...
c"
class A: def __init__(self, txt: str): self.q: A = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.z: A = None self.txt = txt g = A("g") a = B("a") e = A("e") i = A("i") l = A("l") j = B("j") c = A("c") n = A("n"...
8
15
1.875
0.267857
2
4
2
2
2
7
3
2
4
0.5
6
0.4
4
2
5
4
2
4
2
2
527
class A: def __init__(self, txt: str): self.r: A = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt f = A("f") g = B("g") a = A("a") f.r = a f.p = a g.s = f a.r = f a.p = f assert a.p.p.r.txt == "
f"
class A: def __init__(self, txt: str): self.r: A = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt f = A("f") g = B("g") a = A("a") f.r = a f.p = a g.s = f a.r = f a.p = f assert a.p.p.r.txt == "f"
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
528
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 e = A("e") b = B("b") h = B("h") l = A("l") c = B("c") f = B("f") g = B("g") e.u = h b.w = c h.w = g l.u = f c.w = g f.w = b g.w = c as...
c"
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 e = A("e") b = B("b") h = B("h") l = A("l") c = B("c") f = B("f") g = B("g") e.u = h b.w = c h.w = g l.u = f c.w = g f.w = b g.w = c as...
7
7
1
0.166667
2
3.5
1
1
1
3
2
2
2
0.285714
2
0.285714
2
2
2
2
1
3
3
1
529
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt b = A("b") m = B("m") c = A("c") k = A("k") d = B("d") n = A("n") l = A("l") j = A("j") i = A("i") b.r = m m.w = d c.r = d k.r = d d.w ...
d"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt b = A("b") m = B("m") c = A("c") k = A("k") d = B("d") n = A("n") l = A("l") j = A("j") i = A("i") b.r = m m.w = d c.r = d k.r = d d.w ...
9
9
1
0.125
2
4.5
1
1
1
3
2
2
2
0.222222
2
0.222222
2
2
2
2
1
3
3
1
530
class A: def __init__(self, txt: str): self.o: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt h = A("h") m = B("m") k = A("k") f = B("f") n = A("n") j = B("j") h.o = k h.p = m m.q = k k.o = h k.p = m f.q ...
m"
class A: def __init__(self, txt: str): self.o: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt h = A("h") m = B("m") k = A("k") f = B("f") n = A("n") j = B("j") h.o = k h.p = m m.q = k k.o = h k.p = m f.q ...
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
531
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.t: A = None self.txt = txt h = A("h") a = B("a") f = B("f") e = B("e") l = A("l") g = B("g") m = B("m") h.z = l a.w = l a.t = l f.w = h f...
l"
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.t: A = None self.txt = txt h = A("h") a = B("a") f = B("f") e = B("e") l = A("l") g = B("g") m = B("m") h.z = l a.w = l a.t = l f.w = h f...
7
10
1.428571
0.238095
2
3.5
2
1
1.5
7
4
3
3
0.428571
3
0.3
5
2
6
3.111111
2
6
6
1
532
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.o: A = None self.txt = txt g = A("g") d = B("d") l = B("l") f = B("f") k = A("k") n = A("n") g.r = k g.u = l d.o = n l.o = n f.o = k k.r ...
n"
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.o: A = None self.txt = txt g = A("g") d = B("d") l = B("l") f = B("f") k = A("k") n = A("n") g.r = k g.u = l d.o = n l.o = n f.o = k k.r ...
6
9
1.5
0.3
2
3
2
1
1.5
6
2
2
5
0.833333
5
0.555556
2
2
2
2
3
3
3
2
533
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt h = A("h") k = B("k") m = A("m") n = A("n") l = B("l") f = A("f") d = B("d") h.x = d k.s = f m.x = d n.x = l l.s = n f.x = k d.s = f as...
k"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt h = A("h") k = B("k") m = A("m") n = A("n") l = B("l") f = A("f") d = B("d") h.x = d k.s = f m.x = d n.x = l l.s = n f.x = k d.s = f as...
7
7
1
0.166667
2
3.5
1
1
1
7
3
3
4
0.571429
4
0.571429
4
2
4
2.666667
2
4
1
1
534
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt m = A("m") e = B("e") l = B("l") n = A("n") g = A("g") h = A("h") m.p = e e.s = l l.s = e n.p = l g.p = l h.p = e assert e.s.s.s.s.s.s....
e"
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt m = A("m") e = B("e") l = B("l") n = A("n") g = A("g") h = A("h") m.p = e e.s = l l.s = e n.p = l g.p = l h.p = e assert e.s.s.s.s.s.s....
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
535
class A: def __init__(self, txt: str): self.r: A = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.o: B = None self.txt = txt k = A("k") i = B("i") h = B("h") l = A("l") f = B("f") a = A("a") n = A("n") k.r = n ...
i"
class A: def __init__(self, txt: str): self.r: A = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.o: B = None self.txt = txt k = A("k") i = B("i") h = B("h") l = A("l") f = B("f") a = A("a") n = A("n") k.r = n ...
7
11
1.571429
0.261905
2
3.5
2
2
2
6
3
2
3
0.428571
5
0.454545
4
2
4
2.4
2
4
3
2
536
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.w: B = None self.txt = txt c = A("c") b = B("b") n = B("n") l = B("l") f = A("f") c.v = l b.y = f b.w = n n.y = f n.w = l l.y = f l.w = b...
b"
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.w: B = None self.txt = txt c = A("c") b = B("b") n = B("n") l = B("l") f = A("f") c.v = l b.y = f b.w = n n.y = f n.w = l l.y = f l.w = b...
5
8
1.6
0.4
2
2.5
2
1
1.5
5
3
2
3
0.6
3
0.375
3
2
4
2.5
3
2
1
2
537
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.y: B = None self.txt = txt e = A("e") i = B("i") b = A("b") k = B("k") e.s = i i.x = k i.y = k b.s = i k.x = i k.y = i assert k.x.y.y.txt...
i"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.y: B = None self.txt = txt e = A("e") i = B("i") b = A("b") k = B("k") e.s = i i.x = k i.y = k b.s = i k.x = i k.y = i assert k.x.y.y.txt...
4
4
1
0.333333
2
2
2
1
1.5
3
2
1
2
0.5
3
0.75
2
2
2
2
2
2
2
2
538
class A: def __init__(self, txt: str): self.x: A = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.q: B = None self.txt = txt b = A("b") e = B("e") a = B("a") k = A("k") l = A("l") g = B("g") h = B("h") i = A("i"...
h"
class A: def __init__(self, txt: str): self.x: A = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.q: B = None self.txt = txt b = A("b") e = B("e") a = B("a") k = A("k") l = A("l") g = B("g") h = B("h") i = A("i"...
8
14
1.75
0.25
2
4
2
2
2
6
2
1
5
0.625
6
0.428571
2
3
3
3
3
4
3
2
539
class A: def __init__(self, txt: str): self.z: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.t: A = None self.txt = txt n = A("n") m = B("m") h = A("h") j = A("j") a = B("a") n.z = j n.q = a m.z = j m.t = ...
j"
class A: def __init__(self, txt: str): self.z: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.t: A = None self.txt = txt n = A("n") m = B("m") h = A("h") j = A("j") a = B("a") n.z = j n.q = a m.z = j m.t = ...
5
9
1.8
0.45
2
2.5
2
2
2
5
3
2
3
0.6
4
0.444444
3
2
4
2.5
3
2
1
2
540
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.txt = txt f = A("f") c = B("c") b = B("b") l = B("l") e = B("e") i = B("i") d = B("d") a = A("a") j = B("j") n = B("n") f.r = l c.x = f b.x = f l...
f"
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.txt = txt f = A("f") c = B("c") b = B("b") l = B("l") e = B("e") i = B("i") d = B("d") a = A("a") j = B("j") n = B("n") f.r = l c.x = f b.x = f l...
10
10
1
0.111111
2
5
1
1
1
3
1
1
4
0.4
3
0.3
0
null
null
null
2
2
1
1
541
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.o: B = None self.txt = txt c = A("c") d = B("d") k = A("k") b = A("b") l = B("l") i = B("i") c.x = k d.v = k d.o = l k.x = c b.x = k l.v ...
k"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.o: B = None self.txt = txt c = A("c") d = B("d") k = A("k") b = A("b") l = B("l") i = B("i") c.x = k d.v = k d.o = l k.x = c b.x = k l.v ...
6
9
1.5
0.3
2
3
2
1
1.5
5
2
1
5
0.833333
5
0.555556
1
2
2
2
3
2
2
1
542
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.q: A = None self.txt = txt d = A("d") g = B("g") e = A("e") k = A("k") a = B("a") c = B("c") d.o = k g.o = d g.q = k e.o = d k.o = e a.o ...
d"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.q: A = None self.txt = txt d = A("d") g = B("g") e = A("e") k = A("k") a = B("a") c = B("c") d.o = k g.o = d g.q = k e.o = d k.o = e a.o ...
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
543
class A: def __init__(self, txt: str): self.v: A = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt l = A("l") e = B("e") d = B("d") b = B("b") i = A("i") g = A("g") l.v = g l.p = g e.s = i d.s = i b.s = i i.v ...
g"
class A: def __init__(self, txt: str): self.v: A = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt l = A("l") e = B("e") d = B("d") b = B("b") i = A("i") g = A("g") l.v = g l.p = g e.s = i d.s = i b.s = i i.v ...
6
8
1.333333
0.266667
2
3
2
1
1.5
5
2
1
4
0.666667
5
0.625
2
2
3
2.5
3
3
2
2
544
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.q: A = None self.txt = txt g = A("g") f = B("f") a = A("a") i = A("i") h = A("h") k = A("k") j = A("j") d = B("d") b = A("b") g.w = h f.z...
k"
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.q: A = None self.txt = txt g = A("g") f = B("f") a = A("a") i = A("i") h = A("h") k = A("k") j = A("j") d = B("d") b = A("b") g.w = h f.z...
9
11
1.222222
0.152778
2
4.5
2
1
1.5
6
2
2
4
0.444444
4
0.363636
3
3
3
3
1
6
6
1
545
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt h = A("h") i = B("i") j = A("j") m = A("m") n = A("n") d = A("d") c = A("c") h.s = c i.q = m j.s = d m.s = d n.s = m d.s = j c.s = d as...
j"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt h = A("h") i = B("i") j = A("j") m = A("m") n = A("n") d = A("d") c = A("c") h.s = c i.q = m j.s = d m.s = d n.s = m d.s = j c.s = d as...
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
546
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.r: B = None self.txt = txt h = A("h") m = B("m") j = A("j") k = B("k") c = A("c") h.z = c m.v = j m.r = k j.z = c k.v = j k.r = m c.z = h...
h"
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.r: B = None self.txt = txt h = A("h") m = B("m") j = A("j") k = B("k") c = A("c") h.z = c m.v = j m.r = k j.z = c k.v = j k.r = m c.z = h...
5
7
1.4
0.35
2
2.5
2
1
1.5
4
1
1
5
1
4
0.571429
0
null
null
null
3
2
2
1
547
class A: def __init__(self, txt: str): self.z: A = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt g = A("g") e = B("e") h = B("h") d = A("d") g.z = d g.x = h e.r = h h.r = e d.z = g d.x = h assert h.r.r.r.txt...
e"
class A: def __init__(self, txt: str): self.z: A = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt g = A("g") e = B("e") h = B("h") d = A("d") g.z = d g.x = h e.r = h h.r = e d.z = g d.x = h assert h.r.r.r.txt...
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
548
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.s: A = None self.txt = txt j = A("j") d = B("d") h = B("h") i = A("i") b = B("b") a = B("a") g = A("g") j.v = i d.o = h d.s = j h.o = d h...
i"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.s: A = None self.txt = txt j = A("j") d = B("d") h = B("h") i = A("i") b = B("b") a = B("a") g = A("g") j.v = i d.o = h d.s = j h.o = d h...
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
3
2
2
2
549
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt i = A("i") j = B("j") e = A("e") f = A("f") a = B("a") b = B("b") n = B("n") i.s = n j.x = b e.s = a f.s = j a.x = b b.x = a n.x = j as...
b"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt i = A("i") j = B("j") e = A("e") f = A("f") a = B("a") b = B("b") n = B("n") i.s = n j.x = b e.s = a f.s = j a.x = b b.x = a n.x = j as...
7
7
1
0.166667
2
3.5
1
1
1
3
2
1
3
0.428571
3
0.428571
1
2
2
2
1
3
3
1
550
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.y: A = None self.txt = txt b = A("b") e = B("e") a = B("a") c = B("c") h = A("h") m = B("m") k = B("k") g = A("g") b.p = c e.o = b e.y = ...
g"
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.y: A = None self.txt = txt b = A("b") e = B("e") a = B("a") c = B("c") h = A("h") m = B("m") k = B("k") g = A("g") b.p = c e.o = b e.y = ...
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
2
2
1
1
551
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.o: B = None self.txt = txt b = A("b") c = B("c") g = B("g") h = A("h") a = B("a") l = B("l") j = A("j") n = A("n") b.v = a b.r = c c.o = ...
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.o: B = None self.txt = txt b = A("b") c = B("c") g = B("g") h = A("h") a = B("a") l = B("l") j = A("j") n = A("n") b.v = a b.r = c c.o = ...
8
12
1.5
0.214286
2
4
2
1
1.5
7
3
3
3
0.375
3
0.25
5
3
6
3.857143
1
7
7
1
552
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.r: B = None self.txt = txt l = A("l") n = B("n") j = A("j") a = A("a") f = B("f") h = A("h") l.u = a l.p = n n.r = f j.u = a j.p = n a.u ...
f"
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.r: B = None self.txt = txt l = A("l") n = B("n") j = A("j") a = A("a") f = B("f") h = A("h") l.u = a l.p = n n.r = f j.u = a j.p = n a.u ...
6
10
1.666667
0.333333
2
3
2
1
1.5
6
4
3
2
0.333333
2
0.2
5
2
6
3.111111
1
6
6
1
553
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.u: B = None self.txt = txt g = A("g") e = B("e") b = B("b") n = A("n") l = B("l") h = A("h") k = B("k") g.t = n e.w = n e.u = k b.w = g b...
n"
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.u: B = None self.txt = txt g = A("g") e = B("e") b = B("b") n = A("n") l = B("l") h = A("h") k = B("k") g.t = n e.w = n e.u = k b.w = g b...
7
11
1.571429
0.261905
2
3.5
2
1
1.5
3
2
2
2
0.285714
2
0.181818
2
2
2
2
1
3
3
1
554
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.s: A = None self.txt = txt i = A("i") k = B("k") f = B("f") a = A("a") b = A("b") i.o = a k.t = a k.s = i f.t = a f.s = i a.o = i b.o = a...
i"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.s: A = None self.txt = txt i = A("i") k = B("k") f = B("f") a = A("a") b = A("b") i.o = a k.t = a k.s = i f.t = a f.s = i a.o = i b.o = a...
5
7
1.4
0.35
2
2.5
2
1
1.5
5
3
2
3
0.6
3
0.428571
3
2
4
2.5
2
4
4
1
555
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.w: A = None self.txt = txt n = A("n") c = B("c") h = A("h") g = A("g") d = A("d") f = B("f") i = B("i") l = A("l") n.y = d c.x = f c.w = ...
l"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.w: A = None self.txt = txt n = A("n") c = B("c") h = A("h") g = A("g") d = A("d") f = B("f") i = B("i") l = A("l") n.y = d c.x = f c.w = ...
8
11
1.375
0.196429
2
4
2
1
1.5
5
1
1
6
0.75
5
0.454545
0
null
null
null
2
4
4
1
556
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt i = A("i") a = B("a") h = A("h") e = A("e") i.q = e a.x = i h.q = i e.q = h assert e.q.q.q.q.txt == "
h"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt i = A("i") a = B("a") h = A("h") e = A("e") i.q = e a.x = i h.q = i e.q = h assert e.q.q.q.q.txt == "h"
4
4
1
0.333333
2
2
1
1
1
4
2
2
3
0.75
3
0.75
2
3
3
3
1
4
4
1
557
class A: def __init__(self, txt: str): self.t: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt e = A("e") f = B("f") h = B("h") g = B("g") a = A("a") j = B("j") l = B("l") d = A("d") e.t = a e.s = l f.x = ...
f"
class A: def __init__(self, txt: str): self.t: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt e = A("e") f = B("f") h = B("h") g = B("g") a = A("a") j = B("j") l = B("l") d = A("d") e.t = a e.s = l f.x = ...
8
11
1.375
0.196429
2
4
2
1
1.5
3
2
1
3
0.375
3
0.272727
1
3
3
3
3
1
1
1
558
class A: def __init__(self, txt: str): self.r: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt d = A("d") e = B("e") c = B("c") m = B("m") d.r = c d.u = e e.p = c c.p = e m.p = e assert e.p.p.p.txt == "
c"
class A: def __init__(self, txt: str): self.r: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt d = A("d") e = B("e") c = B("c") m = B("m") d.r = c d.u = e e.p = c c.p = e m.p = e assert e.p.p.p.txt == "c"
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
559
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.w: A = None self.txt = txt m = A("m") c = B("c") j = B("j") m.y = j c.t = m c.w = m j.t = m j.w = m assert m.y.t.y.txt == "
j"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.w: A = None self.txt = txt m = A("m") c = B("c") j = B("j") m.y = j c.t = m c.w = m j.t = m j.w = m assert m.y.t.y.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
560
class A: def __init__(self, txt: str): self.p: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.x: A = None self.txt = txt g = A("g") h = B("h") j = A("j") c = B("c") g.p = c g.w = j h.w = c h.x = g j.p = h j...
h"
class A: def __init__(self, txt: str): self.p: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.x: A = None self.txt = txt g = A("g") h = B("h") j = A("j") c = B("c") g.p = c g.w = j h.w = c h.x = g j.p = h j...
4
8
2
0.666667
2
2
2
2
2
3
2
2
2
0.5
2
0.25
2
2
2
2
1
3
3
1
561
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt b = A("b") l = B("l") m = B("m") k = A("k") b.u = l l.o = m m.o = l k.u = l assert k.u.o.o.txt == "
l"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt b = A("b") l = B("l") m = B("m") k = A("k") b.u = l l.o = m m.o = l k.u = l assert k.u.o.o.txt == "l"
4
4
1
0.333333
2
2
1
1
1
3
2
1
3
0.75
3
0.75
1
2
2
2
2
2
2
1
562
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.u: A = None self.txt = txt d = A("d") n = B("n") f = A("f") d.p = f n.x = f n.u = d f.p = d assert n.x.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.x: A = None self.u: A = None self.txt = txt d = A("d") n = B("n") f = A("f") d.p = f n.x = f n.u = d f.p = d assert n.x.p.p.txt == "f"
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
563
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.r: A = None self.z: B = None self.txt = txt e = A("e") m = B("m") k = B("k") b = B("b") i = A("i") d = A("d") e.u = i e.p = b m.r...
d"
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.r: A = None self.z: B = None self.txt = txt e = A("e") m = B("m") k = B("k") b = B("b") i = A("i") d = A("d") e.u = i e.p = b m.r...
6
12
2
0.4
2
3
2
2
2
6
4
2
3
0.5
4
0.333333
4
2
6
3.142857
3
2
2
2
564
class A: def __init__(self, txt: str): self.q: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt g = A("g") i = B("i") k = B("k") l = B("l") f = B("f") n = A("n") g.q = l g.y = f i.t = l k.t = l l.t = k f.t ...
k"
class A: def __init__(self, txt: str): self.q: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt g = A("g") i = B("i") k = B("k") l = B("l") f = B("f") n = A("n") g.q = l g.y = f i.t = l k.t = l l.t = k f.t ...
6
7
1.166667
0.233333
2
3
2
1
1.5
4
3
2
2
0.333333
2
0.285714
3
2
4
2.5
1
4
4
1
565
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.txt = txt a = A("a") f = B("f") l = B("l") a.z = l f.q = l l.q = f assert f.q.q.q.txt == "
l"
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.txt = txt a = A("a") f = B("f") l = B("l") a.z = l f.q = l l.q = f assert f.q.q.q.txt == "l"
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
566
class A: def __init__(self, txt: str): self.w: B = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt i = A("i") d = B("d") n = A("n") i.w = d i.q = n d.x = i n.w = d n.q = i assert d.x.q.w.txt == "
d"
class A: def __init__(self, txt: str): self.w: B = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt i = A("i") d = B("d") n = A("n") i.w = d i.q = n d.x = i n.w = d n.q = i assert d.x.q.w.txt == "d"
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
567
class A: def __init__(self, txt: str): self.w: B = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.q: A = None self.txt = txt c = A("c") b = B("b") g = A("g") c.w = b c.s = b b.t = c b.q = g g.w = b g.s = b asse...
b"
class A: def __init__(self, txt: str): self.w: B = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.q: A = None self.txt = txt c = A("c") b = B("b") g = A("g") c.w = b c.s = b b.t = c b.q = g g.w = b g.s = b asse...
3
4
1.333333
0.666667
2
1.5
2
2
2
3
2
1
2
0.666667
3
0.75
2
2
2
2
3
1
1
2
568
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.u: A = None self.txt = txt g = A("g") k = B("k") j = B("j") a = B("a") m = A("m") g.u = k k.v = a k.u = g j.v = a j.u = g a.v = j a.u = m...
j"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.u: A = None self.txt = txt g = A("g") k = B("k") j = B("j") a = B("a") m = A("m") g.u = k k.v = a k.u = g j.v = a j.u = g a.v = j a.u = m...
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
2
1
569
class A: def __init__(self, txt: str): self.u: A = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.v: B = None self.txt = txt c = A("c") i = B("i") e = A("e") n = B("n") c.u = e c.o = e i.y = c i.v = n e.u = c e...
c"
class A: def __init__(self, txt: str): self.u: A = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.v: B = None self.txt = txt c = A("c") i = B("i") e = A("e") n = B("n") c.u = e c.o = e i.y = c i.v = n e.u = c e...
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
2
2
1
1
570
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt f = A("f") g = B("g") a = B("a") e = B("e") n = A("n") l = B("l") c = B("c") k = A("k") f.o = l g.t = a a.t = e e.t = a n.o = c l.t = e...
a"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt f = A("f") g = B("g") a = B("a") e = B("e") n = A("n") l = B("l") c = B("c") k = A("k") f.o = l g.t = a a.t = e e.t = a n.o = c l.t = e...
8
8
1
0.142857
2
4
1
1
1
3
2
1
3
0.375
3
0.375
1
2
2
2
1
3
3
1
571
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt j = A("j") g = B("g") l = A("l") j.r = l g.r = l l.r = j assert l.r.r.r.txt == "
j"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt j = A("j") g = B("g") l = A("l") j.r = l g.r = l l.r = j assert l.r.r.r.txt == "j"
3
3
1
0.5
2
1.5
1
1
1
3
2
2
2
0.666667
2
0.666667
2
2
2
2
1
3
3
1
572
class A: def __init__(self, txt: str): self.t: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.y: B = None self.txt = txt c = A("c") l = B("l") n = A("n") a = B("a") c.t = n c.w = l l.s = a l.y = a n.t = c n...
l"
class A: def __init__(self, txt: str): self.t: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.y: B = None self.txt = txt c = A("c") l = B("l") n = A("n") a = B("a") c.t = n c.w = l l.s = a l.y = a n.t = c n...
4
6
1.5
0.5
2
2
2
2
2
4
3
1
2
0.5
4
0.666667
3
2
4
2.5
2
2
2
2
573
class A: def __init__(self, txt: str): self.z: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt b = A("b") j = B("j") a = B("a") g = B("g") c = B("c") d = B("d") e = B("e") m = B("m") i = B("i") n = B("n") ...
j"
class A: def __init__(self, txt: str): self.z: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt b = A("b") j = B("j") a = B("a") g = B("g") c = B("c") d = B("d") e = B("e") m = B("m") i = B("i") n = B("n") ...
10
11
1.1
0.122222
2
5
2
1
1.5
7
2
1
7
0.7
7
0.636364
1
6
6
6
2
6
6
1
574
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.o: B = None self.txt = txt k = A("k") m = B("m") i = A("i") a = A("a") d = B("d") l = B("l") g = B("g") k.q = a m.x = i m.o = d i.q = a a...
a"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.o: B = None self.txt = txt k = A("k") m = B("m") i = A("i") a = A("a") d = B("d") l = B("l") g = B("g") k.q = a m.x = i m.o = d i.q = a a...
7
11
1.571429
0.261905
2
3.5
2
1
1.5
5
3
2
3
0.428571
3
0.272727
3
2
4
2.5
1
5
5
1
575
class A: def __init__(self, txt: str): self.v: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt b = A("b") a = B("a") j = B("j") b.v = a b.x = a a.p = b j.p = b assert j.p.x.p.txt == "
b"
class A: def __init__(self, txt: str): self.v: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt b = A("b") a = B("a") j = B("j") b.v = a b.x = a a.p = b j.p = b assert j.p.x.p.txt == "b"
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
576
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt b = A("b") d = B("d") c = B("c") m = A("m") f = B("f") e = A("e") b.o = c d.u = b c.u = b m.o = d f.u = m e.o = d assert d.u.o.u.o.u.o....
c"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt b = A("b") d = B("d") c = B("c") m = A("m") f = B("f") e = A("e") b.o = c d.u = b c.u = b m.o = d f.u = m e.o = d assert d.u.o.u.o.u.o....
6
6
1
0.2
2
3
1
1
1
6
3
3
3
0.5
3
0.5
4
2
4
2.666667
2
3
1
1
577
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.o: B = None self.p: A = None self.txt = txt c = A("c") b = B("b") i = B("i") e = A("e") c.p = i c.o = i b.o = i b.p = c i.o = b i...
b"
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.o: B = None self.p: A = None self.txt = txt c = A("c") b = B("b") i = B("i") e = A("e") c.p = i c.o = i b.o = i b.p = c i.o = b i...
4
6
1.5
0.5
2
2
2
2
2
4
2
2
3
0.75
3
0.5
2
2
2
2
1
4
4
1
578
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.w: A = None self.txt = txt f = A("f") e = B("e") m = A("m") d = A("d") i = A("i") c = B("c") f.w = c e.y = f e.w = d m.w = c d.w = e i.w ...
m"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.w: A = None self.txt = txt f = A("f") e = B("e") m = A("m") d = A("d") i = A("i") c = B("c") f.w = c e.y = f e.w = d m.w = c d.w = e i.w ...
6
8
1.333333
0.266667
2
3
2
1
1.5
6
2
1
6
1
6
0.75
1
2
2
2
2
5
3
2
579
class A: def __init__(self, txt: str): self.q: B = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.t: A = None self.txt = txt j = A("j") d = B("d") k = A("k") l = B("l") i = B("i") g = B("g") f = A("f") m = B("m"...
k"
class A: def __init__(self, txt: str): self.q: B = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.t: A = None self.txt = txt j = A("j") d = B("d") k = A("k") l = B("l") i = B("i") g = B("g") f = A("f") m = B("m"...
8
15
1.875
0.267857
2
4
2
2
2
6
2
1
6
0.75
6
0.4
1
3
3
3
4
2
1
1
580
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt f = A("f") b = B("b") n = B("n") i = B("i") e = A("e") c = A("c") f.y = c b.o = c n.o = e i.o = c e.y = c c.y = e assert n.o.y.y.txt ==...
e"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt f = A("f") b = B("b") n = B("n") i = B("i") e = A("e") c = A("c") f.y = c b.o = c n.o = e i.o = c e.y = c c.y = e assert n.o.y.y.txt ==...
6
6
1
0.2
2
3
1
1
1
3
2
1
3
0.5
3
0.5
1
2
2
2
2
2
2
1
581
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.t: B = None self.txt = txt c = A("c") a = B("a") e = A("e") f = A("f") h = B("h") c.t = h a.v = e a.t = h e.t = a f.t = h h.v = e h.t = a...
h"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.t: B = None self.txt = txt c = A("c") a = B("a") e = A("e") f = A("f") h = B("h") c.t = h a.v = e a.t = h e.t = a f.t = h h.v = e h.t = a...
5
7
1.4
0.35
2
2.5
2
1
1.5
5
3
2
3
0.6
4
0.571429
3
2
5
3.25
2
4
2
2
582
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.x: B = None self.txt = txt k = A("k") l = B("l") a = A("a") h = B("h") k.u = a l.y = h l.x = h a.u = k h.y = l h.x = l assert l.y.y.x.txt...
h"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.x: B = None self.txt = txt k = A("k") l = B("l") a = A("a") h = B("h") k.u = a l.y = h l.x = h a.u = k h.y = l h.x = l assert l.y.y.x.txt...
4
4
1
0.333333
2
2
2
1
1.5
3
2
1
2
0.5
3
0.75
2
2
2
2
2
2
2
2
583
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.p: A = None self.txt = txt m = A("m") n = B("n") a = A("a") b = B("b") j = B("j") i = B("i") m.z = a n.y = j n.p = m a.z = m b.y = n b.p ...
m"
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.p: A = None self.txt = txt m = A("m") n = B("n") a = A("a") b = B("b") j = B("j") i = B("i") m.z = a n.y = j n.p = m a.z = m b.y = n b.p ...
6
10
1.666667
0.333333
2
3
2
1
1.5
6
4
3
2
0.333333
2
0.2
5
2
6
3.111111
1
6
6
1
584
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.txt = txt d = A("d") f = B("f") i = A("i") l = B("l") a = B("a") e = B("e") h = B("h") m = B("m") d.u = i f.p = a i.u = d l.p = m a.p = m e.p = f...
d"
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.txt = txt d = A("d") f = B("f") i = A("i") l = B("l") a = B("a") e = B("e") h = B("h") m = B("m") d.u = i f.p = a i.u = d l.p = m a.p = m e.p = f...
8
8
1
0.142857
2
4
1
1
1
7
4
4
2
0.25
2
0.25
6
2
6
3.333333
1
7
7
1
585
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 d = A("d") i = B("i") h = B("h") l = B("l") k = A("k") f = A("f") j = A("j") d.q = i i.x = h h.x = i l.x = h k.q = i f.q = h j.q = i as...
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 d = A("d") i = B("i") h = B("h") l = B("l") k = A("k") f = A("f") j = A("j") d.q = i i.x = h h.x = i l.x = h k.q = i f.q = h j.q = i as...
7
7
1
0.166667
2
3.5
1
1
1
5
3
2
3
0.428571
3
0.428571
3
2
4
2.5
2
4
4
1
586
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.w: A = None self.txt = txt f = A("f") b = B("b") j = B("j") l = A("l") c = B("c") f.w = j b.t = l b.w = l j.t = f j.w = l l.w = c c.t = l...
c"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.w: A = None self.txt = txt f = A("f") b = B("b") j = B("j") l = A("l") c = B("c") f.w = j b.t = l b.w = l j.t = f j.w = l l.w = c c.t = l...
5
7
1.4
0.35
2
2.5
2
1
1.5
3
2
2
2
0.4
2
0.285714
2
2
2
2
2
2
1
1
587
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt h = A("h") b = B("b") k = A("k") a = A("a") d = B("d") h.r = a b.w = a k.r = h a.r = h d.w = k assert b.w.r.r.r.r.txt == "
a"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt h = A("h") b = B("b") k = A("k") a = A("a") d = B("d") h.r = a b.w = a k.r = h a.r = h d.w = k assert b.w.r.r.r.r.txt == "a"
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
588
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.y: A = None self.txt = txt b = A("b") l = B("l") c = A("c") n = A("n") m = A("m") e = A("e") b.t = c b.y = l l.y = b c.t = e c.y = l n.t ...
b"
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.y: A = None self.txt = txt b = A("b") l = B("l") c = A("c") n = A("n") m = A("m") e = A("e") b.t = c b.y = l l.y = b c.t = e c.y = l n.t ...
6
11
1.833333
0.366667
2
3
2
1
1.5
6
2
2
5
0.833333
5
0.454545
2
2
2
2
2
4
4
1
589
class A: def __init__(self, txt: str): self.x: B = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt l = A("l") n = B("n") e = A("e") i = B("i") a = A("a") c = B("c") d = A("d") l.x = i l.s = c n.r = l e.x = i e...
c"
class A: def __init__(self, txt: str): self.x: B = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt l = A("l") n = B("n") e = A("e") i = B("i") a = A("a") c = B("c") d = A("d") l.x = i l.s = c n.r = l e.x = i e...
7
10
1.428571
0.238095
2
3.5
2
1
1.5
4
2
2
3
0.428571
3
0.3
2
2
2
2
2
2
1
1
590
class A: def __init__(self, txt: str): self.q: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.p: B = None self.txt = txt i = A("i") b = B("b") f = A("f") d = B("d") i.q = f i.o = b b.t = i b.p = d f.q = i f...
b"
class A: def __init__(self, txt: str): self.q: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.p: B = None self.txt = txt i = A("i") b = B("b") f = A("f") d = B("d") i.q = f i.o = b b.t = i b.p = d f.q = i f...
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
591
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.u: A = None self.txt = txt c = A("c") a = B("a") d = B("d") b = A("b") j = B("j") c.u = b a.v = b a.u = c d.v = b d.u = b b.u = c j.v = c...
b"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.u: A = None self.txt = txt c = A("c") a = B("a") d = B("d") b = A("b") j = B("j") c.u = b a.v = b a.u = c d.v = b d.u = b b.u = c j.v = c...
5
7
1.4
0.35
2
2.5
2
1
1.5
3
2
1
3
0.6
3
0.428571
1
2
2
2
2
2
2
1
592
class A: def __init__(self, txt: str): self.q: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.r: A = None self.txt = txt b = A("b") j = B("j") d = B("d") f = B("f") n = A("n") k = B("k") g = B("g") h = A("h"...
d"
class A: def __init__(self, txt: str): self.q: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.r: A = None self.txt = txt b = A("b") j = B("j") d = B("d") f = B("f") n = A("n") k = B("k") g = B("g") h = A("h"...
8
14
1.75
0.25
2
4
2
2
2
8
4
3
4
0.5
5
0.357143
5
2
6
3.555556
4
3
1
2
593
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.t: B = None self.txt = txt b = A("b") m = B("m") l = A("l") g = B("g") n = A("n") k = B("k") h = A("h") b.t = h m.x = n m.t = g l.t = n g...
n"
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.t: B = None self.txt = txt b = A("b") m = B("m") l = A("l") g = B("g") n = A("n") k = B("k") h = A("h") b.t = h m.x = n m.t = g l.t = n g...
7
10
1.428571
0.238095
2
3.5
2
1
1.5
5
3
2
3
0.428571
3
0.3
3
2
4
2.5
2
4
4
1
594
class A: def __init__(self, txt: str): self.y: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt n = A("n") b = B("b") h = A("h") j = B("j") l = B("l") m = B("m") c = A("c") n.y = h n.t = c b.o = n h.y = n h...
n"
class A: def __init__(self, txt: str): self.y: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt n = A("n") b = B("b") h = A("h") j = B("j") l = B("l") m = B("m") c = A("c") n.y = h n.t = c b.o = n h.y = n h...
7
9
1.285714
0.214286
2
3.5
2
1
1.5
5
3
1
4
0.571429
5
0.555556
2
2
4
2.666667
3
3
2
2
595
class A: def __init__(self, txt: str): self.p: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.s: B = None self.txt = txt d = A("d") k = B("k") j = A("j") i = B("i") h = B("h") n = B("n") c = B("c") m = B("m"...
h"
class A: def __init__(self, txt: str): self.p: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.s: B = None self.txt = txt d = A("d") k = B("k") j = A("j") i = B("i") h = B("h") n = B("n") c = B("c") m = B("m"...
9
18
2
0.25
2
4.5
2
2
2
7
2
2
5
0.555556
5
0.277778
3
3
3
3
2
6
4
1
596
class A: def __init__(self, txt: str): self.r: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.o: A = None self.txt = txt j = A("j") a = B("a") g = B("g") c = A("c") e = B("e") f = B("f") l = A("l") i = B("i"...
l"
class A: def __init__(self, txt: str): self.r: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.o: A = None self.txt = txt j = A("j") a = B("a") g = B("g") c = A("c") e = B("e") f = B("f") l = A("l") i = B("i"...
8
16
2
0.285714
2
4
2
2
2
6
1
1
7
0.875
6
0.375
0
null
null
null
2
5
5
1
597
class A: def __init__(self, txt: str): self.y: B = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt e = A("e") g = B("g") c = B("c") n = A("n") j = B("j") i = B("i") e.y = c e.s = n g.q = c c.q = i n.y = i n.s ...
e"
class A: def __init__(self, txt: str): self.y: B = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt e = A("e") g = B("g") c = B("c") n = A("n") j = B("j") i = B("i") e.y = c e.s = n g.q = c c.q = i n.y = i n.s ...
6
8
1.333333
0.266667
2
3
2
1
1.5
4
3
2
2
0.333333
2
0.25
3
2
4
2.5
1
4
4
1
598
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt l = A("l") h = B("h") n = B("n") b = B("b") m = A("m") d = A("d") g = A("g") l.p = h h.y = m n.y = l b.y = l m.p = n d.p = b g.p = b as...
l"
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt l = A("l") h = B("h") n = B("n") b = B("b") m = A("m") d = A("d") g = A("g") l.p = h h.y = m n.y = l b.y = l m.p = n d.p = b g.p = b as...
7
7
1
0.166667
2
3.5
1
1
1
4
2
1
4
0.571429
4
0.571429
1
4
4
4
2
2
1
1
599
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt n = A("n") m = B("m") e = B("e") g = B("g") c = A("c") b = A("b") h = B("h") a = B("a") k = A("k") n.p = b m.y = a e.y = a g.y = m c.p ...
n"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt n = A("n") m = B("m") e = B("e") g = B("g") c = A("c") b = A("b") h = B("h") a = B("a") k = A("k") n.p = b m.y = a e.y = a g.y = m c.p ...
9
9
1
0.125
2
4.5
1
1
1
5
2
2
3
0.333333
3
0.333333
3
3
3
3
1
5
5
1