id
int64
0
9k
prompt
stringlengths
265
3.32k
answer
stringclasses
14 values
pythoncode
stringlengths
267
3.32k
num_nodes
int64
3
10
num_edges
int64
3
53
avg_node_edge
float64
1
5.3
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.6
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
8
longest_cycle
int64
2
10
average_cycle
float64
2
8
unique_edge_label
int64
1
9
max_label_occurrences
int64
1
10
max_label_consecutive
int64
1
10
max_node_outdegree
int64
1
4
900
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.x: A = None self.txt = txt f = A("f") l = B("l") n = B("n") c = B("c") f.t = c l.o = n l.x = f n.o = c n.x = f c.o = l c.x = f assert c.x...
c"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.x: A = None self.txt = txt f = A("f") l = B("l") n = B("n") c = B("c") f.t = c l.o = n l.x = f n.o = c n.x = f c.o = l c.x = f assert c.x...
4
7
1.75
0.583333
2
2
2
1
1.5
4
3
2
2
0.5
2
0.285714
3
2
4
2.5
2
2
1
1
901
class A: def __init__(self, txt: str): self.z: A = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.w: A = None self.txt = txt e = A("e") i = B("i") n = B("n") c = B("c") f = A("f") g = A("g") k = B("k") a = B("a"...
j"
class A: def __init__(self, txt: str): self.z: A = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.w: A = None self.txt = txt e = A("e") i = B("i") n = B("n") c = B("c") f = A("f") g = A("g") k = B("k") a = B("a"...
9
14
1.555556
0.194444
2
4.5
2
2
2
4
3
2
2
0.222222
3
0.214286
3
2
4
2.5
2
3
2
2
902
class A: def __init__(self, txt: str): self.x: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.u: A = None self.txt = txt f = A("f") b = B("b") n = A("n") f.x = b f.p = b b.s = f b.u = n n.x = b n.p = b asse...
b"
class A: def __init__(self, txt: str): self.x: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.u: A = None self.txt = txt f = A("f") b = B("b") n = A("n") f.x = b f.p = b b.s = f b.u = n n.x = b n.p = b asse...
3
4
1.333333
0.666667
2
1.5
2
2
2
3
2
2
2
0.666667
2
0.5
2
2
2
2
2
2
1
1
903
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.u: B = None self.txt = txt m = A("m") d = B("d") g = A("g") c = B("c") m.t = g d.y = c d.u = c g.t = m c.y = d c.u = d assert g.t.t.t.t.t...
g"
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.u: B = None self.txt = txt m = A("m") d = B("d") g = A("g") c = B("c") m.t = g d.y = c d.u = c g.t = m c.y = d c.u = d assert g.t.t.t.t.t...
4
4
1
0.333333
2
2
2
1
1.5
4
3
2
2
0.5
2
0.5
3
2
4
2.5
1
4
4
1
904
class A: def __init__(self, txt: str): self.x: B = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.w: A = None self.txt = txt c = A("c") f = B("f") a = A("a") g = A("g") c.x = f c.z = f f.y = a f.w = a a.x = f a...
a"
class A: def __init__(self, txt: str): self.x: B = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.w: A = None self.txt = txt c = A("c") f = B("f") a = A("a") g = A("g") c.x = f c.z = f f.y = a f.w = a a.x = f a...
4
4
1
0.333333
2
2
2
2
2
4
2
1
3
0.75
4
1
2
2
2
2
3
2
1
2
905
class A: def __init__(self, txt: str): self.u: A = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt h = A("h") b = B("b") m = B("m") l = B("l") n = A("n") e = A("e") i = B("i") c = A("c") h.u = e h.q = n b.x = ...
h"
class A: def __init__(self, txt: str): self.u: A = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt h = A("h") b = B("b") m = B("m") l = B("l") n = A("n") e = A("e") i = B("i") c = A("c") h.u = e h.q = n b.x = ...
8
12
1.5
0.214286
2
4
2
1
1.5
6
3
2
4
0.5
5
0.416667
3
2
4
2.5
3
4
3
2
906
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 m = A("m") a = B("a") i = A("i") c = B("c") l = A("l") f = A("f") n = B("n") m.w = i a.t = f i.w = l c.t = l l.w = f f.w = i n.t = f as...
i"
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 m = A("m") a = B("a") i = A("i") c = B("c") l = A("l") f = A("f") n = B("n") m.w = i a.t = f i.w = l c.t = l l.w = f f.w = i n.t = f as...
7
7
1
0.166667
2
3.5
1
1
1
3
2
1
3
0.428571
3
0.428571
1
3
3
3
1
3
3
1
907
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt n = A("n") e = B("e") m = A("m") f = A("f") l = A("l") h = B("h") a = A("a") n.u = m e.o = h m.u = f f.u = n l.u = n h.o = e a.u = f as...
h"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt n = A("n") e = B("e") m = A("m") f = A("f") l = A("l") h = B("h") a = A("a") n.u = m e.o = h m.u = f f.u = n l.u = n h.o = e a.u = f as...
7
7
1
0.166667
2
3.5
1
1
1
4
3
2
2
0.285714
2
0.285714
3
2
4
2.5
1
4
4
1
908
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt d = A("d") n = B("n") a = A("a") d.v = n n.p = d a.v = n assert n.p.v.p.txt == "
d"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt d = A("d") n = B("n") a = A("a") d.v = n n.p = d a.v = n assert n.p.v.p.txt == "d"
3
3
1
0.5
2
1.5
1
1
1
3
2
2
2
0.666667
2
0.666667
2
2
2
2
2
2
1
1
909
class A: def __init__(self, txt: str): self.u: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.q: B = None self.txt = txt n = A("n") c = B("c") g = A("g") l = A("l") h = B("h") a = A("a") j = B("j") n.u = a ...
g"
class A: def __init__(self, txt: str): self.u: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.q: B = None self.txt = txt n = A("n") c = B("c") g = A("g") l = A("l") h = B("h") a = A("a") j = B("j") n.u = a ...
7
13
1.857143
0.309524
2
3.5
2
2
2
7
3
3
3
0.428571
4
0.307692
5
2
5
3.285714
2
5
2
2
910
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.q: A = None self.txt = txt f = A("f") a = B("a") c = B("c") g = B("g") b = A("b") e = B("e") i = B("i") n = B("n") k = A("k") f.p = g a.y...
a"
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.q: A = None self.txt = txt f = A("f") a = B("a") c = B("c") g = B("g") b = A("b") e = B("e") i = B("i") n = B("n") k = A("k") f.p = g a.y...
9
13
1.444444
0.180556
2
4.5
2
1
1.5
4
1
1
5
0.555556
4
0.307692
0
null
null
null
3
2
1
1
911
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt g = A("g") f = B("f") b = B("b") d = A("d") h = B("h") c = A("c") m = A("m") e = A("e") a = B("a") l = A("l") g.o = f f.o = g b.o = c d...
f"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt g = A("g") f = B("f") b = B("b") d = A("d") h = B("h") c = A("c") m = A("m") e = A("e") a = B("a") l = A("l") g.o = f f.o = g b.o = c d...
10
10
1
0.111111
2
5
1
1
1
8
5
4
2
0.2
2
0.2
7
2
8
3.75
1
8
8
1
912
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.s: A = None self.txt = txt i = A("i") n = B("n") c = B("c") k = B("k") e = B("e") d = B("d") b = A("b") g = A("g") a = B("a") l = B("l") ...
b"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.s: A = None self.txt = txt i = A("i") n = B("n") c = B("c") k = B("k") e = B("e") d = B("d") b = A("b") g = A("g") a = B("a") l = B("l") ...
10
14
1.4
0.155556
2
5
2
1
1.5
4
2
2
3
0.3
3
0.214286
2
2
2
2
2
3
3
1
913
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt l = A("l") d = B("d") k = B("k") g = A("g") f = A("f") c = A("c") j = B("j") l.x = f d.y = j k.y = j g.x = f f.x = l c.x = g j.y = d as...
d"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt l = A("l") d = B("d") k = B("k") g = A("g") f = A("f") c = A("c") j = B("j") l.x = f d.y = j k.y = j g.x = f f.x = l c.x = g j.y = 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
914
class A: def __init__(self, txt: str): self.t: B = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.p: B = None self.txt = txt e = A("e") i = B("i") b = A("b") j = B("j") l = B("l") k = A("k") e.t = i e.v = i i.y...
i"
class A: def __init__(self, txt: str): self.t: B = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.p: B = None self.txt = txt e = A("e") i = B("i") b = A("b") j = B("j") l = B("l") k = A("k") e.t = i e.v = i i.y...
6
9
1.5
0.3
2
3
2
2
2
3
2
1
3
0.5
3
0.333333
1
2
2
2
2
2
2
1
915
class A: def __init__(self, txt: str): self.w: A = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.q: B = None self.txt = txt b = A("b") m = B("m") g = A("g") k = A("k") e = A("e") l = A("l") a = B("a") b.w = k ...
b"
class A: def __init__(self, txt: str): self.w: A = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.q: B = None self.txt = txt b = A("b") m = B("m") g = A("g") k = A("k") e = A("e") l = A("l") a = B("a") b.w = k ...
7
12
1.714286
0.285714
2
3.5
2
2
2
5
2
2
4
0.571429
4
0.333333
2
2
2
2
1
5
5
1
916
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.w: A = None self.txt = txt b = A("b") j = B("j") i = A("i") g = B("g") b.w = g j.v = g j.w = i i.w = j g.v = j g.w = i assert i.w.w.w.txt...
j"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.w: A = None self.txt = txt b = A("b") j = B("j") i = A("i") g = B("g") b.w = g j.v = g j.w = i i.w = j g.v = j g.w = i assert i.w.w.w.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
917
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.z: B = None self.txt = txt j = A("j") i = B("i") g = A("g") l = A("l") f = A("f") h = B("h") n = A("n") j.o = n i.u = g i.z = h g.o = n l...
g"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.z: B = None self.txt = txt j = A("j") i = B("i") g = A("g") l = A("l") f = A("f") h = B("h") n = A("n") j.o = n i.u = g i.z = h g.o = n l...
7
9
1.285714
0.214286
2
3.5
2
1
1.5
7
3
2
4
0.571429
4
0.444444
4
3
6
3.6
2
6
6
1
918
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.x: A = None self.txt = txt d = A("d") l = B("l") i = A("i") e = A("e") c = B("c") m = B("m") j = A("j") a = A("a") f = A("f") d.p = i l.q...
d"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.x: A = None self.txt = txt d = A("d") l = B("l") i = A("i") e = A("e") c = B("c") m = B("m") j = A("j") a = A("a") f = A("f") d.p = i l.q...
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
2
3
3
1
919
class A: def __init__(self, txt: str): self.y: A = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt k = A("k") a = B("a") f = A("f") l = B("l") b = B("b") d = B("d") n = A("n") j = A("j") h = A("h") k.y = j k.s...
k"
class A: def __init__(self, txt: str): self.y: A = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt k = A("k") a = B("a") f = A("f") l = B("l") b = B("b") d = B("d") n = A("n") j = A("j") h = A("h") k.y = j k.s...
9
13
1.444444
0.180556
2
4.5
2
1
1.5
8
2
2
6
0.666667
6
0.461538
3
3
3
3
3
4
2
1
920
class A: def __init__(self, txt: str): self.v: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt b = A("b") i = B("i") n = B("n") g = A("g") m = B("m") b.v = g b.r = i i.r = b n.r = g g.v = b g.r = m m.r = b...
b"
class A: def __init__(self, txt: str): self.v: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt b = A("b") i = B("i") n = B("n") g = A("g") m = B("m") b.v = g b.r = i i.r = b n.r = g g.v = b g.r = m m.r = b...
5
7
1.4
0.35
2
2.5
2
1
1.5
5
2
1
4
0.8
5
0.714286
2
2
3
2.5
2
3
3
2
921
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.txt = txt e = A("e") g = B("g") j = B("j") e.w = j g.t = e j.t = e assert e.w.t.w.txt == "
j"
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.txt = txt e = A("e") g = B("g") j = B("j") e.w = j g.t = e j.t = e assert e.w.t.w.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
2
2
1
1
922
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.v: B = None self.txt = txt d = A("d") e = B("e") j = A("j") i = B("i") l = B("l") k = A("k") d.s = e d.v = i e.v = l j.s = l j.v = l i.v ...
i"
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.v: B = None self.txt = txt d = A("d") e = B("e") j = A("j") i = B("i") l = B("l") k = A("k") d.s = e d.v = i e.v = l j.s = l j.v = l i.v ...
6
8
1.333333
0.266667
2
3
2
1
1.5
3
2
2
2
0.333333
2
0.25
2
2
2
2
1
3
3
1
923
class A: def __init__(self, txt: str): self.t: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt b = A("b") m = B("m") c = B("c") h = B("h") n = B("n") i = A("i") f = A("f") b.t = n b.u = c m.r = c c.r = m h...
m"
class A: def __init__(self, txt: str): self.t: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt b = A("b") m = B("m") c = B("c") h = B("h") n = B("n") i = A("i") f = A("f") b.t = n b.u = c m.r = c c.r = m h...
7
10
1.428571
0.238095
2
3.5
2
1
1.5
6
3
2
4
0.571429
4
0.4
3
2
4
2.5
2
5
5
1
924
class A: def __init__(self, txt: str): self.q: A = None 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 a = A("a") l = B("l") d = A("d") h = B("h") n = B("n") f = B("f") g = B("g") a.q = d ...
d"
class A: def __init__(self, txt: str): self.q: A = None 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 a = A("a") l = B("l") d = A("d") h = B("h") n = B("n") f = B("f") g = B("g") a.q = d ...
7
12
1.714286
0.285714
2
3.5
2
2
2
3
2
1
2
0.285714
3
0.25
2
2
2
2
2
2
2
2
925
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.t: A = None self.v: B = None self.txt = txt f = A("f") g = B("g") b = B("b") i = A("i") h = B("h") e = A("e") d = A("d") a = A("a"...
e"
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.t: A = None self.v: B = None self.txt = txt f = A("f") g = B("g") b = B("b") i = A("i") h = B("h") e = A("e") d = A("d") a = A("a"...
10
20
2
0.222222
2
5
2
2
2
3
2
1
3
0.3
3
0.15
1
2
2
2
2
2
1
1
926
class A: def __init__(self, txt: str): self.s: A = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt m = A("m") g = B("g") f = B("f") l = A("l") a = A("a") m.s = a m.y = g g.t = l f.t = a l.s = a l.y = g a.s = l...
a"
class A: def __init__(self, txt: str): self.s: A = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt m = A("m") g = B("g") f = B("f") l = A("l") a = A("a") m.s = a m.y = g g.t = l f.t = a l.s = a l.y = g a.s = l...
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
2
1
2
927
class A: def __init__(self, txt: str): self.s: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt g = A("g") n = B("n") c = A("c") l = B("l") d = A("d") i = A("i") k = B("k") b = B("b") a = B("a") j = A("j") ...
a"
class A: def __init__(self, txt: str): self.s: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt g = A("g") n = B("n") c = A("c") l = B("l") d = A("d") i = A("i") k = B("k") b = B("b") a = B("a") j = A("j") ...
10
14
1.4
0.155556
2
5
2
1
1.5
5
3
3
2
0.2
2
0.142857
4
2
4
2.666667
1
5
5
1
928
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.w: A = None self.txt = txt h = A("h") i = B("i") e = B("e") d = A("d") g = B("g") a = A("a") c = B("c") j = A("j") l = A("l") k = B("k") ...
l"
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.w: A = None self.txt = txt h = A("h") i = B("i") e = B("e") d = A("d") g = B("g") a = A("a") c = B("c") j = A("j") l = A("l") k = B("k") ...
10
15
1.5
0.166667
2
5
2
1
1.5
8
3
3
5
0.5
5
0.333333
4
2
4
2.666667
3
5
5
2
929
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt m = A("m") e = B("e") c = A("c") f = B("f") a = B("a") n = A("n") j = A("j") l = A("l") m.u = e e.x = j c.u = a f.x = n a.x = n n.u = f...
n"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt m = A("m") e = B("e") c = A("c") f = B("f") a = B("a") n = A("n") j = A("j") l = A("l") m.u = e e.x = j c.u = a f.x = n a.x = n n.u = 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
2
4
1
1
930
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt i = A("i") h = B("h") c = B("c") l = A("l") k = B("k") j = A("j") n = A("n") g = B("g") i.o = l h.x = l c.x = n l.o = j k.x = i j.o = n...
j"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt i = A("i") h = B("h") c = B("c") l = A("l") k = B("k") j = A("j") n = A("n") g = B("g") i.o = l h.x = l c.x = n l.o = j k.x = i j.o = n...
8
8
1
0.142857
2
4
1
1
1
6
3
3
3
0.375
3
0.375
4
2
4
2.666667
2
5
5
1
931
class A: def __init__(self, txt: str): self.t: B = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.z: B = None self.txt = txt e = A("e") g = B("g") m = B("m") e.t = g e.w = m g.p = e g.z = m m.p = e m.z = g asse...
m"
class A: def __init__(self, txt: str): self.t: B = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.z: B = None self.txt = txt e = A("e") g = B("g") m = B("m") e.t = g e.w = m g.p = e g.z = m m.p = e m.z = g asse...
3
6
2
1
2
1.5
2
2
2
3
2
2
2
0.666667
2
0.333333
2
2
2
2
2
2
1
1
932
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.x: A = None self.txt = txt l = A("l") e = B("e") m = B("m") i = A("i") k = B("k") n = A("n") l.s = e e.z = l e.x = i m.z = l m.x = l i.s ...
i"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.x: A = None self.txt = txt l = A("l") e = B("e") m = B("m") i = A("i") k = B("k") n = A("n") l.s = e e.z = l e.x = i m.z = l m.x = l i.s ...
6
7
1.166667
0.233333
2
3
2
1
1.5
6
3
2
3
0.5
4
0.571429
4
2
4
2.4
3
3
1
2
933
class A: def __init__(self, txt: str): self.o: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.q: A = None self.txt = txt c = A("c") b = B("b") d = A("d") n = B("n") c.o = n c.r = n b.r = n b.q = c d.o = n d...
n"
class A: def __init__(self, txt: str): self.o: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.q: A = None self.txt = txt c = A("c") b = B("b") d = A("d") n = B("n") c.o = n c.r = n b.r = n b.q = c d.o = n d...
4
7
1.75
0.583333
2
2
2
2
2
4
2
2
3
0.75
3
0.428571
2
2
2
2
2
2
1
1
934
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.s: A = None self.txt = txt h = A("h") d = B("d") i = A("i") m = B("m") h.o = d h.w = i d.s = i i.o = d i.w = h m.s = h assert d.s.o.s.w.t...
h"
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.s: A = None self.txt = txt h = A("h") d = B("d") i = A("i") m = B("m") h.o = d h.w = i d.s = i i.o = d i.w = h m.s = h assert d.s.o.s.w.t...
4
6
1.5
0.5
2
2
2
1
1.5
4
2
2
3
0.75
3
0.5
2
2
2
2
3
2
1
2
935
class A: def __init__(self, txt: str): self.p: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt n = A("n") g = B("g") j = A("j") b = A("b") e = A("e") c = A("c") n.p = e n.x = e g.p = n j.p = c j.x = c b.p ...
e"
class A: def __init__(self, txt: str): self.p: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt n = A("n") g = B("g") j = A("j") b = A("b") e = A("e") c = A("c") n.p = e n.x = e g.p = n j.p = c j.x = c b.p ...
6
9
1.5
0.3
2
3
2
1
1.5
4
2
1
4
0.666667
4
0.444444
1
3
3
3
2
2
2
1
936
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.q: A = None self.txt = txt a = A("a") c = B("c") b = B("b") n = A("n") g = B("g") a.u = n c.r = a c.q = n b.r = a b.q = n n.u = a g.r = a...
a"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.q: A = None self.txt = txt a = A("a") c = B("c") b = B("b") n = A("n") g = B("g") a.u = n c.r = a c.q = n b.r = a b.q = n n.u = a g.r = 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
937
class A: def __init__(self, txt: str): self.u: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.z: A = None self.txt = txt j = A("j") g = B("g") n = A("n") j.u = g j.o = g g.r = n g.z = n n.u = g n.o = g asse...
n"
class A: def __init__(self, txt: str): self.u: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.z: A = None self.txt = txt j = A("j") g = B("g") n = A("n") j.u = g j.o = g g.r = n g.z = n n.u = g n.o = g asse...
3
3
1
0.5
2
1.5
2
2
2
3
2
2
2
0.666667
2
0.666667
2
2
2
2
2
2
1
1
938
class A: def __init__(self, txt: str): self.u: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.p: B = None self.txt = txt j = A("j") f = B("f") n = B("n") d = B("d") a = A("a") g = B("g") e = A("e") i = B("i"...
g"
class A: def __init__(self, txt: str): self.u: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.p: B = None self.txt = txt j = A("j") f = B("f") n = B("n") d = B("d") a = A("a") g = B("g") e = A("e") i = B("i"...
10
19
1.9
0.211111
2
5
2
2
2
9
3
2
5
0.5
7
0.368421
5
2
8
4.428571
2
5
3
2
939
class A: def __init__(self, txt: str): self.r: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt i = A("i") a = B("a") g = B("g") i.r = g i.q = a a.o = i g.o = i assert g.o.r.o.txt == "
i"
class A: def __init__(self, txt: str): self.r: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt i = A("i") a = B("a") g = B("g") i.r = g i.q = a a.o = i g.o = i assert g.o.r.o.txt == "i"
3
4
1.333333
0.666667
2
1.5
2
1
1.5
3
2
2
2
0.666667
2
0.5
2
2
2
2
2
2
1
1
940
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.r: B = None self.txt = txt f = A("f") l = B("l") b = B("b") f.r = l l.q = f l.r = b b.q = f b.r = l assert l.q.r.q.txt == "
f"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.r: B = None self.txt = txt f = A("f") l = B("l") b = B("b") f.r = l l.q = f l.r = b b.q = f b.r = l assert l.q.r.q.txt == "f"
3
5
1.666667
0.833333
2
1.5
2
1
1.5
3
2
2
2
0.666667
2
0.4
2
2
2
2
2
2
1
1
941
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.r: A = None self.txt = txt e = A("e") c = B("c") n = A("n") d = A("d") h = B("h") l = A("l") k = A("k") j = B("j") f = B("f") e.s = k c.y...
l"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.r: A = None self.txt = txt e = A("e") c = B("c") n = A("n") d = A("d") h = B("h") l = A("l") k = A("k") j = B("j") f = B("f") e.s = k c.y...
9
12
1.333333
0.166667
2
4.5
2
1
1.5
6
4
3
2
0.222222
2
0.166667
5
2
6
3.111111
1
6
6
1
942
class A: def __init__(self, txt: str): self.z: A = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt l = A("l") i = B("i") e = A("e") l.z = e l.y = i i.p = e e.z = l e.y = i assert e.y.p.z.txt == "
l"
class A: def __init__(self, txt: str): self.z: A = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt l = A("l") i = B("i") e = A("e") l.z = e l.y = i i.p = e e.z = l e.y = i assert e.y.p.z.txt == "l"
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
943
class A: def __init__(self, txt: str): self.z: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.r: A = None self.txt = txt f = A("f") j = B("j") m = B("m") i = A("i") k = A("k") f.z = m f.w = k j.t = k j.r = ...
f"
class A: def __init__(self, txt: str): self.z: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.r: A = None self.txt = txt f = A("f") j = B("j") m = B("m") i = A("i") k = A("k") f.z = m f.w = k j.t = k j.r = ...
5
9
1.8
0.45
2
2.5
2
2
2
4
2
2
3
0.6
3
0.333333
2
2
2
2
2
2
1
1
944
class A: def __init__(self, txt: str): self.s: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.x: B = None self.txt = txt l = A("l") b = B("b") a = B("a") j = A("j") g = B("g") m = B("m") h = B("h") l.s = h ...
j"
class A: def __init__(self, txt: str): self.s: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.x: B = None self.txt = txt l = A("l") b = B("b") a = B("a") j = A("j") g = B("g") m = B("m") h = B("h") l.s = h ...
7
14
2
0.333333
2
3.5
2
2
2
6
2
2
4
0.571429
4
0.285714
3
3
3
3
4
2
1
1
945
class A: def __init__(self, txt: str): self.v: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.u: B = None self.txt = txt k = A("k") m = B("m") j = A("j") l = B("l") f = B("f") k.v = j k.q = f m.x = f m.u = ...
m"
class A: def __init__(self, txt: str): self.v: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.u: B = None self.txt = txt k = A("k") m = B("m") j = A("j") l = B("l") f = B("f") k.v = j k.q = f m.x = f m.u = ...
5
8
1.6
0.4
2
2.5
2
2
2
3
2
1
3
0.6
3
0.375
1
2
2
2
2
2
2
1
946
class A: def __init__(self, txt: str): self.t: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt c = A("c") e = B("e") i = A("i") c.t = e c.w = i e.q = c i.t = e i.w = c assert i.w.w.w.txt == "
c"
class A: def __init__(self, txt: str): self.t: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt c = A("c") e = B("e") i = A("i") c.t = e c.w = i e.q = c i.t = e i.w = c assert i.w.w.w.txt == "c"
3
5
1.666667
0.833333
2
1.5
2
1
1.5
3
2
2
2
0.666667
2
0.4
2
2
2
2
1
3
3
1
947
class A: def __init__(self, txt: str): self.x: A = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt i = A("i") d = B("d") m = B("m") l = A("l") j = A("j") n = A("n") c = A("c") e = B("e") g = B("g") i.x = n i.r...
e"
class A: def __init__(self, txt: str): self.x: A = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt i = A("i") d = B("d") m = B("m") l = A("l") j = A("j") n = A("n") c = A("c") e = B("e") g = B("g") i.x = n i.r...
9
14
1.555556
0.194444
2
4.5
2
1
1.5
4
2
2
3
0.333333
3
0.214286
2
2
2
2
1
4
4
1
948
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt l = A("l") h = B("h") i = A("i") n = B("n") f = A("f") g = A("g") l.y = h h.p = n i.y = n n.p = h f.y = n g.y = n assert g.y.p.p.p.p.p....
h"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt l = A("l") h = B("h") i = A("i") n = B("n") f = A("f") g = A("g") l.y = h h.p = n i.y = n n.p = h f.y = n g.y = n assert g.y.p.p.p.p.p....
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
5
5
1
949
class A: def __init__(self, txt: str): self.s: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.v: A = None self.txt = txt h = A("h") d = B("d") g = A("g") a = A("a") n = B("n") f = A("f") c = A("c") e = B("e"...
n"
class A: def __init__(self, txt: str): self.s: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.v: A = None self.txt = txt h = A("h") d = B("d") g = A("g") a = A("a") n = B("n") f = A("f") c = A("c") e = B("e"...
10
18
1.8
0.2
2
5
2
2
2
9
4
2
6
0.6
8
0.444444
4
2
8
4.571429
4
4
1
2
950
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.r: A = None self.txt = txt d = A("d") j = B("j") b = B("b") c = A("c") g = A("g") i = B("i") a = A("a") n = A("n") m = B("m") d.t = j j.q...
i"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.r: A = None self.txt = txt d = A("d") j = B("j") b = B("b") c = A("c") g = A("g") i = B("i") a = A("a") n = A("n") m = B("m") d.t = j j.q...
9
13
1.444444
0.180556
2
4.5
2
1
1.5
3
2
1
3
0.333333
3
0.230769
1
2
2
2
2
2
1
1
951
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt i = A("i") d = B("d") j = B("j") k = A("k") n = B("n") m = A("m") b = A("b") e = B("e") i.x = k d.s = n j.s = n k.x = i n.s = e m.x = i...
k"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt i = A("i") d = B("d") j = B("j") k = A("k") n = B("n") m = A("m") b = A("b") e = B("e") i.x = k d.s = n j.s = n k.x = i n.s = e m.x = i...
8
8
1
0.142857
2
4
1
1
1
6
3
3
3
0.375
3
0.375
4
2
4
2.666667
1
6
6
1
952
class A: def __init__(self, txt: str): self.q: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt a = A("a") n = B("n") b = B("b") c = B("c") k = A("k") g = B("g") e = A("e") j = A("j") a.q = j a.x = e n.z = ...
e"
class A: def __init__(self, txt: str): self.q: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt a = A("a") n = B("n") b = B("b") c = B("c") k = A("k") g = B("g") e = A("e") j = A("j") a.q = j a.x = e n.z = ...
8
12
1.5
0.214286
2
4
2
1
1.5
3
1
1
4
0.5
3
0.25
0
null
null
null
2
2
2
1
953
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.v: A = None self.txt = txt a = A("a") j = B("j") g = A("g") a.x = j j.u = g j.v = a g.x = j assert a.x.v.x.txt == "
j"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.v: A = None self.txt = txt a = A("a") j = B("j") g = A("g") a.x = j j.u = g j.v = a g.x = j assert a.x.v.x.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
2
2
1
1
954
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.s: B = None self.txt = txt c = A("c") g = B("g") l = A("l") e = B("e") n = B("n") f = B("f") i = B("i") d = A("d") k = A("k") c.v = n g.t...
f"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.s: B = None self.txt = txt c = A("c") g = B("g") l = A("l") e = B("e") n = B("n") f = B("f") i = B("i") d = A("d") k = A("k") c.v = n g.t...
9
14
1.555556
0.194444
2
4.5
2
1
1.5
6
3
2
4
0.444444
4
0.285714
3
2
4
2.5
3
3
1
2
955
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt m = A("m") k = B("k") e = A("e") c = B("c") f = B("f") d = B("d") l = A("l") g = B("g") i = B("i") n = A("n") m.r = e k.z = d e.r = l c...
d"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt m = A("m") k = B("k") e = A("e") c = B("c") f = B("f") d = B("d") l = A("l") g = B("g") i = B("i") n = A("n") m.r = e k.z = d e.r = l c...
10
10
1
0.111111
2
5
1
1
1
7
3
3
3
0.3
3
0.3
5
3
6
3.857143
1
7
7
1
956
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.t: B = None self.txt = txt j = A("j") b = B("b") l = A("l") a = B("a") c = A("c") n = A("n") h = B("h") g = B("g") d = B("d") f = B("f") ...
d"
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.t: B = None self.txt = txt j = A("j") b = B("b") l = A("l") a = B("a") c = A("c") n = A("n") h = B("h") g = B("g") d = B("d") f = B("f") ...
10
15
1.5
0.166667
2
5
2
1
1.5
6
2
1
6
0.6
6
0.4
1
2
2
2
2
3
2
2
957
class A: def __init__(self, txt: str): self.y: A = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.y: A = None self.txt = txt n = A("n") m = B("m") j = B("j") b = A("b") i = A("i") f = A("f") n.y = b n.s = i m.p...
i"
class A: def __init__(self, txt: str): self.y: A = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.y: A = None self.txt = txt n = A("n") m = B("m") j = B("j") b = A("b") i = A("i") f = A("f") n.y = b n.s = i m.p...
6
12
2
0.4
2
3
2
2
2
3
2
1
3
0.5
3
0.25
1
2
2
2
2
2
2
1
958
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.v: A = None self.txt = txt f = A("f") e = B("e") a = B("a") i = A("i") f.t = a e.x = i e.v = i a.x = i a.v = f i.t = a assert f.t.v.t.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.v: A = None self.txt = txt f = A("f") e = B("e") a = B("a") i = A("i") f.t = a e.x = i e.v = i a.x = i a.v = f i.t = a assert f.t.v.t.txt...
4
5
1.25
0.416667
2
2
2
1
1.5
3
2
2
2
0.5
2
0.4
2
2
2
2
2
2
1
1
959
class A: def __init__(self, txt: str): self.y: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.t: B = None self.txt = txt h = A("h") c = B("c") a = B("a") e = A("e") h.y = a h.p = c c.p = e c.t = a a.p = h a...
a"
class A: def __init__(self, txt: str): self.y: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.t: B = None self.txt = txt h = A("h") c = B("c") a = B("a") e = A("e") h.y = a h.p = c c.p = e c.t = a a.p = h a...
4
7
1.75
0.583333
2
2
2
2
2
3
2
2
2
0.5
2
0.285714
2
2
2
2
2
2
1
1
960
class A: def __init__(self, txt: str): self.x: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt c = A("c") n = B("n") l = B("l") d = A("d") g = A("g") e = B("e") m = A("m") a = B("a") c.x = e c.w = m n.w = ...
n"
class A: def __init__(self, txt: str): self.x: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt c = A("c") n = B("n") l = B("l") d = A("d") g = A("g") e = B("e") m = A("m") a = B("a") c.x = e c.w = m n.w = ...
8
12
1.5
0.214286
2
4
2
1
1.5
8
5
4
2
0.25
2
0.166667
7
2
8
3.75
2
4
1
1
961
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.y: B = None self.txt = txt h = A("h") g = B("g") i = A("i") b = B("b") h.q = i g.x = h g.y = b i.q = h b.x = i b.y = g assert g.y.y.x.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.y: B = None self.txt = txt h = A("h") g = B("g") i = A("i") b = B("b") h.q = i g.x = h g.y = b i.q = h b.x = i b.y = g assert g.y.y.x.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
962
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.z: B = None self.txt = txt n = A("n") j = B("j") f = A("f") c = A("c") e = B("e") n.z = j j.s = f j.z = e f.z = e c.z = j e.s = n e.z = j...
e"
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.z: B = None self.txt = txt n = A("n") j = B("j") f = A("f") c = A("c") e = B("e") n.z = j j.s = f j.z = e f.z = e c.z = j e.s = n e.z = j...
5
7
1.4
0.35
2
2.5
2
1
1.5
3
1
1
4
0.8
3
0.428571
0
null
null
null
2
2
1
1
963
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt n = A("n") g = B("g") b = B("b") l = A("l") c = A("c") j = A("j") k = B("k") e = A("e") d = A("d") n.z = k g.s = b b.s = k l.z = g c.z ...
b"
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt n = A("n") g = B("g") b = B("b") l = A("l") c = A("c") j = A("j") k = B("k") e = A("e") d = A("d") n.z = k g.s = b b.s = k l.z = g c.z ...
9
9
1
0.125
2
4.5
1
1
1
3
2
1
3
0.333333
3
0.333333
1
2
2
2
2
2
2
1
964
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt k = A("k") e = B("e") a = A("a") j = A("j") m = A("m") b = B("b") g = B("g") k.s = j e.x = g a.s = j j.s = a m.s = a b.x = e g.x = b as...
b"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt k = A("k") e = B("e") a = A("a") j = A("j") m = A("m") b = B("b") g = B("g") k.s = j e.x = g a.s = j j.s = a m.s = a b.x = e g.x = b as...
7
7
1
0.166667
2
3.5
1
1
1
3
2
1
3
0.428571
3
0.428571
1
3
3
3
1
3
3
1
965
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.w: A = None self.txt = txt i = A("i") c = B("c") j = A("j") g = B("g") l = B("l") n = A("n") i.y = n c.t = g c.w = j j.y = n g.t = c g.w ...
n"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.w: A = None self.txt = txt i = A("i") c = B("c") j = A("j") g = B("g") l = B("l") n = A("n") i.y = n c.t = g c.w = j j.y = n g.t = c g.w ...
6
9
1.5
0.3
2
3
2
1
1.5
3
2
1
3
0.5
3
0.333333
1
2
2
2
2
2
2
1
966
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt i = A("i") j = B("j") d = A("d") l = B("l") g = A("g") m = B("m") a = B("a") b = B("b") n = B("n") i.w = d j.r = d d.w = g l.r = g g.w ...
g"
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt i = A("i") j = B("j") d = A("d") l = B("l") g = A("g") m = B("m") a = B("a") b = B("b") n = B("n") i.w = d j.r = d d.w = g l.r = g g.w ...
9
9
1
0.125
2
4.5
1
1
1
6
2
2
4
0.444444
4
0.444444
3
3
3
3
2
5
5
1
967
class A: def __init__(self, txt: str): self.y: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt j = A("j") f = B("f") l = A("l") n = B("n") h = A("h") k = A("k") c = A("c") j.y = f j.o = k f.p = n l.y = f l...
f"
class A: def __init__(self, txt: str): self.y: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt j = A("j") f = B("f") l = A("l") n = B("n") h = A("h") k = A("k") c = A("c") j.y = f j.o = k f.p = n l.y = f l...
7
12
1.714286
0.285714
2
3.5
2
1
1.5
5
3
2
3
0.428571
3
0.25
3
2
4
2.5
2
4
4
1
968
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.u: B = None self.txt = txt n = A("n") e = B("e") k = B("k") a = A("a") i = A("i") b = A("b") n.x = e e.v = n e.u = k k.v = a k.u = e a.x ...
e"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.u: B = None self.txt = txt n = A("n") e = B("e") k = B("k") a = A("a") i = A("i") b = A("b") n.x = e e.v = n e.u = k k.v = a k.u = e a.x ...
6
8
1.333333
0.266667
2
3
2
1
1.5
3
2
1
3
0.5
3
0.375
1
2
2
2
2
2
2
1
969
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt i = A("i") f = B("f") j = A("j") e = A("e") i.r = e f.s = i j.r = e e.r = i assert e.r.r.r.txt == "
i"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt i = A("i") f = B("f") j = A("j") e = A("e") i.r = e f.s = i j.r = e e.r = i assert e.r.r.r.txt == "i"
4
4
1
0.333333
2
2
1
1
1
3
2
2
2
0.5
2
0.5
2
2
2
2
1
3
3
1
970
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.u: A = None self.txt = txt l = A("l") g = B("g") k = A("k") i = A("i") n = A("n") l.q = g g.r = l g.u = n k.q = g i.q = g n.q = g assert ...
g"
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.u: A = None self.txt = txt l = A("l") g = B("g") k = A("k") i = A("i") n = A("n") l.q = g g.r = l g.u = n k.q = g i.q = g n.q = g assert ...
5
6
1.2
0.3
2
2.5
2
1
1.5
3
2
2
2
0.4
2
0.333333
2
2
2
2
2
2
1
1
971
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.y: B = None self.p: A = None self.txt = txt g = A("g") e = B("e") i = A("i") n = A("n") c = B("c") k = B("k") b = A("b") g.y = k ...
c"
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.y: B = None self.p: A = None self.txt = txt g = A("g") e = B("e") i = A("i") n = A("n") c = B("c") k = B("k") b = A("b") g.y = k ...
7
11
1.571429
0.261905
2
3.5
2
2
2
6
2
1
5
0.714286
6
0.545455
2
2
3
2.5
2
5
3
2
972
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.z: A = None self.txt = txt a = A("a") n = B("n") d = A("d") a.w = d n.o = a n.z = d d.w = a assert a.w.w.w.txt == "
d"
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.z: A = None self.txt = txt a = A("a") n = B("n") d = A("d") a.w = d n.o = a n.z = d d.w = a assert a.w.w.w.txt == "d"
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
973
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt j = A("j") c = B("c") b = A("b") j.y = b c.s = j b.y = j assert c.s.y.y.txt == "
j"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt j = A("j") c = B("c") b = A("b") j.y = b c.s = j b.y = j assert c.s.y.y.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
974
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt i = A("i") l = B("l") m = B("m") a = B("a") n = B("n") f = A("f") k = B("k") c = B("c") j = A("j") i.p = j l.t = a m.t = n a.t = n n.t ...
i"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt i = A("i") l = B("l") m = B("m") a = B("a") n = B("n") f = A("f") k = B("k") c = B("c") j = A("j") i.p = j l.t = a m.t = n a.t = n n.t ...
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
975
class A: def __init__(self, txt: str): self.q: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt j = A("j") g = B("g") c = A("c") n = B("n") h = B("h") f = A("f") a = A("a") d = B("d") j.q = a j.r = g g.w = ...
h"
class A: def __init__(self, txt: str): self.q: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt j = A("j") g = B("g") c = A("c") n = B("n") h = B("h") f = A("f") a = A("a") d = B("d") j.q = a j.r = g g.w = ...
8
12
1.5
0.214286
2
4
2
1
1.5
8
3
2
5
0.625
5
0.416667
4
3
6
3.6
2
7
7
1
976
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.t: A = None self.txt = txt a = A("a") j = B("j") k = B("k") c = A("c") m = B("m") e = B("e") i = B("i") n = B("n") f = B("f") l = B("l") ...
i"
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.t: A = None self.txt = txt a = A("a") j = B("j") k = B("k") c = A("c") m = B("m") e = B("e") i = B("i") n = B("n") f = B("f") l = B("l") ...
10
18
1.8
0.2
2
5
2
1
1.5
9
3
3
6
0.6
6
0.333333
4
2
4
2.666667
3
4
1
2
977
class A: def __init__(self, txt: str): self.p: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt a = A("a") l = B("l") g = A("g") h = A("h") n = B("n") i = A("i") e = B("e") a.p = e a.r = e l.y = e g.p = n g...
e"
class A: def __init__(self, txt: str): self.p: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt a = A("a") l = B("l") g = A("g") h = A("h") n = B("n") i = A("i") e = B("e") a.p = e a.r = e l.y = e g.p = n g...
7
9
1.285714
0.214286
2
3.5
2
1
1.5
6
4
3
2
0.285714
2
0.222222
5
2
6
3.111111
1
6
6
1
978
class A: def __init__(self, txt: str): self.u: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt g = A("g") n = B("n") a = B("a") f = B("f") h = B("h") d = A("d") l = B("l") g.u = h g.o = f n.s = d a.s = g f...
a"
class A: def __init__(self, txt: str): self.u: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt g = A("g") n = B("n") a = B("a") f = B("f") h = B("h") d = A("d") l = B("l") g.u = h g.o = f n.s = d a.s = g f...
7
9
1.285714
0.214286
2
3.5
2
1
1.5
6
2
1
5
0.714286
6
0.666667
2
2
6
4
3
3
1
2
979
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt i = A("i") d = B("d") k = B("k") m = B("m") h = A("h") i.z = h d.z = m k.z = m m.z = d h.z = i assert h.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.z: B = None self.txt = txt i = A("i") d = B("d") k = B("k") m = B("m") h = A("h") i.z = h d.z = m k.z = m m.z = d h.z = i assert h.z.z.z.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
1
3
3
1
980
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.v: B = None self.r: A = None self.txt = txt i = A("i") h = B("h") f = A("f") m = A("m") d = A("d") l = B("l") n = B("n") c = A("c"...
l"
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.v: B = None self.r: A = None self.txt = txt i = A("i") h = B("h") f = A("f") m = A("m") d = A("d") l = B("l") n = B("n") c = A("c"...
9
17
1.888889
0.236111
2
4.5
2
2
2
7
3
2
3
0.333333
4
0.235294
5
2
5
3.571429
4
2
1
2
981
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt l = A("l") h = B("h") n = B("n") m = B("m") i = B("i") g = A("g") b = A("b") d = B("d") a = B("a") f = A("f") l.o = i h.t = f n.t = l m...
f"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt l = A("l") h = B("h") n = B("n") m = B("m") i = B("i") g = A("g") b = A("b") d = B("d") a = B("a") f = A("f") l.o = i h.t = f n.t = l m...
10
10
1
0.111111
2
5
1
1
1
10
6
5
2
0.2
2
0.2
9
2
10
4.4
2
5
1
1
982
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt m = A("m") l = B("l") c = A("c") a = B("a") j = A("j") m.s = l l.y = a c.s = l a.y = l j.s = l assert m.s.y.y.txt == "
l"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt m = A("m") l = B("l") c = A("c") a = B("a") j = A("j") m.s = l l.y = a c.s = l a.y = l j.s = l assert m.s.y.y.txt == "l"
5
5
1
0.25
2
2.5
1
1
1
3
2
1
3
0.6
3
0.6
1
2
2
2
2
2
2
1
983
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.q: B = None self.txt = txt g = A("g") i = B("i") h = B("h") e = B("e") n = A("n") c = A("c") g.t = n i.x = e i.q = e h.x = e h.q = i e.x ...
e"
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.q: B = None self.txt = txt g = A("g") i = B("i") h = B("h") e = B("e") n = A("n") c = A("c") g.t = n i.x = e i.q = e h.x = e h.q = i e.x ...
6
7
1.166667
0.233333
2
3
2
1
1.5
3
2
1
3
0.5
3
0.428571
1
2
2
2
2
2
2
1
984
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.v: B = None self.x: A = None self.txt = txt n = A("n") g = B("g") b = A("b") e = A("e") i = B("i") m = B("m") k = B("k") d = B("d"...
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.v: B = None self.x: A = None self.txt = txt n = A("n") g = B("g") b = A("b") e = A("e") i = B("i") m = B("m") k = B("k") d = B("d"...
8
16
2
0.285714
2
4
2
2
2
6
2
2
5
0.625
5
0.3125
2
2
2
2
3
3
3
2
985
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.y: B = None self.txt = txt b = A("b") d = B("d") j = B("j") f = A("f") h = A("h") n = B("n") l = B("l") a = B("a") b.r = n d.r = a d.y = ...
a"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.y: B = None self.txt = txt b = A("b") d = B("d") j = B("j") f = A("f") h = A("h") n = B("n") l = B("l") a = B("a") b.r = n d.r = a d.y = ...
8
12
1.5
0.214286
2
4
2
1
1.5
6
3
2
4
0.5
5
0.416667
3
2
6
3.5
2
4
2
2
986
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.t: B = None self.txt = txt b = A("b") j = B("j") a = B("a") b.p = a j.z = a j.t = a a.z = j a.t = j assert b.p.z.z.txt == "
a"
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.t: B = None self.txt = txt b = A("b") j = B("j") a = B("a") b.p = a j.z = a j.t = a a.z = j a.t = j assert b.p.z.z.txt == "a"
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
2
1
987
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.p: A = None self.t: A = None self.txt = txt h = A("h") j = B("j") b = A("b") h.y = j h.s = b j.p = b j.t = h b.y = j b.s = h asse...
j"
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.p: A = None self.t: A = None self.txt = txt h = A("h") j = B("j") b = A("b") h.y = j h.s = b j.p = b j.t = h b.y = j b.s = h asse...
3
6
2
1
2
1.5
2
2
2
3
2
2
2
0.666667
2
0.333333
2
2
2
2
2
2
1
1
988
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 j = A("j") f = B("f") i = A("i") m = A("m") a = A("a") n = B("n") h = A("h") b = A("b") c = B("c") j.u = a f.v = c i.u = j m.u = i a.u ...
f"
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 j = A("j") f = B("f") i = A("i") m = A("m") a = A("a") n = B("n") h = A("h") b = A("b") c = B("c") j.u = a f.v = c i.u = j m.u = i a.u ...
9
9
1
0.125
2
4.5
1
1
1
8
5
4
2
0.222222
2
0.222222
7
2
8
3.75
1
8
8
1
989
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.v: B = None self.txt = txt g = A("g") b = B("b") i = B("i") g.x = b b.q = i b.v = i i.q = b i.v = b assert g.x.v.v.txt == "
b"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.v: B = None self.txt = txt g = A("g") b = B("b") i = B("i") g.x = b b.q = i b.v = i i.q = b i.v = b assert g.x.v.v.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
2
1
990
class A: def __init__(self, txt: str): self.t: B = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt c = A("c") f = B("f") d = B("d") n = B("n") g = A("g") c.t = f c.s = f f.r = c d.r = g n.r = g g.t = f g.s = f...
c"
class A: def __init__(self, txt: str): self.t: B = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt c = A("c") f = B("f") d = B("d") n = B("n") g = A("g") c.t = f c.s = f f.r = c d.r = g n.r = g g.t = f g.s = f...
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
991
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.v: B = None self.q: B = None self.txt = txt n = A("n") d = B("d") e = B("e") b = B("b") h = A("h") n.x = e n.t = h d.v = e d.q = ...
b"
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.v: B = None self.q: B = None self.txt = txt n = A("n") d = B("d") e = B("e") b = B("b") h = A("h") n.x = e n.t = h d.v = e d.q = ...
5
9
1.8
0.45
2
2.5
2
2
2
3
1
1
4
0.8
3
0.333333
0
null
null
null
3
1
1
1
992
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.p: B = None self.txt = txt e = A("e") g = B("g") d = B("d") n = B("n") a = A("a") l = A("l") c = B("c") k = A("k") h = A("h") i = A("i") ...
l"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.p: B = None self.txt = txt e = A("e") g = B("g") d = B("d") n = B("n") a = A("a") l = A("l") c = B("c") k = A("k") h = A("h") i = A("i") ...
10
14
1.4
0.155556
2
5
2
1
1.5
9
3
3
5
0.5
5
0.357143
5
3
6
3.857143
3
7
7
1
993
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt h = A("h") l = B("l") i = A("i") e = B("e") k = B("k") f = B("f") d = B("d") c = A("c") h.u = k l.x = i i.u = e e.x = c k.x = i f.x = i...
c"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt h = A("h") l = B("l") i = A("i") e = B("e") k = B("k") f = B("f") d = B("d") c = A("c") h.u = k l.x = i i.u = e e.x = c k.x = i f.x = i...
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
994
class A: def __init__(self, txt: str): self.y: B = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.r: B = None self.txt = txt l = A("l") n = B("n") k = B("k") g = A("g") a = B("a") h = A("h") f = A("f") j = A("j"...
k"
class A: def __init__(self, txt: str): self.y: B = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.r: B = None self.txt = txt l = A("l") n = B("n") k = B("k") g = A("g") a = B("a") h = A("h") f = A("f") j = A("j"...
8
13
1.625
0.232143
2
4
2
2
2
5
2
1
4
0.5
5
0.384615
2
2
2
2
3
2
1
2
995
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.y: A = None self.txt = txt b = A("b") n = B("n") e = B("e") h = B("h") i = B("i") g = B("g") f = B("f") d = A("d") b.q = d n.o = d n.y = ...
d"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.y: A = None self.txt = txt b = A("b") n = B("n") e = B("e") h = B("h") i = B("i") g = B("g") f = B("f") d = A("d") b.q = d n.o = d n.y = ...
8
9
1.125
0.160714
2
4
2
1
1.5
7
4
4
2
0.25
2
0.222222
6
2
6
3.333333
1
7
7
1
996
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.x: B = None self.txt = txt a = A("a") e = B("e") k = A("k") n = A("n") j = B("j") m = A("m") b = A("b") d = A("d") i = A("i") a.u = j e.p...
e"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.x: B = None self.txt = txt a = A("a") e = B("e") k = A("k") n = A("n") j = B("j") m = A("m") b = A("b") d = A("d") i = A("i") a.u = j e.p...
9
11
1.222222
0.152778
2
4.5
2
1
1.5
4
2
1
3
0.333333
4
0.363636
2
2
3
2.5
3
2
2
2
997
class A: def __init__(self, txt: str): self.y: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.u: B = None self.txt = txt j = A("j") l = B("l") k = B("k") n = B("n") b = B("b") m = B("m") a = A("a") j.y = k ...
b"
class A: def __init__(self, txt: str): self.y: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.u: B = None self.txt = txt j = A("j") l = B("l") k = B("k") n = B("n") b = B("b") m = B("m") a = A("a") j.y = k ...
7
12
1.714286
0.285714
2
3.5
2
2
2
7
3
3
4
0.571429
4
0.333333
4
2
4
2.666667
3
4
2
2
998
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt d = A("d") b = B("b") h = B("h") i = A("i") e = A("e") d.v = i b.x = h h.x = b i.v = d e.v = d assert b.x.x.x.txt == "
h"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt d = A("d") b = B("b") h = B("h") i = A("i") e = A("e") d.v = i b.x = h h.x = b i.v = d e.v = d assert b.x.x.x.txt == "h"
5
5
1
0.25
2
2.5
1
1
1
3
2
2
2
0.4
2
0.4
2
2
2
2
1
3
3
1
999
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.t: A = None self.txt = txt l = A("l") h = B("h") g = A("g") c = B("c") d = A("d") b = B("b") l.s = g h.z = g h.t = d g.s = l c.z = l c.t ...
g"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.t: A = None self.txt = txt l = A("l") h = B("h") g = A("g") c = B("c") d = A("d") b = B("b") l.s = g h.z = g h.t = d g.s = l c.z = l c.t ...
6
9
1.5
0.3
2
3
2
1
1.5
5
3
3
2
0.333333
2
0.222222
4
2
4
2.666667
1
5
5
1