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
900
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.y: A = None self.txt = txt a = A("a") m = B("m") c = A("c") a.q = c m.t = a m.y = a c.q = a assert m.y.q.q.txt == "
a"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.y: A = None self.txt = txt a = A("a") m = B("m") c = A("c") a.q = c m.t = a m.y = a c.q = a assert m.y.q.q.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
901
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt c = A("c") f = B("f") a = B("a") g = A("g") d = A("d") b = A("b") n = A("n") h = A("h") l = A("l") c.v = a f.y = a a.y = f g.v = f d.v ...
f"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt c = A("c") f = B("f") a = B("a") g = A("g") d = A("d") b = A("b") n = A("n") h = A("h") l = A("l") c.v = a f.y = a a.y = f g.v = f d.v ...
9
9
1
0.125
2
4.5
1
1
1
8
4
4
3
0.333333
3
0.333333
6
2
6
3.333333
2
7
7
1
902
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.v: A = None self.txt = txt g = A("g") h = B("h") i = A("i") b = B("b") k = B("k") a = B("a") f = B("f") j = B("j") c = B("c") g.x = i h.o...
g"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.v: A = None self.txt = txt g = A("g") h = B("h") i = A("i") b = B("b") k = B("k") a = B("a") f = B("f") j = B("j") c = B("c") g.x = i h.o...
9
16
1.777778
0.222222
2
4.5
2
1
1.5
7
3
3
4
0.444444
4
0.25
4
2
4
2.666667
3
5
5
1
903
class A: def __init__(self, txt: str): self.s: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.u: B = None self.txt = txt g = A("g") c = B("c") b = B("b") e = B("e") n = A("n") l = A("l") k = B("k") i = B("i"...
i"
class A: def __init__(self, txt: str): self.s: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.u: B = None self.txt = txt g = A("g") c = B("c") b = B("b") e = B("e") n = A("n") l = A("l") k = B("k") i = B("i"...
10
19
1.9
0.211111
2
5
2
2
2
7
2
2
6
0.6
6
0.315789
2
2
2
2
2
5
3
2
904
class A: def __init__(self, txt: str): self.o: B = 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") n = B("n") a = B("a") g.o = a g.u = a n.o = g a.o = g assert n.o.o.o.txt == "
g"
class A: def __init__(self, txt: str): self.o: B = 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") n = B("n") a = B("a") g.o = a g.u = a n.o = g a.o = g assert n.o.o.o.txt == "g"
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
905
class A: def __init__(self, txt: str): self.s: A = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt n = A("n") m = B("m") j = B("j") g = B("g") e = B("e") h = A("h") k = A("k") b = B("b") d = A("d") a = B("a") ...
g"
class A: def __init__(self, txt: str): self.s: A = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt n = A("n") m = B("m") j = B("j") g = B("g") e = B("e") h = A("h") k = A("k") b = B("b") d = A("d") a = B("a") ...
10
14
1.4
0.155556
2
5
2
1
1.5
6
2
2
4
0.4
4
0.285714
3
3
3
3
1
6
6
1
906
class A: def __init__(self, txt: str): self.u: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.v: A = None self.txt = txt a = A("a") m = B("m") i = A("i") j = A("j") h = A("h") d = A("d") c = A("c") f = B("f"...
m"
class A: def __init__(self, txt: str): self.u: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.v: A = None self.txt = txt a = A("a") m = B("m") i = A("i") j = A("j") h = A("h") d = A("d") c = A("c") f = B("f"...
8
16
2
0.285714
2
4
2
2
2
8
4
3
3
0.375
4
0.25
6
2
7
3.6
3
4
1
2
907
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt g = A("g") m = B("m") a = B("a") g.t = a m.y = a a.y = m assert m.y.y.y.txt == "
a"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt g = A("g") m = B("m") a = B("a") g.t = a m.y = a a.y = m assert m.y.y.y.txt == "a"
3
3
1
0.5
2
1.5
1
1
1
3
2
2
2
0.666667
2
0.666667
2
2
2
2
1
3
3
1
908
class A: def __init__(self, txt: str): self.w: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt m = A("m") n = B("n") f = B("f") d = B("d") b = B("b") i = B("i") l = A("l") a = B("a") c = A("c") m.w = a m.y...
m"
class A: def __init__(self, txt: str): self.w: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt m = A("m") n = B("n") f = B("f") d = B("d") b = B("b") i = B("i") l = A("l") a = B("a") c = A("c") m.w = a m.y...
9
12
1.333333
0.166667
2
4.5
2
1
1.5
4
2
1
4
0.444444
4
0.333333
1
2
2
2
3
2
1
2
909
class A: def __init__(self, txt: str): self.o: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.r: B = None self.txt = txt j = A("j") a = B("a") n = B("n") f = A("f") j.o = f j.s = n a.s = n a.r = n n.s = a n...
n"
class A: def __init__(self, txt: str): self.o: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.r: B = None self.txt = txt j = A("j") a = B("a") n = B("n") f = A("f") j.o = f j.s = n a.s = n a.r = n n.s = a n...
4
6
1.5
0.5
2
2
2
2
2
4
2
1
3
0.75
4
0.666667
2
2
2
2
2
2
2
2
910
class A: def __init__(self, txt: str): self.u: A = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.v: B = None self.txt = txt c = A("c") h = B("h") m = A("m") d = B("d") a = B("a") n = B("n") e = A("e") j = B("j"...
m"
class A: def __init__(self, txt: str): self.u: A = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.v: B = None self.txt = txt c = A("c") h = B("h") m = A("m") d = B("d") a = B("a") n = B("n") e = A("e") j = B("j"...
8
16
2
0.285714
2
4
2
2
2
6
2
2
5
0.625
5
0.3125
2
2
2
2
4
2
2
2
911
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt l = A("l") c = B("c") e = A("e") m = B("m") j = A("j") n = B("n") f = A("f") g = A("g") h = B("h") l.y = g c.y = h e.y = j m.y = n j.y ...
n"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt l = A("l") c = B("c") e = A("e") m = B("m") j = A("j") n = B("n") f = A("f") g = A("g") h = B("h") l.y = g c.y = h e.y = j m.y = n j.y ...
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
912
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: B = None self.txt = txt m = A("m") h = B("h") i = B("i") e = A("e") l = B("l") k = A("k") f = A("f") c = B("c") g = B("g") a = A("a") ...
l"
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: B = None self.txt = txt m = A("m") h = B("h") i = B("i") e = A("e") l = B("l") k = A("k") f = A("f") c = B("c") g = B("g") a = A("a") ...
10
13
1.3
0.144444
2
5
2
1
1.5
6
2
2
5
0.5
5
0.384615
2
5
5
5
1
6
6
1
913
class A: def __init__(self, txt: str): self.p: A = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt l = A("l") g = B("g") k = A("k") a = B("a") d = A("d") j = B("j") b = B("b") i = A("i") h = A("h") l.p = i l.u...
h"
class A: def __init__(self, txt: str): self.p: A = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt l = A("l") g = B("g") k = A("k") a = B("a") d = A("d") j = B("j") b = B("b") i = A("i") h = A("h") l.p = i l.u...
9
14
1.555556
0.194444
2
4.5
2
1
1.5
3
2
1
3
0.333333
3
0.214286
1
2
2
2
2
2
1
1
914
class A: def __init__(self, txt: str): self.q: B = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.r: A = None self.txt = txt f = A("f") i = B("i") a = B("a") l = B("l") k = B("k") j = A("j") h = A("h") f.q = k ...
j"
class A: def __init__(self, txt: str): self.q: B = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.r: A = None self.txt = txt f = A("f") i = B("i") a = B("a") l = B("l") k = B("k") j = A("j") h = A("h") f.q = k ...
7
14
2
0.333333
2
3.5
2
2
2
4
3
1
3
0.428571
4
0.285714
2
2
4
2.666667
3
2
2
2
915
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.z: A = None self.txt = txt j = A("j") g = B("g") i = B("i") m = B("m") e = A("e") l = A("l") c = A("c") d = B("d") k = A("k") j.z = d g.t...
g"
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.z: A = None self.txt = txt j = A("j") g = B("g") i = B("i") m = B("m") e = A("e") l = A("l") c = A("c") d = B("d") k = A("k") j.z = d g.t...
9
13
1.444444
0.180556
2
4.5
2
1
1.5
8
2
1
7
0.777778
8
0.615385
2
3
4
3.5
2
7
7
2
916
class A: def __init__(self, txt: str): self.p: B = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt a = A("a") j = B("j") h = A("h") l = A("l") n = B("n") k = A("k") e = A("e") a.p = j a.z = k j.t = n h.p = j h...
n"
class A: def __init__(self, txt: str): self.p: B = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt a = A("a") j = B("j") h = A("h") l = A("l") n = B("n") k = A("k") e = A("e") a.p = j a.z = k j.t = n h.p = j h...
7
12
1.714286
0.285714
2
3.5
2
1
1.5
6
3
3
3
0.428571
3
0.25
4
2
4
2.666667
2
5
5
1
917
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt l = A("l") g = B("g") c = B("c") m = A("m") h = A("h") i = B("i") e = B("e") j = A("j") a = B("a") l.q = m g.t = h c.t = l m.q = h h.q ...
h"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt l = A("l") g = B("g") c = B("c") m = A("m") h = A("h") i = B("i") e = B("e") j = A("j") a = B("a") l.q = m g.t = h c.t = l m.q = h h.q ...
9
9
1
0.125
2
4.5
1
1
1
5
3
3
2
0.222222
2
0.222222
4
2
4
2.666667
1
5
5
1
918
class A: def __init__(self, txt: str): self.z: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt m = A("m") j = B("j") a = A("a") f = A("f") n = B("n") h = A("h") m.z = h m.r = n j.t = a a.z = m a.r = n f.z ...
m"
class A: def __init__(self, txt: str): self.z: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt m = A("m") j = B("j") a = A("a") f = A("f") n = B("n") h = A("h") m.z = h m.r = n j.t = a a.z = m a.r = n f.z ...
6
10
1.666667
0.333333
2
3
2
1
1.5
6
4
2
3
0.5
4
0.4
4
2
6
3.142857
3
2
2
2
919
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt b = A("b") c = B("c") m = A("m") h = B("h") j = B("j") a = A("a") d = B("d") b.q = a c.q = a m.q = a h.q = b j.q = m a.q = b d.q = b as...
b"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt b = A("b") c = B("c") m = A("m") h = B("h") j = B("j") a = A("a") d = B("d") b.q = a c.q = a m.q = a h.q = b j.q = m a.q = b d.q = b 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
920
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.q: B = None self.txt = txt m = A("m") g = B("g") e = A("e") k = B("k") m.r = g g.o = m g.q = k e.r = k k.o = e k.q = g assert m.r.o.r.txt...
g"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.q: B = None self.txt = txt m = A("m") g = B("g") e = A("e") k = B("k") m.r = g g.o = m g.q = k e.r = k k.o = e k.q = g assert m.r.o.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
2
2
1
1
921
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt e = A("e") n = B("n") g = A("g") e.p = g n.w = g g.p = e assert n.w.p.p.txt == "
g"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt e = A("e") n = B("n") g = A("g") e.p = g n.w = g g.p = e assert n.w.p.p.txt == "g"
3
3
1
0.5
2
1.5
1
1
1
3
2
1
3
1
3
1
1
2
2
2
2
2
2
1
922
class A: def __init__(self, txt: str): self.s: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.r: B = None self.txt = txt k = A("k") b = B("b") g = A("g") n = B("n") c = A("c") k.s = n k.y = c b.w = g b.r = ...
k"
class A: def __init__(self, txt: str): self.s: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.r: B = None self.txt = txt k = A("k") b = B("b") g = A("g") n = B("n") c = A("c") k.s = n k.y = c b.w = g b.r = ...
5
10
2
0.5
2
2.5
2
2
2
5
2
2
4
0.8
4
0.4
2
2
2
2
4
2
1
2
923
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt m = A("m") l = B("l") a = A("a") g = A("g") h = A("h") d = B("d") f = A("f") m.y = a l.r = h a.y = f g.y = h h.y = f d.r = f f.y = a as...
f"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt m = A("m") l = B("l") a = A("a") g = A("g") h = A("h") d = B("d") f = A("f") m.y = a l.r = h a.y = f g.y = h h.y = f d.r = f f.y = a as...
7
7
1
0.166667
2
3.5
1
1
1
6
4
3
2
0.285714
2
0.285714
5
2
6
3.111111
1
6
6
1
924
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.z: B = None self.txt = txt m = A("m") h = B("h") g = B("g") m.v = g h.v = g h.z = g g.v = h g.z = h assert h.v.z.z.txt == "
g"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.z: B = None self.txt = txt m = A("m") h = B("h") g = B("g") m.v = g h.v = g h.z = g g.v = h g.z = h assert h.v.z.z.txt == "g"
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
925
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt j = A("j") h = B("h") l = A("l") k = A("k") j.s = l h.v = j l.s = k k.s = l assert j.s.s.s.s.txt == "
k"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt j = A("j") h = B("h") l = A("l") k = A("k") j.s = l h.v = j l.s = k k.s = l assert j.s.s.s.s.txt == "k"
4
4
1
0.333333
2
2
1
1
1
4
2
2
3
0.75
3
0.75
2
2
2
2
1
4
4
1
926
class A: def __init__(self, txt: str): self.t: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt h = A("h") l = B("l") m = B("m") c = A("c") e = A("e") b = A("b") i = A("i") a = B("a") n = A("n") h.t = e h.q...
a"
class A: def __init__(self, txt: str): self.t: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt h = A("h") l = B("l") m = B("m") c = A("c") e = A("e") b = A("b") i = A("i") a = B("a") n = A("n") h.t = e h.q...
9
15
1.666667
0.208333
2
4.5
2
1
1.5
8
4
3
4
0.444444
4
0.266667
5
2
6
3.111111
3
6
6
1
927
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.u: B = None self.txt = txt k = A("k") f = B("f") j = B("j") e = B("e") n = B("n") m = B("m") d = B("d") k.o = n f.v = e f.u = j j.v = n j...
n"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.u: B = None self.txt = txt k = A("k") f = B("f") j = B("j") e = B("e") n = B("n") m = B("m") d = B("d") k.o = n f.v = e f.u = j j.v = n j...
7
13
1.857143
0.309524
2
3.5
2
1
1.5
6
2
1
5
0.714286
6
0.461538
2
2
5
3.5
3
3
2
2
928
class A: def __init__(self, txt: str): self.r: A = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt l = A("l") i = B("i") m = B("m") e = B("e") c = A("c") d = A("d") j = A("j") f = B("f") g = A("g") b = B("b") ...
j"
class A: def __init__(self, txt: str): self.r: A = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt l = A("l") i = B("i") m = B("m") e = B("e") c = A("c") d = A("d") j = A("j") f = B("f") g = A("g") b = B("b") ...
10
13
1.3
0.144444
2
5
2
1
1.5
3
2
1
3
0.3
3
0.230769
1
3
3
3
2
2
1
1
929
class A: def __init__(self, txt: str): self.x: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt c = A("c") l = B("l") f = B("f") h = B("h") c.x = h c.y = l l.p = f f.p = h h.p = f assert h.p.p.p.p.txt == "
h"
class A: def __init__(self, txt: str): self.x: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt c = A("c") l = B("l") f = B("f") h = B("h") c.x = h c.y = l l.p = f f.p = h h.p = f assert h.p.p.p.p.txt == "h...
4
5
1.25
0.416667
2
2
2
1
1.5
4
3
2
2
0.5
2
0.4
3
2
4
2.5
1
4
4
1
930
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.s: A = None self.txt = txt c = A("c") j = B("j") m = A("m") l = A("l") k = A("k") b = B("b") f = B("f") e = B("e") i = A("i") c.t = m j.p...
m"
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.s: A = None self.txt = txt c = A("c") j = B("j") m = A("m") l = A("l") k = A("k") b = B("b") f = B("f") e = B("e") i = A("i") c.t = m j.p...
9
13
1.444444
0.180556
2
4.5
2
1
1.5
6
4
3
2
0.222222
2
0.153846
5
2
6
3.111111
1
6
6
1
931
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.t: A = None self.txt = txt b = A("b") d = B("d") a = A("a") b.o = a d.o = b d.t = b a.o = b assert a.o.o.o.txt == "
b"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.t: A = None self.txt = txt b = A("b") d = B("d") a = A("a") b.o = a d.o = b d.t = b a.o = b assert a.o.o.o.txt == "b"
3
3
1
0.5
2
1.5
2
1
1.5
3
2
2
2
0.666667
2
0.666667
2
2
2
2
1
3
3
1
932
class A: def __init__(self, txt: str): self.s: B = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt i = A("i") a = B("a") l = A("l") k = B("k") g = A("g") n = A("n") b = B("b") i.s = a i.w = a a.t = k l.s = b l...
b"
class A: def __init__(self, txt: str): self.s: B = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt i = A("i") a = B("a") l = A("l") k = B("k") g = A("g") n = A("n") b = B("b") i.s = a i.w = a a.t = k l.s = b l...
7
9
1.285714
0.214286
2
3.5
2
1
1.5
4
2
2
3
0.428571
3
0.333333
2
3
3
3
1
4
4
1
933
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.p: A = None self.txt = txt f = A("f") j = B("j") k = A("k") l = A("l") m = A("m") f.t = j f.v = j j.p = l k.t = j k.v = j l.t = j l.v = j...
l"
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.p: A = None self.txt = txt f = A("f") j = B("j") k = A("k") l = A("l") m = A("m") f.t = j f.v = j j.p = l k.t = j k.v = j l.t = j l.v = j...
5
5
1
0.25
2
2.5
2
1
1.5
5
3
3
2
0.4
2
0.4
4
2
4
2.666667
2
3
1
1
934
class A: def __init__(self, txt: str): self.v: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt a = A("a") f = B("f") l = A("l") n = B("n") d = A("d") m = A("m") c = B("c") k = B("k") g = A("g") h = B("h") ...
n"
class A: def __init__(self, txt: str): self.v: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt a = A("a") f = B("f") l = A("l") n = B("n") d = A("d") m = A("m") c = B("c") k = B("k") g = A("g") h = B("h") ...
10
15
1.5
0.166667
2
5
2
1
1.5
7
3
3
3
0.3
3
0.2
5
3
6
3.857143
1
7
7
1
935
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt n = A("n") h = B("h") b = A("b") l = B("l") d = A("d") i = A("i") m = B("m") n.o = d h.x = l b.o = n l.x = h d.o = n i.o = n m.x = h as...
l"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt n = A("n") h = B("h") b = A("b") l = B("l") d = A("d") i = A("i") m = B("m") n.o = d h.x = l b.o = n l.x = h d.o = n i.o = n m.x = h 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
936
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.o: A = None self.txt = txt m = A("m") i = B("i") l = A("l") m.y = l i.x = l i.o = l l.y = m assert i.o.y.y.txt == "
l"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.o: A = None self.txt = txt m = A("m") i = B("i") l = A("l") m.y = l i.x = l i.o = l l.y = m assert i.o.y.y.txt == "l"
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
937
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt g = A("g") e = B("e") c = A("c") g.y = e e.s = c c.y = e assert e.s.y.s.txt == "
c"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt g = A("g") e = B("e") c = A("c") g.y = e e.s = c c.y = e assert e.s.y.s.txt == "c"
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
938
class A: def __init__(self, txt: str): self.y: A = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.w: B = None self.txt = txt k = A("k") n = B("n") i = A("i") b = B("b") c = B("c") a = B("a") d = A("d") j = A("j"...
i"
class A: def __init__(self, txt: str): self.y: A = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.w: B = None self.txt = txt k = A("k") n = B("n") i = A("i") b = B("b") c = B("c") a = B("a") d = A("d") j = A("j"...
9
16
1.777778
0.222222
2
4.5
2
2
2
8
3
2
5
0.555556
6
0.375
4
2
6
3.333333
3
4
3
2
939
class A: def __init__(self, txt: str): self.u: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.q: B = None self.txt = txt m = A("m") d = B("d") f = A("f") e = A("e") i = A("i") j = A("j") a = B("a") m.u = a ...
a"
class A: def __init__(self, txt: str): self.u: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.q: B = None self.txt = txt m = A("m") d = B("d") f = A("f") e = A("e") i = A("i") j = A("j") a = B("a") m.u = a ...
7
11
1.571429
0.261905
2
3.5
2
2
2
6
3
2
3
0.428571
5
0.454545
4
2
4
3
2
4
3
2
940
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt a = A("a") d = B("d") h = A("h") c = A("c") l = B("l") i = A("i") k = A("k") a.v = h d.s = k h.v = a c.v = h l.s = c i.v = h k.v = c as...
h"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt a = A("a") d = B("d") h = A("h") c = A("c") l = B("l") i = A("i") k = A("k") a.v = h d.s = k h.v = a c.v = h l.s = c i.v = h k.v = c as...
7
7
1
0.166667
2
3.5
1
1
1
4
2
1
4
0.571429
4
0.571429
1
2
2
2
2
3
3
1
941
class A: def __init__(self, txt: str): self.w: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.z: B = None self.txt = txt n = A("n") g = B("g") f = B("f") l = B("l") n.w = g n.p = g g.o = n g.z = l f.o = n f...
n"
class A: def __init__(self, txt: str): self.w: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.z: B = None self.txt = txt n = A("n") g = B("g") f = B("f") l = B("l") n.w = g n.p = g g.o = n g.z = l f.o = n f...
4
7
1.75
0.583333
2
2
2
2
2
4
2
2
3
0.75
3
0.428571
2
2
2
2
3
2
1
1
942
class A: def __init__(self, txt: str): self.y: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.z: B = None self.txt = txt l = A("l") b = B("b") j = A("j") m = B("m") d = B("d") a = B("a") g = A("g") l.y = g ...
l"
class A: def __init__(self, txt: str): self.y: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.z: B = None self.txt = txt l = A("l") b = B("b") j = A("j") m = B("m") d = B("d") a = B("a") g = A("g") l.y = g ...
7
14
2
0.333333
2
3.5
2
2
2
3
2
2
2
0.285714
2
0.142857
2
2
2
2
2
2
1
1
943
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.w: A = None self.txt = txt j = A("j") h = B("h") m = B("m") c = A("c") f = B("f") e = A("e") n = B("n") i = A("i") d = B("d") j.r = n j.u...
f"
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.w: A = None self.txt = txt j = A("j") h = B("h") m = B("m") c = A("c") f = B("f") e = A("e") n = B("n") i = A("i") d = B("d") j.r = n j.u...
9
12
1.333333
0.166667
2
4.5
2
1
1.5
7
2
2
6
0.666667
6
0.5
2
2
2
2
3
3
1
1
944
class A: def __init__(self, txt: str): self.u: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.s: A = None self.txt = txt m = A("m") f = B("f") i = A("i") g = A("g") m.u = f m.x = i f.y = m f.s = i i.u = f i...
f"
class A: def __init__(self, txt: str): self.u: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.s: A = None self.txt = txt m = A("m") f = B("f") i = A("i") g = A("g") m.u = f m.x = i f.y = m f.s = i i.u = f i...
4
8
2
0.666667
2
2
2
2
2
4
2
1
3
0.75
4
0.5
2
2
3
2.5
3
2
1
2
945
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.u: A = None self.txt = txt d = A("d") f = B("f") a = A("a") j = B("j") m = A("m") h = B("h") b = A("b") c = B("c") n = A("n") i = B("i") ...
h"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.u: A = None self.txt = txt d = A("d") f = B("f") a = A("a") j = B("j") m = A("m") h = B("h") b = A("b") c = B("c") n = A("n") i = B("i") ...
10
13
1.3
0.144444
2
5
2
1
1.5
5
2
2
4
0.4
4
0.307692
2
2
2
2
3
3
1
2
946
class A: def __init__(self, txt: str): self.r: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt f = A("f") h = B("h") j = A("j") l = A("l") i = A("i") b = B("b") g = A("g") f.r = l f.v = l h.v = f j.r = i j...
g"
class A: def __init__(self, txt: str): self.r: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt f = A("f") h = B("h") j = A("j") l = A("l") i = A("i") b = B("b") g = A("g") f.r = l f.v = l h.v = f j.r = i j...
7
10
1.428571
0.238095
2
3.5
2
1
1.5
7
2
1
6
0.857143
7
0.7
2
2
4
3
2
4
4
2
947
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt b = A("b") n = B("n") a = A("a") b.w = a n.w = b a.w = b assert n.w.w.w.txt == "
b"
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt b = A("b") n = B("n") a = A("a") b.w = a n.w = b a.w = b assert n.w.w.w.txt == "b"
3
3
1
0.5
2
1.5
1
1
1
3
2
1
3
1
3
1
1
2
2
2
1
3
3
1
948
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt c = A("c") l = B("l") e = B("e") c.r = e l.z = c e.z = c assert l.z.r.z.txt == "
c"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt c = A("c") l = B("l") e = B("e") c.r = e l.z = c e.z = c assert l.z.r.z.txt == "c"
3
3
1
0.5
2
1.5
1
1
1
3
2
1
3
1
3
1
1
2
2
2
2
2
1
1
949
class A: def __init__(self, txt: str): self.t: B = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt e = A("e") f = B("f") g = B("g") e.t = g e.z = g f.q = e g.q = e assert g.q.z.q.txt == "
e"
class A: def __init__(self, txt: str): self.t: B = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt e = A("e") f = B("f") g = B("g") e.t = g e.z = g f.q = e g.q = e assert g.q.z.q.txt == "e"
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
950
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.z: A = None self.txt = txt b = A("b") l = B("l") n = A("n") k = A("k") b.y = n l.v = k l.z = n n.y = b k.y = b assert k.y.y.y.txt == "
b"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.z: A = None self.txt = txt b = A("b") l = B("l") n = A("n") k = A("k") b.y = n l.v = k l.z = n n.y = b k.y = b assert k.y.y.y.txt == "b"
4
5
1.25
0.416667
2
2
2
1
1.5
3
2
1
3
0.75
3
0.6
1
2
2
2
1
3
3
1
951
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.txt = txt j = A("j") l = B("l") b = A("b") m = B("m") c = B("c") k = A("k") d = B("d") f = A("f") g = A("g") i = A("i") j.s = d l.u = c b.s = l m...
l"
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.txt = txt j = A("j") l = B("l") b = A("b") m = B("m") c = B("c") k = A("k") d = B("d") f = A("f") g = A("g") i = A("i") j.s = d l.u = c b.s = l m...
10
10
1
0.111111
2
5
1
1
1
3
2
1
3
0.3
3
0.3
1
2
2
2
2
2
2
1
952
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.w: A = None self.txt = txt i = A("i") b = B("b") l = B("l") f = B("f") i.v = l b.p = i b.w = i l.p = i l.w = i f.p = i f.w = i assert l.p...
i"
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.w: A = None self.txt = txt i = A("i") b = B("b") l = B("l") f = B("f") i.v = l b.p = i b.w = i l.p = i l.w = i f.p = i f.w = i assert l.p...
4
4
1
0.333333
2
2
2
1
1.5
3
2
1
2
0.5
3
0.75
2
2
2
2
3
1
1
2
953
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.v: A = None self.txt = txt k = A("k") j = B("j") e = A("e") m = A("m") i = B("i") k.v = e j.s = e j.v = k e.v = m m.v = k i.s = e i.v = e...
k"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.v: A = None self.txt = txt k = A("k") j = B("j") e = A("e") m = A("m") i = B("i") k.v = e j.s = e j.v = k e.v = m m.v = k i.s = e i.v = e...
5
6
1.2
0.3
2
2.5
2
1
1.5
5
2
2
3
0.6
3
0.5
3
3
3
3
1
5
5
1
954
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt d = A("d") l = B("l") g = B("g") d.o = g l.r = g g.r = l assert d.o.r.r.txt == "
g"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt d = A("d") l = B("l") g = B("g") d.o = g l.r = g g.r = l assert d.o.r.r.txt == "g"
3
3
1
0.5
2
1.5
1
1
1
3
2
1
3
1
3
1
1
2
2
2
2
2
2
1
955
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt a = A("a") k = B("k") n = A("n") a.x = n k.w = a n.x = a assert k.w.x.x.txt == "
a"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt a = A("a") k = B("k") n = A("n") a.x = n k.w = a n.x = a assert k.w.x.x.txt == "a"
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
956
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt k = A("k") a = B("a") g = A("g") j = A("j") c = B("c") f = B("f") e = B("e") n = A("n") b = A("b") h = A("h") k.x = e a.r = n g.x = e j...
n"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt k = A("k") a = B("a") g = A("g") j = A("j") c = B("c") f = B("f") e = B("e") n = A("n") b = A("b") h = A("h") k.x = e a.r = n g.x = e j...
10
10
1
0.111111
2
5
1
1
1
8
4
3
4
0.4
4
0.4
5
2
6
3.111111
2
4
1
1
957
class A: def __init__(self, txt: str): self.w: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.txt = txt k = A("k") a = B("a") n = A("n") i = A("i") j = B("j") c = B("c") m = A("m") h = B("h") f = A("f") k.w = c k.o...
a"
class A: def __init__(self, txt: str): self.w: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.txt = txt k = A("k") a = B("a") n = A("n") i = A("i") j = B("j") c = B("c") m = A("m") h = B("h") f = A("f") k.w = c k.o...
9
14
1.555556
0.194444
2
4.5
2
1
1.5
3
1
1
4
0.444444
3
0.214286
0
null
null
null
3
1
1
1
958
class A: def __init__(self, txt: str): self.x: A = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.r: B = None self.txt = txt d = A("d") g = B("g") h = A("h") l = A("l") c = A("c") e = B("e") f = B("f") n = B("n"...
g"
class A: def __init__(self, txt: str): self.x: A = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.r: B = None self.txt = txt d = A("d") g = B("g") h = A("h") l = A("l") c = A("c") e = B("e") f = B("f") n = B("n"...
9
18
2
0.25
2
4.5
2
2
2
8
4
3
3
0.333333
4
0.222222
6
2
6
3
2
5
2
2
959
class A: def __init__(self, txt: str): self.r: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.q: A = None self.txt = txt h = A("h") a = B("a") l = A("l") n = B("n") k = B("k") f = B("f") m = A("m") h.r = m ...
h"
class A: def __init__(self, txt: str): self.r: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.q: A = None self.txt = txt h = A("h") a = B("a") l = A("l") n = B("n") k = B("k") f = B("f") m = A("m") h.r = m ...
7
9
1.285714
0.214286
2
3.5
2
2
2
5
2
2
3
0.428571
4
0.444444
3
3
3
3
2
4
3
2
960
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt e = A("e") c = B("c") i = B("i") b = B("b") a = A("a") m = B("m") n = B("n") e.w = c c.z = b i.z = n b.z = m a.w = i m.z = n n.z = i as...
i"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt e = A("e") c = B("c") i = B("i") b = B("b") a = A("a") m = B("m") n = B("n") e.w = c c.z = b i.z = n b.z = m a.w = i m.z = n n.z = i 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
1
7
7
1
961
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.p: B = None self.txt = txt h = A("h") j = B("j") m = B("m") n = B("n") l = A("l") h.t = l j.r = l j.p = m m.r = h m.p = n n.r = h n.p = m...
h"
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.p: B = None self.txt = txt h = A("h") j = B("j") m = B("m") n = B("n") l = A("l") h.t = l j.r = l j.p = m m.r = h m.p = n n.r = h n.p = m...
5
8
1.6
0.4
2
2.5
2
1
1.5
3
2
1
3
0.6
3
0.375
1
2
2
2
2
2
2
1
962
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.z: B = None self.txt = txt f = A("f") i = B("i") g = B("g") a = B("a") j = B("j") e = A("e") l = A("l") d = A("d") f.v = i i.t = f i.z = ...
j"
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.z: B = None self.txt = txt f = A("f") i = B("i") g = B("g") a = B("a") j = B("j") e = A("e") l = A("l") d = A("d") f.v = i i.t = f i.z = ...
8
12
1.5
0.214286
2
4
2
1
1.5
7
3
3
3
0.375
4
0.333333
5
2
7
3.285714
3
3
1
2
963
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.t: A = None self.txt = txt d = A("d") i = B("i") c = A("c") m = B("m") d.v = i i.p = c i.t = c c.v = m m.p = c m.t = c assert i.t.v.t.v.t...
m"
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.t: A = None self.txt = txt d = A("d") i = B("i") c = A("c") m = B("m") d.v = i i.p = c i.t = c c.v = m m.p = c m.t = c assert i.t.v.t.v.t...
4
4
1
0.333333
2
2
2
1
1.5
4
2
2
3
0.75
3
0.75
2
2
2
2
2
2
1
1
964
class A: def __init__(self, txt: str): self.x: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.r: B = None self.txt = txt l = A("l") f = B("f") m = B("m") a = B("a") h = A("h") l.x = h l.v = h f.z = h f.r = ...
l"
class A: def __init__(self, txt: str): self.x: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.r: B = None self.txt = txt l = A("l") f = B("f") m = B("m") a = B("a") h = A("h") l.x = h l.v = h f.z = h f.r = ...
5
8
1.6
0.4
2
2.5
2
2
2
5
2
1
5
1
5
0.625
1
2
2
2
4
2
2
1
965
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.w: A = None self.txt = txt d = A("d") l = B("l") i = A("i") b = A("b") k = B("k") h = A("h") m = B("m") d.v = b l.p = b l.w = i i.v = d b...
b"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.w: A = None self.txt = txt d = A("d") l = B("l") i = A("i") b = A("b") k = B("k") h = A("h") m = B("m") d.v = b l.p = b l.w = i i.v = d b...
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
1
7
7
1
966
class A: def __init__(self, txt: str): self.t: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.p: B = None self.txt = txt g = A("g") f = B("f") a = B("a") k = B("k") n = B("n") l = A("l") m = B("m") e = A("e"...
m"
class A: def __init__(self, txt: str): self.t: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.p: B = None self.txt = txt g = A("g") f = B("f") a = B("a") k = B("k") n = B("n") l = A("l") m = B("m") e = A("e"...
10
20
2
0.222222
2
5
2
2
2
6
2
2
5
0.5
5
0.25
2
2
2
2
3
2
2
1
967
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.r: A = None self.txt = txt b = A("b") h = B("h") l = B("l") e = B("e") n = A("n") i = B("i") b.p = n h.o = e h.r = n l.o = h l.r = b e.o ...
b"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.r: A = None self.txt = txt b = A("b") h = B("h") l = B("l") e = B("e") n = A("n") i = B("i") b.p = n h.o = e h.r = n l.o = h l.r = b e.o ...
6
10
1.666667
0.333333
2
3
2
1
1.5
5
2
2
4
0.666667
4
0.4
2
2
2
2
3
3
3
1
968
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.u: A = None self.txt = txt j = A("j") i = B("i") h = B("h") d = A("d") j.t = i i.z = h i.u = d h.z = i h.u = d d.t = h assert i.z.u.t.u.t...
d"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.u: A = None self.txt = txt j = A("j") i = B("i") h = B("h") d = A("d") j.t = i i.z = h i.u = d h.z = i h.u = d d.t = h assert i.z.u.t.u.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
1
969
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt m = A("m") d = B("d") i = B("i") n = A("n") a = B("a") e = A("e") g = A("g") b = B("b") k = B("k") m.o = n d.o = n i.o = g n.o = g a.o ...
g"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt m = A("m") d = B("d") i = B("i") n = A("n") a = B("a") e = A("e") g = A("g") b = B("b") k = B("k") m.o = n d.o = n i.o = g n.o = g a.o ...
9
9
1
0.125
2
4.5
1
1
1
4
2
1
4
0.444444
4
0.444444
1
3
3
3
1
4
4
1
970
class A: def __init__(self, txt: str): self.y: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.w: A = None self.txt = txt h = A("h") j = B("j") k = B("k") d = B("d") i = B("i") b = B("b") m = A("m") l = B("l"...
m"
class A: def __init__(self, txt: str): self.y: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.w: A = None self.txt = txt h = A("h") j = B("j") k = B("k") d = B("d") i = B("i") b = B("b") m = A("m") l = B("l"...
8
13
1.625
0.232143
2
4
2
2
2
6
3
2
3
0.375
5
0.384615
4
2
4
2.666667
3
3
2
2
971
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.z: A = None self.txt = txt c = A("c") k = B("k") m = A("m") n = A("n") a = B("a") e = B("e") j = B("j") c.q = n k.w = a k.z = m m.q = n n...
c"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.z: A = None self.txt = txt c = A("c") k = B("k") m = A("m") n = A("n") a = B("a") e = B("e") j = B("j") c.q = n k.w = a k.z = m m.q = n n...
7
11
1.571429
0.261905
2
3.5
2
1
1.5
4
2
2
3
0.428571
3
0.272727
2
2
2
2
2
3
3
1
972
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.x: B = None self.txt = txt d = A("d") c = B("c") j = A("j") b = B("b") f = A("f") k = B("k") d.q = b d.r = f c.x = b j.q = k j.r = f b.x ...
b"
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.x: B = None self.txt = txt d = A("d") c = B("c") j = A("j") b = B("b") f = A("f") k = B("k") d.q = b d.r = f c.x = b j.q = k j.r = f b.x ...
6
9
1.5
0.3
2
3
2
1
1.5
3
2
2
2
0.333333
2
0.222222
2
2
2
2
1
3
3
1
973
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.p: B = None self.txt = txt j = A("j") h = B("h") c = A("c") n = A("n") k = B("k") d = B("d") e = A("e") g = B("g") a = A("a") f = A("f") ...
g"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.p: B = None self.txt = txt j = A("j") h = B("h") c = A("c") n = A("n") k = B("k") d = B("d") e = A("e") g = B("g") a = A("a") f = A("f") ...
10
12
1.2
0.133333
2
5
2
1
1.5
5
2
1
5
0.5
5
0.416667
1
4
4
4
3
2
2
1
974
class A: def __init__(self, txt: str): self.t: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt d = A("d") m = B("m") j = A("j") b = B("b") e = A("e") l = A("l") a = A("a") i = A("i") n = B("n") d.t = a d.p...
n"
class A: def __init__(self, txt: str): self.t: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt d = A("d") m = B("m") j = A("j") b = B("b") e = A("e") l = A("l") a = A("a") i = A("i") n = B("n") d.t = a d.p...
9
15
1.666667
0.208333
2
4.5
2
1
1.5
8
2
2
7
0.777778
7
0.466667
2
3
3
3
3
4
4
1
975
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.txt = txt j = A("j") n = B("n") h = A("h") i = A("i") m = A("m") j.w = h n.z = m h.w = j i.w = j m.w = i assert j.w.w.w.w.w.txt == "
h"
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt j = A("j") n = B("n") h = A("h") i = A("i") m = A("m") j.w = h n.z = m h.w = j i.w = j m.w = i assert j.w.w.w.w.w.txt == "h"
5
5
1
0.25
2
2.5
1
1
1
5
3
3
2
0.4
2
0.4
4
2
4
2.666667
1
5
5
1
976
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt k = A("k") j = B("j") i = B("i") g = A("g") b = A("b") f = B("f") d = B("d") l = A("l") e = A("e") m = B("m") k.s = m j.w = e i.w = e g...
l"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt k = A("k") j = B("j") i = B("i") g = A("g") b = A("b") f = B("f") d = B("d") l = A("l") e = A("e") m = B("m") k.s = m j.w = e i.w = e g...
10
10
1
0.111111
2
5
1
1
1
8
3
2
4
0.4
4
0.4
5
4
8
4.666667
2
4
1
1
977
class A: def __init__(self, txt: str): self.w: A = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.v: A = None self.txt = txt g = A("g") f = B("f") j = A("j") a = A("a") m = A("m") e = B("e") d = B("d") l = A("l"...
j"
class A: def __init__(self, txt: str): self.w: A = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.v: A = None self.txt = txt g = A("g") f = B("f") j = A("j") a = A("a") m = A("m") e = B("e") d = B("d") l = A("l"...
9
18
2
0.25
2
4.5
2
2
2
6
2
1
5
0.555556
6
0.333333
2
3
3
3
2
4
2
2
978
class A: def __init__(self, txt: str): self.y: A = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.y: B = None self.txt = txt i = A("i") g = B("g") j = A("j") c = B("c") l = A("l") h = B("h") i.y = j i.o = l g.z...
l"
class A: def __init__(self, txt: str): self.y: A = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.y: B = None self.txt = txt i = A("i") g = B("g") j = A("j") c = B("c") l = A("l") h = B("h") i.y = j i.o = l g.z...
6
11
1.833333
0.366667
2
3
2
2
2
6
2
2
5
0.833333
5
0.454545
2
3
3
3
3
3
2
1
979
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.q: B = None self.txt = txt f = A("f") j = B("j") l = B("l") e = B("e") n = A("n") m = B("m") a = A("a") d = A("d") b = B("b") c = B("c") ...
m"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.q: B = None self.txt = txt f = A("f") j = B("j") l = B("l") e = B("e") n = A("n") m = B("m") a = A("a") d = A("d") b = B("b") c = B("c") ...
10
16
1.6
0.177778
2
5
2
1
1.5
7
3
2
4
0.4
4
0.25
4
3
6
3.6
2
5
2
1
980
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.r: A = None self.txt = txt d = A("d") a = B("a") g = A("g") n = B("n") m = B("m") h = B("h") j = B("j") d.q = g a.t = m a.r = g g.q = d n...
g"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.r: A = None self.txt = txt d = A("d") a = B("a") g = A("g") n = B("n") m = B("m") h = B("h") j = B("j") d.q = g a.t = m a.r = g g.q = d n...
7
12
1.714286
0.285714
2
3.5
2
1
1.5
6
3
2
4
0.571429
4
0.333333
3
2
4
2.5
3
4
4
1
981
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.x: A = None self.txt = txt m = A("m") c = B("c") n = B("n") l = A("l") a = A("a") d = B("d") f = A("f") j = B("j") e = B("e") m.v = a c.r...
l"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.x: A = None self.txt = txt m = A("m") c = B("c") n = B("n") l = A("l") a = A("a") d = B("d") f = A("f") j = B("j") e = B("e") m.v = a c.r...
9
14
1.555556
0.194444
2
4.5
2
1
1.5
6
2
2
5
0.555556
5
0.357143
2
3
3
3
3
4
4
1
982
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt m = A("m") b = B("b") d = A("d") m.q = b b.q = m d.q = b assert d.q.q.q.txt == "
b"
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt m = A("m") b = B("b") d = A("d") m.q = b b.q = m d.q = b assert d.q.q.q.txt == "b"
3
3
1
0.5
2
1.5
1
1
1
3
2
1
3
1
3
1
1
2
2
2
1
3
3
1
983
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt a = A("a") j = B("j") b = A("b") e = B("e") a.y = j j.o = a b.y = e e.o = a assert j.o.y.o.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.o: A = None self.txt = txt a = A("a") j = B("j") b = A("b") e = B("e") a.y = j j.o = a b.y = e e.o = a assert j.o.y.o.y.txt == "j"
4
4
1
0.333333
2
2
1
1
1
4
3
2
2
0.5
2
0.5
3
2
4
2.5
2
2
1
1
984
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.p: B = None self.txt = txt b = A("b") i = B("i") l = B("l") b.z = l i.o = b i.p = l l.o = b l.p = i assert b.z.o.z.txt == "
l"
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.p: B = None self.txt = txt b = A("b") i = B("i") l = B("l") b.z = l i.o = b i.p = l l.o = b l.p = i assert b.z.o.z.txt == "l"
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
985
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt f = A("f") j = B("j") m = B("m") c = A("c") f.w = c j.y = m m.y = j c.w = f assert f.w.w.w.w.txt == "
f"
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt f = A("f") j = B("j") m = B("m") c = A("c") f.w = c j.y = m m.y = j c.w = f assert f.w.w.w.w.txt == "f"
4
4
1
0.333333
2
2
1
1
1
4
3
2
2
0.5
2
0.5
3
2
4
2.5
1
4
4
1
986
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.txt = txt c = A("c") e = B("e") g = A("g") l = B("l") i = B("i") d = A("d") n = B("n") m = B("m") h = A("h") c.x = i e.u = h g.x = e l.u = h i.u ...
n"
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.txt = txt c = A("c") e = B("e") g = A("g") l = B("l") i = B("i") d = A("d") n = B("n") m = B("m") h = A("h") c.x = i e.u = h g.x = e l.u = h i.u ...
9
9
1
0.125
2
4.5
1
1
1
6
2
2
5
0.555556
5
0.555556
2
4
4
4
2
3
1
1
987
class A: def __init__(self, txt: str): self.r: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.v: A = None self.txt = txt b = A("b") e = B("e") f = A("f") b.r = e b.o = e e.z = b e.v = b f.r = e f.o = e asse...
e"
class A: def __init__(self, txt: str): self.r: B = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.v: A = None self.txt = txt b = A("b") e = B("e") f = A("f") b.r = e b.o = e e.z = b e.v = b f.r = e f.o = e 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
988
class A: def __init__(self, txt: str): self.z: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.q: A = None self.txt = txt a = A("a") i = B("i") d = A("d") h = A("h") k = A("k") g = B("g") a.z = g a.r = h i.w...
g"
class A: def __init__(self, txt: str): self.z: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.q: A = None self.txt = txt a = A("a") i = B("i") d = A("d") h = A("h") k = A("k") g = B("g") a.z = g a.r = h i.w...
6
12
2
0.4
2
3
2
2
2
6
2
2
5
0.833333
5
0.416667
2
2
2
2
3
3
3
1
989
class A: def __init__(self, txt: str): self.t: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt f = A("f") b = B("b") h = B("h") d = A("d") g = B("g") n = A("n") l = B("l") m = A("m") f.t = g f.x = m b.x = ...
g"
class A: def __init__(self, txt: str): self.t: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt f = A("f") b = B("b") h = B("h") d = A("d") g = B("g") n = A("n") l = B("l") m = A("m") f.t = g f.x = m b.x = ...
8
12
1.5
0.214286
2
4
2
1
1.5
6
3
2
4
0.5
4
0.333333
3
2
4
2.5
2
5
4
1
990
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.v: A = None self.txt = txt m = A("m") h = B("h") n = A("n") k = B("k") e = A("e") c = B("c") j = A("j") d = B("d") f = B("f") m.t = j h.u...
m"
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.v: A = None self.txt = txt m = A("m") h = B("h") n = A("n") k = B("k") e = A("e") c = B("c") j = A("j") d = B("d") f = B("f") m.t = j h.u...
9
14
1.555556
0.194444
2
4.5
2
1
1.5
3
2
1
3
0.333333
3
0.214286
1
3
3
3
1
3
3
1
991
class A: def __init__(self, txt: str): self.s: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.v: B = None self.txt = txt g = A("g") b = B("b") m = B("m") i = A("i") e = B("e") k = B("k") d = A("d") n = B("n"...
m"
class A: def __init__(self, txt: str): self.s: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.v: B = None self.txt = txt g = A("g") b = B("b") m = B("m") i = A("i") e = B("e") k = B("k") d = A("d") n = B("n"...
8
14
1.75
0.25
2
4
2
2
2
8
3
2
4
0.5
6
0.428571
5
2
4
2.333333
2
4
2
2
992
class A: def __init__(self, txt: str): self.s: A = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.r: B = None self.txt = txt l = A("l") c = B("c") d = A("d") i = B("i") m = B("m") n = B("n") g = B("g") k = A("k"...
m"
class A: def __init__(self, txt: str): self.s: A = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.r: B = None self.txt = txt l = A("l") c = B("c") d = A("d") i = B("i") m = B("m") n = B("n") g = B("g") k = A("k"...
10
20
2
0.222222
2
5
2
2
2
10
4
2
6
0.6
8
0.4
5
2
7
4
2
5
4
2
993
class A: def __init__(self, txt: str): self.p: A = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.q: A = None self.txt = txt d = A("d") n = B("n") l = B("l") f = B("f") j = A("j") a = B("a") c = A("c") b = B("b"...
a"
class A: def __init__(self, txt: str): self.p: A = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.q: A = None self.txt = txt d = A("d") n = B("n") l = B("l") f = B("f") j = A("j") a = B("a") c = A("c") b = B("b"...
8
12
1.5
0.214286
2
4
2
2
2
5
2
1
4
0.5
5
0.416667
2
2
4
3
3
2
1
2
994
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.t: A = None self.txt = txt k = A("k") e = B("e") c = B("c") l = B("l") f = B("f") a = A("a") b = A("b") n = B("n") m = B("m") i = A("i") ...
a"
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.t: A = None self.txt = txt k = A("k") e = B("e") c = B("c") l = B("l") f = B("f") a = A("a") b = A("b") n = B("n") m = B("m") i = A("i") ...
10
16
1.6
0.177778
2
5
2
1
1.5
9
4
3
5
0.5
5
0.3125
5
2
6
3.111111
2
5
1
1
995
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.txt = txt h = A("h") m = B("m") j = B("j") c = A("c") d = A("d") i = A("i") b = B("b") h.t = m m.v = j j.v = m c.t = b d.t = j i.t = b b.v = m as...
m"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.txt = txt h = A("h") m = B("m") j = B("j") c = A("c") d = A("d") i = A("i") b = B("b") h.t = m m.v = j j.v = m c.t = b d.t = j i.t = b b.v = m as...
7
7
1
0.166667
2
3.5
1
1
1
6
3
3
3
0.428571
3
0.428571
4
2
4
2.666667
2
5
5
1
996
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt j = A("j") b = B("b") e = B("e") c = A("c") k = A("k") h = B("h") f = B("f") d = B("d") g = B("g") j.o = c b.z = c e.z = c c.o = k k.o ...
k"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt j = A("j") b = B("b") e = B("e") c = A("c") k = A("k") h = B("h") f = B("f") d = B("d") g = B("g") j.o = c b.z = c e.z = c c.o = k k.o ...
9
9
1
0.125
2
4.5
1
1
1
9
4
4
4
0.444444
4
0.444444
6
2
6
3.333333
2
8
8
1
997
class A: def __init__(self, txt: str): self.v: A = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.q: A = None self.txt = txt m = A("m") h = B("h") l = A("l") n = A("n") j = A("j") k = A("k") c = A("c") m.v = c ...
c"
class A: def __init__(self, txt: str): self.v: A = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.q: A = None self.txt = txt m = A("m") h = B("h") l = A("l") n = A("n") j = A("j") k = A("k") c = A("c") m.v = c ...
7
12
1.714286
0.285714
2
3.5
2
2
2
6
2
2
4
0.571429
5
0.416667
3
4
4
4
2
5
5
2
998
class A: def __init__(self, txt: str): self.v: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.s: A = None self.txt = txt e = A("e") l = B("l") h = A("h") n = B("n") f = A("f") e.v = l e.q = n l.u = h l.s = ...
n"
class A: def __init__(self, txt: str): self.v: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.s: A = None self.txt = txt e = A("e") l = B("l") h = A("h") n = B("n") f = A("f") e.v = l e.q = n l.u = h l.s = ...
5
9
1.8
0.45
2
2.5
2
2
2
3
2
1
3
0.6
3
0.333333
1
2
2
2
3
1
1
1
999
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.o: B = None self.txt = txt n = A("n") m = B("m") i = B("i") j = A("j") h = A("h") f = A("f") l = A("l") g = A("g") d = B("d") b = B("b") ...
h"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.o: B = None self.txt = txt n = A("n") m = B("m") i = B("i") j = A("j") h = A("h") f = A("f") l = A("l") g = A("g") d = B("d") b = B("b") ...
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
1
4
4
1