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
0
class A: def __init__(self, txt: str): self.o: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.r: B = None self.txt = txt h = A("h") c = B("c") m = A("m") k = B("k") n = A("n") e = B("e") l = A("l") g = A("g"...
k"
class A: def __init__(self, txt: str): self.o: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.r: B = None self.txt = txt h = A("h") c = B("c") m = A("m") k = B("k") n = A("n") e = B("e") l = A("l") g = A("g"...
9
18
2
0.25
2
4.5
2
2
2
5
2
1
5
0.555556
5
0.277778
1
3
3
3
3
3
3
1
1
class A: def __init__(self, txt: str): self.y: A = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt g = A("g") i = B("i") l = A("l") b = A("b") g.y = l g.t = i i.t = g l.y = g l.t = i b.y = g b.t = i assert l.t...
i"
class A: def __init__(self, txt: str): self.y: A = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt g = A("g") i = B("i") l = A("l") b = A("b") g.y = l g.t = i i.t = g l.y = g l.t = i b.y = g b.t = i assert l.t...
4
7
1.75
0.583333
2
2
2
1
1.5
3
2
1
3
0.75
3
0.428571
1
2
2
2
1
3
3
1
2
class A: def __init__(self, txt: str): self.x: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt a = A("a") k = B("k") m = A("m") n = A("n") e = A("e") h = B("h") j = A("j") b = B("b") g = A("g") a.x = g a.t...
e"
class A: def __init__(self, txt: str): self.x: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt a = A("a") k = B("k") m = A("m") n = A("n") e = A("e") h = B("h") j = A("j") b = B("b") g = A("g") a.x = g a.t...
9
12
1.333333
0.166667
2
4.5
2
1
1.5
4
3
2
2
0.222222
3
0.25
3
2
4
2.5
2
3
2
2
3
class A: def __init__(self, txt: str): self.w: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt c = A("c") l = B("l") d = A("d") g = A("g") i = B("i") c.w = d c.v = d l.r = c d.w = g d.v = c g.w = c g.v = d...
d"
class A: def __init__(self, txt: str): self.w: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt c = A("c") l = B("l") d = A("d") g = A("g") i = B("i") c.w = d c.v = d l.r = c d.w = g d.v = c g.w = c g.v = d...
5
7
1.4
0.35
2
2.5
2
1
1.5
3
2
1
2
0.4
3
0.428571
2
2
2
2
2
2
2
2
4
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.o: B = None self.v: B = None self.txt = txt l = A("l") g = B("g") e = B("e") d = B("d") c = B("c") i = A("i") k = B("k") b = B("b"...
c"
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.o: B = None self.v: B = None self.txt = txt l = A("l") g = B("g") e = B("e") d = B("d") c = B("c") i = A("i") k = B("k") b = B("b"...
8
15
1.875
0.267857
2
4
2
2
2
6
3
2
4
0.5
4
0.266667
3
2
4
2.5
2
4
3
1
5
class A: def __init__(self, txt: str): self.z: B = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt i = A("i") c = B("c") e = A("e") i.z = c i.s = e c.r = e e.z = c e.s = i assert e.s.z.r.txt == "
e"
class A: def __init__(self, txt: str): self.z: B = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt i = A("i") c = B("c") e = A("e") i.z = c i.s = e c.r = e e.z = c e.s = i assert e.s.z.r.txt == "e"
3
5
1.666667
0.833333
2
1.5
2
1
1.5
3
2
1
3
1
3
0.6
1
3
3
3
3
1
1
1
6
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt c = A("c") b = B("b") j = B("j") k = B("k") h = B("h") g = A("g") c.s = g b.s = j j.s = b k.s = b h.s = b g.s = c assert k.s.s.s.s.s.s....
j"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt c = A("c") b = B("b") j = B("j") k = B("k") h = B("h") g = A("g") c.s = g b.s = j j.s = b k.s = b h.s = b g.s = c assert k.s.s.s.s.s.s....
6
6
1
0.2
2
3
1
1
1
6
3
3
3
0.5
3
0.5
4
2
4
2.666667
1
6
6
1
7
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt d = A("d") n = B("n") m = B("m") d.x = n n.z = m m.z = n assert d.x.z.z.txt == "
n"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt d = A("d") n = B("n") m = B("m") d.x = n n.z = m m.z = n assert d.x.z.z.txt == "n"
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
8
class A: def __init__(self, txt: str): self.w: B = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt i = A("i") h = B("h") l = B("l") i.w = l i.z = l h.q = i l.q = i assert h.q.z.q.txt == "
i"
class A: def __init__(self, txt: str): self.w: B = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt i = A("i") h = B("h") l = B("l") i.w = l i.z = l h.q = i l.q = i assert h.q.z.q.txt == "i"
3
3
1
0.5
2
1.5
2
1
1.5
3
2
1
3
1
3
1
1
2
2
2
2
2
1
1
9
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt m = A("m") i = B("i") e = A("e") f = A("f") b = A("b") g = A("g") j = A("j") h = B("h") n = A("n") m.w = b i.v = m e.w = f f.w = e b.w ...
f"
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt m = A("m") i = B("i") e = A("e") f = A("f") b = A("b") g = A("g") j = A("j") h = B("h") n = A("n") m.w = b i.v = m e.w = f f.w = e b.w ...
9
9
1
0.125
2
4.5
1
1
1
6
3
3
3
0.333333
3
0.333333
4
2
4
2.666667
1
6
6
1
10
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.t: B = None self.txt = txt k = A("k") c = B("c") g = A("g") h = A("h") d = B("d") a = B("a") k.y = h c.x = d c.t = a g.y = k h.y = g d.x ...
k"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.t: B = None self.txt = txt k = A("k") c = B("c") g = A("g") h = A("h") d = B("d") a = B("a") k.y = h c.x = d c.t = a g.y = k h.y = g d.x ...
6
8
1.333333
0.266667
2
3
2
1
1.5
4
2
2
3
0.5
3
0.375
2
3
3
3
1
4
4
1
11
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt e = A("e") f = B("f") i = B("i") d = B("d") e.t = i f.t = e i.t = e d.t = e assert e.t.t.t.t.txt == "
e"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt e = A("e") f = B("f") i = B("i") d = B("d") e.t = i f.t = e i.t = e d.t = e assert e.t.t.t.t.txt == "e"
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
12
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.o: A = None self.txt = txt l = A("l") h = B("h") f = B("f") c = B("c") n = B("n") m = A("m") a = B("a") k = A("k") j = B("j") l.o = m h.v...
l"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.o: A = None self.txt = txt l = A("l") h = B("h") f = B("f") c = B("c") n = B("n") m = A("m") a = B("a") k = A("k") j = B("j") l.o = m h.v...
9
13
1.444444
0.180556
2
4.5
2
1
1.5
3
2
2
2
0.222222
2
0.153846
2
2
2
2
1
3
3
1
13
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 g = A("g") e = B("e") a = B("a") d = A("d") c = A("c") k = B("k") g.v = d e.x = k a.x = k d.v = g c.v = g k.x = e assert k.x.x.x.txt ==...
e"
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 g = A("g") e = B("e") a = B("a") d = A("d") c = A("c") k = B("k") g.v = d e.x = k a.x = k d.v = g c.v = g k.x = e assert k.x.x.x.txt ==...
6
6
1
0.2
2
3
1
1
1
3
2
2
2
0.333333
2
0.333333
2
2
2
2
1
3
3
1
14
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 l = A("l") i = B("i") m = A("m") g = B("g") f = B("f") d = A("d") c = B("c") j = A("j") a = B("a") l.t = a l.s...
g"
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 l = A("l") i = B("i") m = A("m") g = B("g") f = B("f") d = A("d") c = B("c") j = A("j") a = B("a") l.t = a l.s...
9
13
1.444444
0.180556
2
4.5
2
1
1.5
5
2
2
4
0.444444
4
0.307692
2
2
2
2
3
2
1
2
15
class A: def __init__(self, txt: str): self.y: A = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.t: B = None self.txt = txt e = A("e") a = B("a") d = B("d") b = A("b") f = A("f") m = B("m") n = B("n") e.y = b ...
n"
class A: def __init__(self, txt: str): self.y: A = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.t: B = None self.txt = txt e = A("e") a = B("a") d = B("d") b = A("b") f = A("f") m = B("m") n = B("n") e.y = b ...
7
12
1.714286
0.285714
2
3.5
2
2
2
3
1
1
4
0.571429
3
0.25
0
null
null
null
3
1
1
1
16
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt e = A("e") g = B("g") j = B("j") f = B("f") k = B("k") h = B("h") n = A("n") i = A("i") l = A("l") e.t = h g.r = e j.r = n f.r = e k.r ...
h"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt e = A("e") g = B("g") j = B("j") f = B("f") k = B("k") h = B("h") n = A("n") i = A("i") l = A("l") e.t = h g.r = e j.r = n f.r = e k.r ...
9
9
1
0.125
2
4.5
1
1
1
6
2
2
4
0.444444
4
0.444444
3
4
4
4
2
3
1
1
17
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt g = A("g") b = B("b") l = B("l") g.o = l b.u = g l.u = g assert g.o.u.o.txt == "
l"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt g = A("g") b = B("b") l = B("l") g.o = l b.u = g l.u = g assert g.o.u.o.txt == "l"
3
3
1
0.5
2
1.5
1
1
1
3
2
2
2
0.666667
2
0.666667
2
2
2
2
2
2
1
1
18
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 m = A("m") l = B("l") b = B("b") a = B("a") i = B("i") h = B("h") k = B("k") g = B("g") j = B("j") n = A("n") ...
m"
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 m = A("m") l = B("l") b = B("b") a = B("a") i = B("i") h = B("h") k = B("k") g = B("g") j = B("j") n = A("n") ...
10
10
1
0.111111
2
5
2
1
1.5
10
5
3
3
0.3
5
0.5
8
2
8
4
3
5
2
2
19
class A: def __init__(self, txt: str): self.r: A = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.u: B = None self.txt = txt j = A("j") m = B("m") e = A("e") c = B("c") h = A("h") n = A("n") l = A("l") b = A("b"...
m"
class A: def __init__(self, txt: str): self.r: A = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.u: B = None self.txt = txt j = A("j") m = B("m") e = A("e") c = B("c") h = A("h") n = A("n") l = A("l") b = A("b"...
8
14
1.75
0.25
2
4
2
2
2
7
3
2
5
0.625
6
0.428571
3
2
4
2.5
4
3
2
2
20
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.r: A = None self.txt = txt g = A("g") c = B("c") m = B("m") e = A("e") g.r = e c.z = e c.r = e m.z = e m.r = e e.r = g assert m.z.r.r.txt...
e"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.r: A = None self.txt = txt g = A("g") c = B("c") m = B("m") e = A("e") g.r = e c.z = e c.r = e m.z = e m.r = e e.r = g assert m.z.r.r.txt...
4
4
1
0.333333
2
2
2
1
1.5
3
2
1
3
0.75
3
0.75
1
2
2
2
2
2
2
1
21
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.p: A = None self.txt = txt a = A("a") g = B("g") c = B("c") a.q = g g.s = a g.p = a c.s = a c.p = a assert g.p.q.p.txt == "
a"
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.p: A = None self.txt = txt a = A("a") g = B("g") c = B("c") a.q = g g.s = a g.p = a c.s = a c.p = a assert g.p.q.p.txt == "a"
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
22
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.q: B = None self.txt = txt j = A("j") h = B("h") b = B("b") c = B("c") n = A("n") j.s = n h.s = j h.q = b b.s = j b.q = c c.s = j c.q = b...
n"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.q: B = None self.txt = txt j = A("j") h = B("h") b = B("b") c = B("c") n = A("n") j.s = n h.s = j h.q = b b.s = j b.q = c c.s = j c.q = b...
5
8
1.6
0.4
2
2.5
2
1
1.5
5
3
3
2
0.4
2
0.25
4
2
4
2.666667
1
5
5
1
23
class A: def __init__(self, txt: str): self.w: B = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt k = A("k") b = B("b") g = A("g") d = B("d") i = A("i") a = B("a") k.w = a k.t = a b.p = d g.w = d g.t = b d.p ...
a"
class A: def __init__(self, txt: str): self.w: B = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt k = A("k") b = B("b") g = A("g") d = B("d") i = A("i") a = B("a") k.w = a k.t = a b.p = d g.w = d g.t = b d.p ...
6
8
1.333333
0.266667
2
3
2
1
1.5
4
2
2
3
0.5
3
0.375
2
3
3
3
1
4
4
1
24
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt g = A("g") b = B("b") d = A("d") i = B("i") c = B("c") h = A("h") g.t = h b.r = c d.t = g i.r = c c.r = i h.t = d assert i.r.r.r.r.txt ...
i"
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt g = A("g") b = B("b") d = A("d") i = B("i") c = B("c") h = A("h") g.t = h b.r = c d.t = g i.r = c c.r = i h.t = d assert i.r.r.r.r.txt ...
6
6
1
0.2
2
3
1
1
1
4
3
2
2
0.333333
2
0.333333
3
2
4
2.5
1
4
4
1
25
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.y: B = None self.txt = txt h = A("h") g = B("g") m = B("m") n = B("n") k = B("k") d = A("d") b = B("b") f = B("f") h.s = d h.x = f g.y = ...
n"
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.y: B = None self.txt = txt h = A("h") g = B("g") m = B("m") n = B("n") k = B("k") d = A("d") b = B("b") f = B("f") h.s = d h.x = f g.y = ...
8
10
1.25
0.178571
2
4
2
1
1.5
5
3
2
3
0.375
3
0.3
3
2
4
2.5
1
5
5
1
26
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 n = A("n") e = B("e") j = B("j") n.u = j e.x = n j.x = n assert j.x.u.x.txt == "
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 n = A("n") e = B("e") j = B("j") n.u = j e.x = n j.x = n assert j.x.u.x.txt == "n"
3
3
1
0.5
2
1.5
1
1
1
3
2
2
2
0.666667
2
0.666667
2
2
2
2
2
2
1
1
27
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.r: A = None self.txt = txt i = A("i") m = B("m") l = A("l") f = A("f") d = A("d") h = A("h") c = A("c") b = B("b") e = A("e") j = A("j") ...
i"
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.r: A = None self.txt = txt i = A("i") m = B("m") l = A("l") f = A("f") d = A("d") h = A("h") c = A("c") b = B("b") e = A("e") j = A("j") ...
10
12
1.2
0.133333
2
5
2
1
1.5
4
2
2
3
0.3
3
0.25
2
2
2
2
2
2
1
1
28
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.u: B = None self.txt = txt d = A("d") l = B("l") n = A("n") b = A("b") c = A("c") f = B("f") h = B("h") e = A("e") i = A("i") m = A("m") ...
n"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.u: B = None self.txt = txt d = A("d") l = B("l") n = A("n") b = A("b") c = A("c") f = B("f") h = B("h") e = A("e") i = A("i") m = A("m") ...
10
13
1.3
0.144444
2
5
2
1
1.5
8
4
3
4
0.4
4
0.307692
5
2
6
3.111111
1
8
8
1
29
class A: def __init__(self, txt: str): self.q: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.r: B = None self.txt = txt b = A("b") a = B("a") j = B("j") k = A("k") h = B("h") g = A("g") b.q = j b.w = g a.s...
j"
class A: def __init__(self, txt: str): self.q: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.r: B = None self.txt = txt b = A("b") a = B("a") j = B("j") k = A("k") h = B("h") g = A("g") b.q = j b.w = g a.s...
6
12
2
0.4
2
3
2
2
2
5
3
2
3
0.5
4
0.333333
3
2
4
2.5
3
3
3
2
30
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.q: B = None self.txt = txt b = A("b") l = B("l") a = A("a") g = A("g") f = A("f") n = B("n") d = B("d") h = B("h") m = A("m") b.o = a l.w...
f"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.q: B = None self.txt = txt b = A("b") l = B("l") a = A("a") g = A("g") f = A("f") n = B("n") d = B("d") h = B("h") m = A("m") b.o = a l.w...
9
11
1.222222
0.152778
2
4.5
2
1
1.5
8
3
3
3
0.333333
3
0.272727
6
3
6
4
1
8
8
1
31
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.w: B = None self.txt = txt c = A("c") a = B("a") l = B("l") g = B("g") c.w = g a.q = c a.w = g l.q = c l.w = g g.q = c g.w = l assert a.w...
g"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.w: B = None self.txt = txt c = A("c") a = B("a") l = B("l") g = B("g") c.w = g a.q = c a.w = g l.q = c l.w = g g.q = c g.w = l assert a.w...
4
7
1.75
0.583333
2
2
2
1
1.5
3
2
1
3
0.75
3
0.428571
1
2
2
2
1
3
3
1
32
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt m = A("m") k = B("k") g = A("g") a = B("a") f = B("f") l = B("l") m.s = g k.w = a g.s = m a.w = l f.w = l l.w = k assert m.s.s.s.s.s.s....
m"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.txt = txt m = A("m") k = B("k") g = A("g") a = B("a") f = B("f") l = B("l") m.s = g k.w = a g.s = m a.w = l f.w = l l.w = k assert m.s.s.s.s.s.s....
6
6
1
0.2
2
3
1
1
1
6
4
3
2
0.333333
2
0.333333
5
2
6
3.111111
1
6
6
1
33
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.q: A = None self.txt = txt l = A("l") i = B("i") h = A("h") b = B("b") d = A("d") a = B("a") e = A("e") m = A("m") n = A("n") l.u = e l.s...
a"
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.q: A = None self.txt = txt l = A("l") i = B("i") h = A("h") b = B("b") d = A("d") a = B("a") e = A("e") m = A("m") n = A("n") l.u = e l.s...
9
15
1.666667
0.208333
2
4.5
2
1
1.5
7
2
1
6
0.666667
7
0.466667
2
2
7
4.5
3
3
2
2
34
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.z: B = None self.txt = txt d = A("d") k = B("k") l = A("l") n = B("n") i = A("i") e = B("e") a = A("a") c = B("c") h = A("h") j = B("j") ...
n"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.z: B = None self.txt = txt d = A("d") k = B("k") l = A("l") n = B("n") i = A("i") e = B("e") a = A("a") c = B("c") h = A("h") j = B("j") ...
10
14
1.4
0.155556
2
5
2
1
1.5
8
2
2
6
0.6
6
0.428571
3
3
3
3
3
4
2
1
35
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 h = A("h") a = B("a") g = B("g") k = B("k") f = B("f") d = B("d") j = A("j") e = B("e") m = B("m") h.y = e a.o = j g.o = h k.o = j f.o ...
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 h = A("h") a = B("a") g = B("g") k = B("k") f = B("f") d = B("d") j = A("j") e = B("e") m = B("m") h.y = e a.o = j g.o = h k.o = j f.o ...
9
9
1
0.125
2
4.5
1
1
1
3
1
1
4
0.444444
3
0.333333
0
null
null
null
2
2
1
1
36
class A: def __init__(self, txt: str): self.w: B = None self.r: 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") j = B("j") i.w = j i.r = j a.o = i j.o = i assert j.o.r.o.txt == "
i"
class A: def __init__(self, txt: str): self.w: B = None self.r: 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") j = B("j") i.w = j i.r = j a.o = i j.o = i assert j.o.r.o.txt == "i"
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
37
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt l = A("l") b = B("b") g = B("g") m = B("m") i = A("i") f = B("f") k = A("k") l.u = i b.p = l g.p = i m.p = k i.u = k f.p = k k.u = l as...
i"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt l = A("l") b = B("b") g = B("g") m = B("m") i = A("i") f = B("f") k = A("k") l.u = i b.p = l g.p = i m.p = k i.u = k f.p = k k.u = l as...
7
7
1
0.166667
2
3.5
1
1
1
4
2
2
3
0.428571
3
0.428571
2
3
3
3
1
4
4
1
38
class A: def __init__(self, txt: str): self.y: A = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt c = A("c") g = B("g") l = B("l") a = B("a") h = A("h") d = B("d") n = B("n") e = B("e") c.y = h c.w = h g.s = ...
l"
class A: def __init__(self, txt: str): self.y: A = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt c = A("c") g = B("g") l = B("l") a = B("a") h = A("h") d = B("d") n = B("n") e = B("e") c.y = h c.w = h g.s = ...
8
8
1
0.142857
2
4
2
1
1.5
5
2
2
4
0.5
4
0.5
2
2
2
2
1
5
5
1
39
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.r: B = None self.x: B = None self.txt = txt c = A("c") i = B("i") g = A("g") j = A("j") l = B("l") n = B("n") c.u = j c.q = g i.r...
g"
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.r: B = None self.x: B = None self.txt = txt c = A("c") i = B("i") g = A("g") j = A("j") l = B("l") n = B("n") c.u = j c.q = g i.r...
6
9
1.5
0.3
2
3
2
2
2
4
2
1
3
0.5
4
0.444444
2
3
3
3
2
2
1
2
40
class A: def __init__(self, txt: str): self.t: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt k = A("k") d = B("d") l = A("l") a = B("a") h = A("h") i = B("i") e = A("e") m = A("m") k.t = a k.r = i d.y = ...
i"
class A: def __init__(self, txt: str): self.t: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt k = A("k") d = B("d") l = A("l") a = B("a") h = A("h") i = B("i") e = A("e") m = A("m") k.t = a k.r = i d.y = ...
8
12
1.5
0.214286
2
4
2
1
1.5
6
2
1
6
0.75
6
0.5
1
2
2
2
3
3
1
1
41
class A: def __init__(self, txt: str): self.x: A = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.x: B = None self.txt = txt g = A("g") a = B("a") b = B("b") c = A("c") i = A("i") m = A("m") f = B("f") n = A("n"...
m"
class A: def __init__(self, txt: str): self.x: A = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.x: B = None self.txt = txt g = A("g") a = B("a") b = B("b") c = A("c") i = A("i") m = A("m") f = B("f") n = A("n"...
9
17
1.888889
0.236111
2
4.5
2
2
2
3
1
1
4
0.444444
3
0.176471
0
null
null
null
2
2
2
1
42
class A: def __init__(self, txt: str): self.x: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.s: B = None self.txt = txt g = A("g") e = B("e") i = B("i") a = A("a") g.x = a g.w = i e.t = a e.s = i i.t = a i...
a"
class A: def __init__(self, txt: str): self.x: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.s: B = None self.txt = txt g = A("g") e = B("e") i = B("i") a = A("a") g.x = a g.w = i e.t = a e.s = i i.t = a i...
4
8
2
0.666667
2
2
2
2
2
4
2
2
3
0.75
3
0.375
2
3
3
3
3
2
1
1
43
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.y: B = None self.txt = txt j = A("j") h = B("h") k = A("k") n = B("n") j.p = h h.z = k h.y = n k.p = n n.z = j n.y = h assert n.z.p.y.y.t...
h"
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.y: B = None self.txt = txt j = A("j") h = B("h") k = A("k") n = B("n") j.p = h h.z = k h.y = n k.p = n n.z = j n.y = h assert n.z.p.y.y.t...
4
6
1.5
0.5
2
2
2
1
1.5
4
2
1
3
0.75
4
0.666667
2
2
3
2.5
3
2
2
2
44
class A: def __init__(self, txt: str): self.x: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.w: B = None self.txt = txt i = A("i") d = B("d") l = A("l") f = A("f") m = A("m") h = B("h") n = A("n") g = B("g"...
h"
class A: def __init__(self, txt: str): self.x: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.w: B = None self.txt = txt i = A("i") d = B("d") l = A("l") f = A("f") m = A("m") h = B("h") n = A("n") g = B("g"...
8
15
1.875
0.267857
2
4
2
2
2
7
3
2
3
0.375
6
0.4
5
2
5
2.857143
2
4
3
2
45
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.p: A = None self.txt = txt d = A("d") l = B("l") n = B("n") d.y = n l.w = n l.p = d n.w = l n.p = d assert d.y.w.p.txt == "
d"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.p: A = None self.txt = txt d = A("d") l = B("l") n = B("n") d.y = n l.w = n l.p = d n.w = l n.p = d assert d.y.w.p.txt == "d"
3
5
1.666667
0.833333
2
1.5
2
1
1.5
3
2
1
3
1
3
0.6
1
3
3
3
3
1
1
1
46
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.q: A = None self.txt = txt m = A("m") k = B("k") n = B("n") m.q = k k.y = m k.q = m n.y = m n.q = m assert n.y.q.q.txt == "
m"
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.q: A = None self.txt = txt m = A("m") k = B("k") n = B("n") m.q = k k.y = m k.q = m n.y = m n.q = m assert n.y.q.q.txt == "m"
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
47
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.w: A = None self.txt = txt i = A("i") e = B("e") k = B("k") c = A("c") j = B("j") b = B("b") d = A("d") i.o = c e.r = b e.w = c k.r = e k...
d"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.w: A = None self.txt = txt i = A("i") e = B("e") k = B("k") c = A("c") j = B("j") b = B("b") d = A("d") i.o = c e.r = b e.w = c k.r = e k...
7
11
1.571429
0.261905
2
3.5
2
1
1.5
5
3
2
3
0.428571
3
0.272727
3
2
4
2.5
2
4
4
1
48
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.t: B = None self.txt = txt f = A("f") k = B("k") g = B("g") n = B("n") f.t = g k.z = f k.t = n g.z = f g.t = n n.z = f n.t = k assert f.t...
f"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.t: B = None self.txt = txt f = A("f") k = B("k") g = B("g") n = B("n") f.t = g k.z = f k.t = n g.z = f g.t = n n.z = f n.t = k assert f.t...
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
49
class A: def __init__(self, txt: str): self.u: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.q: A = None self.txt = txt k = A("k") i = B("i") e = A("e") b = B("b") d = A("d") f = A("f") g = B("g") m = A("m"...
b"
class A: def __init__(self, txt: str): self.u: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.q: A = None self.txt = txt k = A("k") i = B("i") e = A("e") b = B("b") d = A("d") f = A("f") g = B("g") m = A("m"...
9
17
1.888889
0.236111
2
4.5
2
2
2
4
2
1
4
0.444444
4
0.235294
1
3
3
3
3
2
1
1
50
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.p: B = None self.txt = txt e = A("e") c = B("c") l = A("l") f = B("f") n = A("n") g = B("g") h = A("h") b = A("b") k = B("k") m = A("m") ...
n"
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.p: B = None self.txt = txt e = A("e") c = B("c") l = A("l") f = B("f") n = A("n") g = B("g") h = A("h") b = A("b") k = B("k") m = A("m") ...
10
14
1.4
0.155556
2
5
2
1
1.5
10
5
5
3
0.3
3
0.214286
8
2
8
4
1
10
10
1
51
class A: def __init__(self, txt: str): self.y: B = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt c = A("c") k = B("k") f = B("f") c.y = k c.v = k k.q = f f.q = k assert c.y.q.q.txt == "
k"
class A: def __init__(self, txt: str): self.y: B = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt c = A("c") k = B("k") f = B("f") c.y = k c.v = k k.q = f f.q = k assert c.y.q.q.txt == "k"
3
3
1
0.5
2
1.5
2
1
1.5
3
2
1
3
1
3
1
1
2
2
2
2
2
2
1
52
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.y: A = None self.txt = txt c = A("c") d = B("d") b = B("b") l = B("l") c.u = l d.p = c d.y = c b.p = c b.y = c l.p = c l.y = c assert b.y...
l"
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.y: A = None self.txt = txt c = A("c") d = B("d") b = B("b") l = B("l") c.u = l d.p = c d.y = c b.p = c b.y = c l.p = c l.y = c assert b.y...
4
4
1
0.333333
2
2
2
1
1.5
4
2
2
3
0.75
3
0.75
2
2
2
2
3
2
1
1
53
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt c = A("c") m = B("m") b = A("b") g = B("g") f = B("f") h = B("h") n = A("n") c.t = g m.t = c b.t = h g.t = n f.t = n h.t = n n.t = h as...
h"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt c = A("c") m = B("m") b = A("b") g = B("g") f = B("f") h = B("h") n = A("n") c.t = g m.t = c b.t = h g.t = n f.t = n h.t = n n.t = h 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
54
class A: def __init__(self, txt: str): self.t: A = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.z: A = None self.txt = txt n = A("n") f = B("f") g = A("g") i = A("i") k = B("k") a = A("a") l = B("l") j = B("j"...
i"
class A: def __init__(self, txt: str): self.t: A = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.z: A = None self.txt = txt n = A("n") f = B("f") g = A("g") i = A("i") k = B("k") a = A("a") l = B("l") j = B("j"...
8
16
2
0.285714
2
4
2
2
2
8
4
3
4
0.5
5
0.3125
5
2
8
3.777778
2
6
6
2
55
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.t: B = None self.txt = txt m = A("m") e = B("e") j = A("j") h = B("h") c = A("c") m.o = c e.u = c e.t = h j.o = m h.u = j h.t = e c.o = m...
m"
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.t: B = None self.txt = txt m = A("m") e = B("e") j = A("j") h = B("h") c = A("c") m.o = c e.u = c e.t = h j.o = m h.u = j h.t = e c.o = m...
5
7
1.4
0.35
2
2.5
2
1
1.5
5
2
1
5
1
5
0.714286
1
2
2
2
3
3
3
1
56
class A: def __init__(self, txt: str): self.y: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.t: B = None self.txt = txt f = A("f") a = B("a") l = B("l") f.y = a f.x = l a.r = l a.t = l l.r = a l.t = a asse...
l"
class A: def __init__(self, txt: str): self.y: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.t: B = None self.txt = txt f = A("f") a = B("a") l = B("l") f.y = a f.x = l a.r = l a.t = l l.r = a l.t = a asse...
3
4
1.333333
0.666667
2
1.5
2
2
2
3
2
1
3
1
3
0.75
1
2
2
2
2
2
2
1
57
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt i = A("i") a = B("a") h = B("h") b = A("b") i.z = b a.q = h h.q = a b.z = i assert h.q.q.q.q.txt == "
h"
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt i = A("i") a = B("a") h = B("h") b = A("b") i.z = b a.q = h h.q = a b.z = i assert h.q.q.q.q.txt == "h"
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
58
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.y: A = None self.txt = txt k = A("k") l = B("l") j = B("j") n = B("n") g = A("g") h = A("h") e = A("e") b = B("b") k.t = h k.q = l l.y = ...
g"
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.y: A = None self.txt = txt k = A("k") l = B("l") j = B("j") n = B("n") g = A("g") h = A("h") e = A("e") b = B("b") k.t = h k.q = l l.y = ...
8
12
1.5
0.214286
2
4
2
1
1.5
7
2
2
6
0.75
6
0.5
2
6
6
6
3
3
2
1
59
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt j = A("j") f = B("f") a = A("a") d = B("d") j.v = f f.y = a a.v = f d.y = a assert f.y.v.y.v.txt == "
f"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt j = A("j") f = B("f") a = A("a") d = B("d") j.v = f f.y = a a.v = f d.y = a assert f.y.v.y.v.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
2
2
1
1
60
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt a = A("a") h = B("h") j = B("j") a.r = j h.r = a j.r = a assert h.r.r.r.txt == "
a"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt a = A("a") h = B("h") j = B("j") a.r = j h.r = a j.r = a assert h.r.r.r.txt == "a"
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
61
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt g = A("g") k = B("k") d = A("d") g.q = k k.p = g d.q = k assert d.q.p.q.txt == "
k"
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt g = A("g") k = B("k") d = A("d") g.q = k k.p = g d.q = k assert d.q.p.q.txt == "k"
3
3
1
0.5
2
1.5
1
1
1
3
2
1
3
1
3
1
1
2
2
2
2
2
1
1
62
class A: def __init__(self, txt: str): self.y: A = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.o: A = None self.txt = txt k = A("k") d = B("d") f = B("f") h = B("h") b = B("b") a = A("a") e = A("e") k.y = e ...
e"
class A: def __init__(self, txt: str): self.y: A = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.o: A = None self.txt = txt k = A("k") d = B("d") f = B("f") h = B("h") b = B("b") a = A("a") e = A("e") k.y = e ...
7
14
2
0.333333
2
3.5
2
2
2
3
1
1
4
0.571429
3
0.214286
0
null
null
null
3
1
1
1
63
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.s: B = None self.txt = txt l = A("l") h = B("h") j = A("j") n = B("n") b = B("b") m = B("m") k = A("k") a = B("a") i = B("i") l.x = k h.w...
k"
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.s: B = None self.txt = txt l = A("l") h = B("h") j = A("j") n = B("n") b = B("b") m = B("m") k = A("k") a = B("a") i = B("i") l.x = k h.w...
9
15
1.666667
0.208333
2
4.5
2
1
1.5
7
4
3
3
0.333333
3
0.2
5
2
6
3.111111
1
7
7
1
64
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.w: B = None self.txt = txt m = A("m") k = B("k") f = A("f") g = A("g") b = B("b") m.r = f k.q = m k.w = b f.r = g g.r = f b.q = g b.w = k...
g"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.w: B = None self.txt = txt m = A("m") k = B("k") f = A("f") g = A("g") b = B("b") m.r = f k.q = m k.w = b f.r = g g.r = f b.q = g b.w = k...
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
2
1
65
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt c = A("c") k = B("k") f = B("f") a = A("a") b = B("b") j = A("j") e = B("e") i = B("i") n = B("n") c.p = j k.q = j f.q = c a.p = j b.q ...
a"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt c = A("c") k = B("k") f = B("f") a = A("a") b = B("b") j = A("j") e = B("e") i = B("i") n = B("n") c.p = j k.q = j f.q = c a.p = j b.q ...
9
9
1
0.125
2
4.5
1
1
1
5
2
2
4
0.444444
4
0.444444
2
2
2
2
2
4
4
1
66
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.r: A = None self.txt = txt d = A("d") j = B("j") c = A("c") f = A("f") d.y = f j.s = d j.r = f c.y = d f.y = d assert j.s.y.y.y.txt == "
f"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.r: A = None self.txt = txt d = A("d") j = B("j") c = A("c") f = A("f") d.y = f j.s = d j.r = f c.y = d f.y = d assert j.s.y.y.y.txt == "f...
4
5
1.25
0.416667
2
2
2
1
1.5
4
2
2
3
0.75
3
0.6
2
2
2
2
2
3
3
1
67
class A: def __init__(self, txt: str): self.v: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.s: A = None self.txt = txt g = A("g") k = B("k") c = B("c") l = B("l") i = B("i") a = B("a") j = A("j") m = A("m"...
l"
class A: def __init__(self, txt: str): self.v: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.s: A = None self.txt = txt g = A("g") k = B("k") c = B("c") l = B("l") i = B("i") a = B("a") j = A("j") m = A("m"...
10
19
1.9
0.211111
2
5
2
2
2
8
2
1
7
0.7
8
0.421053
2
3
7
5
4
4
1
2
68
class A: def __init__(self, txt: str): self.y: B = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.u: B = None self.txt = txt n = A("n") h = B("h") j = B("j") c = A("c") a = A("a") n.y = j n.t = j h.p = c h.u = ...
c"
class A: def __init__(self, txt: str): self.y: B = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.u: B = None self.txt = txt n = A("n") h = B("h") j = B("j") c = A("c") a = A("a") n.y = j n.t = j h.p = c h.u = ...
5
8
1.6
0.4
2
2.5
2
2
2
5
3
3
2
0.4
2
0.25
4
2
4
2.666667
2
3
1
1
69
class A: def __init__(self, txt: str): self.t: A = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt c = A("c") a = B("a") j = B("j") g = B("g") m = A("m") n = B("n") f = B("f") c.t = m c.y = a a.z = g j.z = a g...
g"
class A: def __init__(self, txt: str): self.t: A = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt c = A("c") a = B("a") j = B("j") g = B("g") m = A("m") n = B("n") f = B("f") c.t = m c.y = a a.z = g j.z = a g...
7
9
1.285714
0.214286
2
3.5
2
1
1.5
3
1
1
4
0.571429
3
0.333333
0
null
null
null
2
2
2
1
70
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt i = A("i") j = B("j") l = B("l") i.w = l j.r = i l.r = i assert l.r.w.r.txt == "
i"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt i = A("i") j = B("j") l = B("l") i.w = l j.r = i l.r = i assert l.r.w.r.txt == "i"
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
71
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.p: A = None self.txt = txt a = A("a") n = B("n") c = B("c") g = B("g") d = B("d") f = A("f") k = A("k") m = A("m") l = A("l") e = A("e") ...
n"
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.p: A = None self.txt = txt a = A("a") n = B("n") c = B("c") g = B("g") d = B("d") f = A("f") k = A("k") m = A("m") l = A("l") e = A("e") ...
10
11
1.1
0.122222
2
5
2
1
1.5
3
1
1
4
0.4
3
0.272727
0
null
null
null
2
2
1
1
72
class A: def __init__(self, txt: str): self.p: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.v: A = None self.txt = txt k = A("k") h = B("h") d = A("d") f = B("f") e = A("e") j = A("j") b = B("b") i = A("i"...
h"
class A: def __init__(self, txt: str): self.p: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.v: A = None self.txt = txt k = A("k") h = B("h") d = A("d") f = B("f") e = A("e") j = A("j") b = B("b") i = A("i"...
8
16
2
0.285714
2
4
2
2
2
8
3
2
5
0.625
7
0.4375
4
2
5
3.6
2
6
4
2
73
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt e = A("e") k = B("k") h = B("h") d = B("d") a = B("a") g = B("g") j = A("j") f = B("f") m = B("m") i = A("i") e.w = g k.s = d h.s = a d...
f"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt e = A("e") k = B("k") h = B("h") d = B("d") a = B("a") g = B("g") j = A("j") f = B("f") m = B("m") i = A("i") e.w = g k.s = d h.s = a d...
10
10
1
0.111111
2
5
1
1
1
9
3
3
6
0.6
6
0.6
4
2
4
2.666667
1
9
9
1
74
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt h = A("h") l = B("l") a = A("a") e = A("e") f = B("f") h.x = f l.s = a a.x = l e.x = l f.s = h assert a.x.s.x.txt == "
l"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt h = A("h") l = B("l") a = A("a") e = A("e") f = B("f") h.x = f l.s = a a.x = l e.x = l f.s = h assert a.x.s.x.txt == "l"
5
5
1
0.25
2
2.5
1
1
1
3
2
2
2
0.4
2
0.4
2
2
2
2
2
2
1
1
75
class A: def __init__(self, txt: str): self.w: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.w: B = None self.txt = txt k = A("k") f = B("f") b = B("b") h = B("h") d = A("d") c = A("c") i = B("i") l = A("l"...
h"
class A: def __init__(self, txt: str): self.w: A = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.w: B = None self.txt = txt k = A("k") f = B("f") b = B("b") h = B("h") d = A("d") c = A("c") i = B("i") l = A("l"...
10
19
1.9
0.211111
2
5
2
2
2
8
3
2
5
0.5
7
0.368421
4
2
5
3.4
3
4
2
2
76
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.t: A = None self.txt = txt m = A("m") e = B("e") c = A("c") d = A("d") a = B("a") n = A("n") f = A("f") j = B("j") i = B("i") l = A("l") ...
m"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.t: A = None self.txt = txt m = A("m") e = B("e") c = A("c") d = A("d") a = B("a") n = A("n") f = A("f") j = B("j") i = B("i") l = A("l") ...
10
14
1.4
0.155556
2
5
2
1
1.5
3
1
1
4
0.4
3
0.214286
0
null
null
null
2
2
2
1
77
class A: def __init__(self, txt: str): self.s: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.q: A = None self.txt = txt m = A("m") a = B("a") k = B("k") l = A("l") j = B("j") b = B("b") h = A("h") m.s = h ...
l"
class A: def __init__(self, txt: str): self.s: A = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.q: A = None self.txt = txt m = A("m") a = B("a") k = B("k") l = A("l") j = B("j") b = B("b") h = A("h") m.s = h ...
7
14
2
0.333333
2
3.5
2
2
2
6
3
2
4
0.571429
5
0.357143
3
2
5
3.75
4
2
2
2
78
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.w: A = None self.txt = txt f = A("f") i = B("i") a = A("a") h = B("h") m = B("m") f.v = m i.t = h i.w = f a.v = i h.t = m h.w = a m.t = i...
m"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.w: A = None self.txt = txt f = A("f") i = B("i") a = A("a") h = B("h") m = B("m") f.v = m i.t = h i.w = f a.v = i h.t = m h.w = a m.t = i...
5
8
1.6
0.4
2
2.5
2
1
1.5
5
2
1
5
1
5
0.625
1
4
4
4
3
2
1
1
79
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt k = A("k") d = B("d") j = A("j") g = B("g") e = B("e") k.q = j d.q = e j.q = k g.q = d e.q = d assert j.q.q.q.q.txt == "
j"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt k = A("k") d = B("d") j = A("j") g = B("g") e = B("e") k.q = j d.q = e j.q = k g.q = d e.q = d assert j.q.q.q.q.txt == "j"
5
5
1
0.25
2
2.5
1
1
1
4
3
2
2
0.4
2
0.4
3
2
4
2.5
1
4
4
1
80
class A: def __init__(self, txt: str): self.q: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt d = A("d") n = B("n") m = A("m") i = A("i") k = B("k") c = A("c") g = A("g") e = B("e") h = A("h") a = A("a") ...
e"
class A: def __init__(self, txt: str): self.q: B = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt d = A("d") n = B("n") m = A("m") i = A("i") k = B("k") c = A("c") g = A("g") e = B("e") h = A("h") a = A("a") ...
10
14
1.4
0.155556
2
5
2
1
1.5
7
4
3
3
0.3
4
0.285714
5
2
6
3.111111
3
3
1
2
81
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt d = A("d") h = B("h") a = A("a") g = B("g") f = A("f") n = A("n") b = B("b") c = A("c") m = B("m") d.p = g h.v = c a.p = b g.v = d f.p ...
n"
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt d = A("d") h = B("h") a = A("a") g = B("g") f = A("f") n = A("n") b = B("b") c = A("c") m = B("m") d.p = g h.v = c a.p = b g.v = d f.p ...
9
9
1
0.125
2
4.5
1
1
1
9
5
5
2
0.222222
2
0.222222
8
2
8
4
2
5
1
1
82
class A: def __init__(self, txt: str): self.z: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt f = A("f") l = B("l") j = A("j") m = B("m") d = A("d") e = A("e") a = B("a") b = B("b") f.z = j f.w = l l.x = ...
l"
class A: def __init__(self, txt: str): self.z: A = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt f = A("f") l = B("l") j = A("j") m = B("m") d = A("d") e = A("e") a = B("a") b = B("b") f.z = j f.w = l l.x = ...
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
1
1
83
class A: def __init__(self, txt: str): self.t: A = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt j = A("j") b = B("b") n = A("n") m = B("m") d = A("d") f = B("f") e = B("e") l = B("l") j.t = d j.x = l b.s = ...
b"
class A: def __init__(self, txt: str): self.t: A = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt j = A("j") b = B("b") n = A("n") m = B("m") d = A("d") f = B("f") e = B("e") l = B("l") j.t = d j.x = l b.s = ...
8
11
1.375
0.196429
2
4
2
1
1.5
3
1
1
4
0.5
3
0.272727
0
null
null
null
1
3
3
1
84
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.z: B = None self.txt = txt f = A("f") h = B("h") i = B("i") k = B("k") m = B("m") e = A("e") j = B("j") l = B("l") f.t = e h.y = l h.z = ...
k"
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.z: B = None self.txt = txt f = A("f") h = B("h") i = B("i") k = B("k") m = B("m") e = A("e") j = B("j") l = B("l") f.t = e h.y = l h.z = ...
8
13
1.625
0.232143
2
4
2
1
1.5
5
2
2
4
0.5
4
0.307692
2
2
2
2
2
4
4
1
85
class A: def __init__(self, txt: str): self.v: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.z: A = None self.txt = txt j = A("j") g = B("g") k = B("k") j.v = g j.p = k g.p = j g.z = j k.p = j k.z = j asse...
k"
class A: def __init__(self, txt: str): self.v: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.z: A = None self.txt = txt j = A("j") g = B("g") k = B("k") j.v = g j.p = k g.p = j g.z = j k.p = j k.z = j asse...
3
4
1.333333
0.666667
2
1.5
2
2
2
3
2
1
3
1
3
0.75
1
2
2
2
3
1
1
2
86
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt f = A("f") c = B("c") g = A("g") f.y = g c.p = g g.y = f assert c.p.y.y.txt == "
g"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt f = A("f") c = B("c") g = A("g") f.y = g c.p = g g.y = f assert c.p.y.y.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
87
class A: def __init__(self, txt: str): self.u: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt n = A("n") d = B("d") e = B("e") n.u = d n.p = e d.p = e e.p = d assert d.p.p.p.txt == "
e"
class A: def __init__(self, txt: str): self.u: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt n = A("n") d = B("d") e = B("e") n.u = d n.p = e d.p = e e.p = d assert d.p.p.p.txt == "e"
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
88
class A: def __init__(self, txt: str): self.u: B = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt c = A("c") j = B("j") d = A("d") a = A("a") f = B("f") h = B("h") c.u = f c.s = j j.y = a d.u = h d.s = f a.u ...
c"
class A: def __init__(self, txt: str): self.u: B = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt c = A("c") j = B("j") d = A("d") a = A("a") f = B("f") h = B("h") c.u = f c.s = j j.y = a d.u = h d.s = f a.u ...
6
9
1.5
0.3
2
3
2
1
1.5
4
3
2
2
0.333333
2
0.222222
3
2
4
2.5
2
2
1
1
89
class A: def __init__(self, txt: str): self.w: B = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.x: A = None self.txt = txt k = A("k") n = B("n") b = B("b") j = A("j") d = A("d") g = B("g") l = A("l") a = B("a"...
c"
class A: def __init__(self, txt: str): self.w: B = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.x: A = None self.txt = txt k = A("k") n = B("n") b = B("b") j = A("j") d = A("d") g = B("g") l = A("l") a = B("a"...
10
17
1.7
0.188889
2
5
2
2
2
3
2
1
3
0.3
3
0.176471
1
2
2
2
3
1
1
2
90
class A: def __init__(self, txt: str): self.v: B = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt j = A("j") n = B("n") e = A("e") f = A("f") g = A("g") m = A("m") d = A("d") b = B("b") j.v = b j.z = f n.t = ...
n"
class A: def __init__(self, txt: str): self.v: B = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt j = A("j") n = B("n") e = A("e") f = A("f") g = A("g") m = A("m") d = A("d") b = B("b") j.v = b j.z = f n.t = ...
8
14
1.75
0.25
2
4
2
1
1.5
3
2
2
2
0.25
2
0.142857
2
2
2
2
1
3
3
1
91
class A: def __init__(self, txt: str): self.z: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt m = A("m") a = B("a") f = A("f") d = B("d") j = A("j") k = B("k") b = B("b") n = B("n") h = A("h") c = B("c") ...
m"
class A: def __init__(self, txt: str): self.z: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt m = A("m") a = B("a") f = A("f") d = B("d") j = A("j") k = B("k") b = B("b") n = B("n") h = A("h") c = B("c") ...
10
14
1.4
0.155556
2
5
2
1
1.5
10
3
1
7
0.7
10
0.714286
4
2
10
5.4
2
7
3
2
92
class A: def __init__(self, txt: str): self.s: A = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.v: A = None self.txt = txt g = A("g") k = B("k") c = A("c") b = B("b") l = A("l") i = A("i") m = A("m") f = B("f"...
b"
class A: def __init__(self, txt: str): self.s: A = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.v: A = None self.txt = txt g = A("g") k = B("k") c = A("c") b = B("b") l = A("l") i = A("i") m = A("m") f = B("f"...
9
18
2
0.25
2
4.5
2
2
2
6
2
2
5
0.555556
5
0.277778
2
2
2
2
2
5
5
2
93
class A: def __init__(self, txt: str): self.u: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt f = A("f") b = B("b") e = A("e") f.u = e f.x = e b.y = f e.u = f e.x = f assert f.x.x.u.txt == "
e"
class A: def __init__(self, txt: str): self.u: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt f = A("f") b = B("b") e = A("e") f.u = e f.x = e b.y = f e.u = f e.x = f assert f.x.x.u.txt == "e"
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
94
class A: def __init__(self, txt: str): self.t: A = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt h = A("h") k = B("k") a = A("a") n = A("n") h.t = n h.q = a k.o = h a.t = h a.q = h n.t = a n.q = a assert k.o...
a"
class A: def __init__(self, txt: str): self.t: A = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt h = A("h") k = B("k") a = A("a") n = A("n") h.t = n h.q = a k.o = h a.t = h a.q = h n.t = a n.q = a assert k.o...
4
5
1.25
0.416667
2
2
2
1
1.5
4
2
2
3
0.75
3
0.6
2
2
2
2
2
3
3
1
95
class A: def __init__(self, txt: str): self.r: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt i = A("i") n = B("n") a = B("a") e = A("e") l = A("l") i.r = n i.v = l n.u = e a.u = l e.r = a e.v = i l.r = a...
a"
class A: def __init__(self, txt: str): self.r: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt i = A("i") n = B("n") a = B("a") e = A("e") l = A("l") i.r = n i.v = l n.u = e a.u = l e.r = a e.v = i l.r = a...
5
8
1.6
0.4
2
2.5
2
1
1.5
4
2
1
4
0.8
4
0.5
1
3
3
3
2
3
3
2
96
class A: def __init__(self, txt: str): self.t: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.r: A = None self.txt = txt i = A("i") l = B("l") e = A("e") b = A("b") f = B("f") n = A("n") h = B("h") a = B("a"...
j"
class A: def __init__(self, txt: str): self.t: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.r: A = None self.txt = txt i = A("i") l = B("l") e = A("e") b = A("b") f = B("f") n = A("n") h = B("h") a = B("a"...
10
19
1.9
0.211111
2
5
2
2
2
3
1
1
4
0.4
3
0.157895
0
null
null
null
2
2
2
1
97
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt a = A("a") n = B("n") g = B("g") m = B("m") a.q = g n.s = a g.s = a m.s = a assert a.q.s.q.txt == "
g"
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt a = A("a") n = B("n") g = B("g") m = B("m") a.q = g n.s = a g.s = a m.s = a assert a.q.s.q.txt == "g"
4
4
1
0.333333
2
2
1
1
1
3
2
2
2
0.5
2
0.5
2
2
2
2
2
2
1
1
98
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt f = A("f") e = B("e") n = B("n") d = B("d") h = A("h") f.p = h e.y = h n.y = h d.y = h h.p = f assert e.y.p.p.p.txt == "
f"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt f = A("f") e = B("e") n = B("n") d = B("d") h = A("h") f.p = h e.y = h n.y = h d.y = h h.p = f assert e.y.p.p.p.txt == "f"
5
5
1
0.25
2
2.5
1
1
1
4
2
2
3
0.6
3
0.6
2
2
2
2
2
3
3
1
99
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt n = A("n") m = B("m") g = A("g") b = B("b") f = B("f") e = B("e") n.y = e m.t = n g.y = f b.t = n f.t = g e.t = g assert e.t.y.t.y.t.tx...
g"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt n = A("n") m = B("m") g = A("g") b = B("b") f = B("f") e = B("e") n.y = e m.t = n g.y = f b.t = n f.t = g e.t = g assert e.t.y.t.y.t.tx...
6
6
1
0.2
2
3
1
1
1
5
3
2
3
0.5
3
0.5
3
2
4
2.5
2
3
1
1