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
400
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.s: B = None self.txt = txt j = A("j") e = B("e") m = B("m") k = B("k") i = B("i") d = A("d") b = A("b") f = A("f") j.u = m e.u = f e.s = ...
e"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.s: B = None self.txt = txt j = A("j") e = B("e") m = B("m") k = B("k") i = B("i") d = A("d") b = A("b") f = A("f") j.u = m e.u = f e.s = ...
8
12
1.5
0.214286
2
4
2
1
1.5
6
2
2
5
0.625
5
0.416667
2
2
2
2
1
6
6
1
401
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt i = A("i") j = B("j") f = B("f") d = B("d") m = A("m") c = B("c") i.u = m j.t = d f.t = c d.t = f m.u = i c.t = f assert d.t.t.t.txt ==...
f"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt i = A("i") j = B("j") f = B("f") d = B("d") m = A("m") c = B("c") i.u = m j.t = d f.t = c d.t = f m.u = i c.t = f assert d.t.t.t.txt ==...
6
6
1
0.2
2
3
1
1
1
3
2
1
3
0.5
3
0.5
1
2
2
2
1
3
3
1
402
class A: def __init__(self, txt: str): self.r: A = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt b = A("b") d = B("d") n = A("n") k = A("k") l = A("l") a = A("a") e = A("e") h = B("h") m = A("m") b.r = e b.u...
e"
class A: def __init__(self, txt: str): self.r: A = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt b = A("b") d = B("d") n = A("n") k = A("k") l = A("l") a = A("a") e = A("e") h = B("h") m = A("m") b.r = e b.u...
9
14
1.555556
0.194444
2
4.5
2
1
1.5
7
3
3
3
0.333333
3
0.214286
5
3
6
3.857143
2
5
2
1
403
class A: def __init__(self, txt: str): self.q: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt d = A("d") g = B("g") b = B("b") a = A("a") l = A("l") n = A("n") i = A("i") f = B("f") c = B("c") m = B("m") ...
n"
class A: def __init__(self, txt: str): self.q: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt d = A("d") g = B("g") b = B("b") a = A("a") l = A("l") n = A("n") i = A("i") f = B("f") c = B("c") m = B("m") ...
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
1
1
404
class A: def __init__(self, txt: str): self.p: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.s: A = None self.txt = txt h = A("h") i = B("i") b = B("b") j = A("j") k = B("k") a = B("a") d = A("d") h.p = i ...
h"
class A: def __init__(self, txt: str): self.p: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.s: A = None self.txt = txt h = A("h") i = B("i") b = B("b") j = A("j") k = B("k") a = B("a") d = A("d") h.p = i ...
7
14
2
0.333333
2
3.5
2
2
2
5
3
2
3
0.428571
4
0.285714
3
2
4
2.5
3
3
3
2
405
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt h = A("h") a = B("a") f = A("f") c = A("c") k = A("k") n = B("n") e = A("e") b = B("b") j = B("j") h.t = b a.y = k f.t = j c.t = a k.t ...
b"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt h = A("h") a = B("a") f = A("f") c = A("c") k = A("k") n = B("n") e = A("e") b = B("b") j = B("j") h.t = b a.y = k f.t = j c.t = a k.t ...
9
9
1
0.125
2
4.5
1
1
1
7
4
4
2
0.222222
2
0.222222
6
2
6
3.333333
2
4
1
1
406
class A: def __init__(self, txt: str): self.p: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt d = A("d") a = B("a") f = B("f") k = A("k") i = B("i") l = B("l") b = A("b") h = B("h") n = A("n") d.p = f d.q...
a"
class A: def __init__(self, txt: str): self.p: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt d = A("d") a = B("a") f = B("f") k = A("k") i = B("i") l = B("l") b = A("b") h = B("h") n = A("n") d.p = f d.q...
9
13
1.444444
0.180556
2
4.5
2
1
1.5
4
3
2
2
0.222222
2
0.153846
3
2
4
2.5
1
4
4
1
407
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.p: A = None self.txt = txt n = A("n") e = B("e") l = A("l") n.t = e e.z = n e.p = l l.t = e assert n.t.z.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.z: A = None self.p: A = None self.txt = txt n = A("n") e = B("e") l = A("l") n.t = e e.z = n e.p = l l.t = e assert n.t.z.t.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
2
2
1
1
408
class A: def __init__(self, txt: str): self.p: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt l = A("l") d = B("d") f = B("f") m = B("m") j = A("j") l.p = f l.u = m d.w = l f.w = j m.w = l j.p = d j.u = m...
l"
class A: def __init__(self, txt: str): self.p: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt l = A("l") d = B("d") f = B("f") m = B("m") j = A("j") l.p = f l.u = m d.w = l f.w = j m.w = l j.p = d j.u = 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
1
1
409
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.q: A = None self.txt = txt f = A("f") k = B("k") n = B("n") c = B("c") i = A("i") g = A("g") h = A("h") l = B("l") f.x = c k.o = h k.q = ...
f"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.q: A = None self.txt = txt f = A("f") k = B("k") n = B("n") c = B("c") i = A("i") g = A("g") h = A("h") l = B("l") f.x = c k.o = h k.q = ...
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
3
1
1
1
410
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt g = A("g") e = B("e") j = B("j") h = A("h") n = A("n") d = B("d") i = A("i") l = A("l") g.x = e e.x = d j.x = d h.x = j n.x = e d.x = e...
e"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt g = A("g") e = B("e") j = B("j") h = A("h") n = A("n") d = B("d") i = A("i") l = A("l") g.x = e e.x = d j.x = d h.x = j n.x = e d.x = e...
8
8
1
0.142857
2
4
1
1
1
8
5
4
2
0.25
2
0.25
7
2
8
3.75
1
8
8
1
411
class A: def __init__(self, txt: str): self.z: B = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.v: B = None self.txt = txt l = A("l") n = B("n") g = A("g") e = B("e") l.z = e l.q = g n.r = e n.v = e g.z = e g...
e"
class A: def __init__(self, txt: str): self.z: B = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.v: B = None self.txt = txt l = A("l") n = B("n") g = A("g") e = B("e") l.z = e l.q = g n.r = e n.v = e g.z = e g...
4
6
1.5
0.5
2
2
2
2
2
3
2
1
2
0.5
3
0.5
2
2
2
2
2
2
2
2
412
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt l = A("l") e = B("e") d = A("d") a = A("a") n = A("n") j = A("j") f = A("f") l.x = e e.w = l d.x = e a.x = e n.x = e j.x = e f.x = e as...
e"
class A: def __init__(self, txt: str): self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt l = A("l") e = B("e") d = A("d") a = A("a") n = A("n") j = A("j") f = A("f") l.x = e e.w = l d.x = e a.x = e n.x = e j.x = e f.x = e 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
2
2
1
1
413
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.q: B = None self.txt = txt i = A("i") j = B("j") l = A("l") m = B("m") n = A("n") a = A("a") d = B("d") k = A("k") g = A("g") f = A("f") ...
i"
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.q: B = None self.txt = txt i = A("i") j = B("j") l = A("l") m = B("m") n = A("n") a = A("a") d = B("d") k = A("k") g = A("g") f = A("f") ...
10
13
1.3
0.144444
2
5
2
1
1.5
5
2
1
5
0.5
5
0.384615
1
4
4
4
2
4
4
1
414
class A: def __init__(self, txt: str): self.q: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt i = A("i") a = B("a") b = B("b") n = A("n") c = B("c") g = A("g") i.q = g i.v = g a.w = n b.w = n n.q = g n.v ...
n"
class A: def __init__(self, txt: str): self.q: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt i = A("i") a = B("a") b = B("b") n = A("n") c = B("c") g = A("g") i.q = g i.v = g a.w = n b.w = n n.q = g n.v ...
6
7
1.166667
0.233333
2
3
2
1
1.5
4
2
1
4
0.666667
4
0.571429
1
3
3
3
3
2
2
1
415
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt j = A("j") f = B("f") c = A("c") h = A("h") j.v = c f.x = j c.v = h h.v = c assert h.v.v.v.txt == "
c"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt j = A("j") f = B("f") c = A("c") h = A("h") j.v = c f.x = j c.v = h h.v = c assert h.v.v.v.txt == "c"
4
4
1
0.333333
2
2
1
1
1
3
2
2
2
0.5
2
0.5
2
2
2
2
1
3
3
1
416
class A: def __init__(self, txt: str): self.t: A = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.w: A = None self.txt = txt h = A("h") f = B("f") a = A("a") h.t = a h.s = a f.s = a f.w = h a.t = h a.s = h asse...
h"
class A: def __init__(self, txt: str): self.t: A = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.w: A = None self.txt = txt h = A("h") f = B("f") a = A("a") h.t = a h.s = a f.s = a f.w = h a.t = h a.s = h 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
417
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt d = A("d") f = B("f") k = A("k") g = B("g") e = A("e") j = B("j") l = A("l") b = B("b") n = A("n") a = B("a") d.v = e f.z = b k.v = l g...
b"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt d = A("d") f = B("f") k = A("k") g = B("g") e = A("e") j = B("j") l = A("l") b = B("b") n = A("n") a = B("a") d.v = e f.z = b k.v = l g...
10
10
1
0.111111
2
5
1
1
1
6
3
2
3
0.3
3
0.3
4
3
6
3.6
1
6
6
1
418
class A: def __init__(self, txt: str): self.o: B = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt l = A("l") n = B("n") d = A("d") j = B("j") a = B("a") h = B("h") f = A("f") c = A("c") i = B("i") m = B("m") ...
d"
class A: def __init__(self, txt: str): self.o: B = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt l = A("l") n = B("n") d = A("d") j = B("j") a = B("a") h = B("h") f = A("f") c = A("c") i = B("i") m = B("m") ...
10
14
1.4
0.155556
2
5
2
1
1.5
7
2
2
5
0.5
5
0.357143
3
4
4
4
2
4
1
1
419
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt k = A("k") l = B("l") j = B("j") h = A("h") a = A("a") e = B("e") f = A("f") k.s = j l.p = j j.p = l h.s = l a.s = l e.p = l f.s = l as...
j"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt k = A("k") l = B("l") j = B("j") h = A("h") a = A("a") e = B("e") f = A("f") k.s = j l.p = j j.p = l h.s = l a.s = l e.p = l f.s = l 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
420
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt g = A("g") c = B("c") b = A("b") f = A("f") g.v = c c.z = f b.v = c f.v = c assert c.z.v.z.v.txt == "
c"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt g = A("g") c = B("c") b = A("b") f = A("f") g.v = c c.z = f b.v = c f.v = c assert c.z.v.z.v.txt == "c"
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
421
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt a = A("a") f = B("f") d = A("d") c = A("c") e = A("e") l = A("l") h = A("h") m = B("m") g = A("g") a.v = m f.s = m d.v = f c.v = f e.v ...
f"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt a = A("a") f = B("f") d = A("d") c = A("c") e = A("e") l = A("l") h = A("h") m = B("m") g = A("g") a.v = m f.s = m d.v = f c.v = f e.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
422
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.r: A = None self.txt = txt k = A("k") a = B("a") m = B("m") d = B("d") c = A("c") e = A("e") g = A("g") l = B("l") f = B("f") k.t = c a.o...
g"
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.r: A = None self.txt = txt k = A("k") a = B("a") m = B("m") d = B("d") c = A("c") e = A("e") g = A("g") l = B("l") f = B("f") k.t = c a.o...
9
11
1.222222
0.152778
2
4.5
2
1
1.5
9
3
3
4
0.444444
4
0.363636
6
4
8
5
1
9
9
1
423
class A: def __init__(self, txt: str): self.r: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.o: A = None self.txt = txt a = A("a") n = B("n") f = B("f") c = B("c") i = B("i") j = B("j") b = A("b") e = A("e"...
n"
class A: def __init__(self, txt: str): self.r: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.o: A = None self.txt = txt a = A("a") n = B("n") f = B("f") c = B("c") i = B("i") j = B("j") b = A("b") e = A("e"...
10
15
1.5
0.166667
2
5
2
2
2
4
2
2
3
0.3
3
0.2
2
2
2
2
2
2
1
1
424
class A: def __init__(self, txt: str): self.r: B = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt a = A("a") k = B("k") g = A("g") d = B("d") l = B("l") b = B("b") c = B("c") n = B("n") j = B("j") e = A("e") ...
e"
class A: def __init__(self, txt: str): self.r: B = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt a = A("a") k = B("k") g = A("g") d = B("d") l = B("l") b = B("b") c = B("c") n = B("n") j = B("j") e = A("e") ...
10
13
1.3
0.144444
2
5
2
1
1.5
7
4
2
4
0.4
5
0.384615
4
2
6
3.142857
3
3
2
2
425
class A: def __init__(self, txt: str): self.q: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.t: A = None self.txt = txt e = A("e") l = B("l") d = B("d") k = A("k") a = A("a") g = B("g") e.q = k e.o = d l.s...
e"
class A: def __init__(self, txt: str): self.q: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.t: A = None self.txt = txt e = A("e") l = B("l") d = B("d") k = A("k") a = A("a") g = B("g") e.q = k e.o = d l.s...
6
12
2
0.4
2
3
2
2
2
4
2
1
4
0.666667
4
0.333333
1
2
2
2
3
2
2
2
426
class A: def __init__(self, txt: str): self.r: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt h = A("h") e = B("e") c = B("c") k = A("k") h.r = k h.s = e e.x = k c.x = k k.r = h k.s = c assert h.s.x.r.txt...
h"
class A: def __init__(self, txt: str): self.r: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt h = A("h") e = B("e") c = B("c") k = A("k") h.r = k h.s = e e.x = k c.x = k k.r = h k.s = c assert h.s.x.r.txt...
4
6
1.5
0.5
2
2
2
1
1.5
3
2
1
3
0.75
3
0.5
1
3
3
3
3
1
1
1
427
class A: def __init__(self, txt: str): self.s: A = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.z: A = None self.txt = txt n = A("n") f = B("f") c = B("c") e = A("e") d = A("d") i = B("i") j = B("j") g = A("g"...
f"
class A: def __init__(self, txt: str): self.s: A = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.z: A = None self.txt = txt n = A("n") f = B("f") c = B("c") e = A("e") d = A("d") i = B("i") j = B("j") g = A("g"...
9
17
1.888889
0.236111
2
4.5
2
2
2
5
2
2
4
0.444444
4
0.235294
2
2
2
2
2
4
4
2
428
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt f = A("f") l = B("l") a = A("a") h = A("h") m = B("m") c = B("c") f.r = a l.o = h a.r = h h.r = a m.o = a c.o = f assert l.o.r.r.r.r.tx...
h"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt f = A("f") l = B("l") a = A("a") h = A("h") m = B("m") c = B("c") f.r = a l.o = h a.r = h h.r = a m.o = a c.o = f assert l.o.r.r.r.r.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
4
4
1
429
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt k = A("k") e = B("e") b = B("b") n = A("n") j = A("j") d = B("d") h = B("h") m = B("m") l = A("l") k.t = h e.q = j b.q = l n.t = d j.t ...
j"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt k = A("k") e = B("e") b = B("b") n = A("n") j = A("j") d = B("d") h = B("h") m = B("m") l = A("l") k.t = h e.q = j b.q = l n.t = d j.t ...
9
9
1
0.125
2
4.5
1
1
1
4
2
1
4
0.444444
4
0.444444
1
2
2
2
2
2
1
1
430
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 l = A("l") d = B("d") e = B("e") j = A("j") i = B("i") n = A("n") l.y = j d.r = j e.r = n j.y = l i.r = j n.y = l assert i.r.y.y.y.y.tx...
j"
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 l = A("l") d = B("d") e = B("e") j = A("j") i = B("i") n = A("n") l.y = j d.r = j e.r = n j.y = l i.r = j n.y = l assert i.r.y.y.y.y.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
4
4
1
431
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt k = A("k") i = B("i") c = A("c") e = A("e") l = A("l") n = B("n") d = B("d") k.r = d i.x = l c.r = d e.r = d l.r = i n.x = e d.x = c as...
l"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt k = A("k") i = B("i") c = A("c") e = A("e") l = A("l") n = B("n") d = B("d") k.r = d i.x = l c.r = d e.r = d l.r = i n.x = e d.x = c as...
7
7
1
0.166667
2
3.5
1
1
1
5
3
3
2
0.285714
2
0.285714
4
2
4
2.666667
2
3
1
1
432
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.s: A = None self.txt = txt l = A("l") e = B("e") b = A("b") a = B("a") c = A("c") f = B("f") m = B("m") l.z = b e.v = a e.s = b b.z = c a...
c"
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.s: A = None self.txt = txt l = A("l") e = B("e") b = A("b") a = B("a") c = A("c") f = B("f") m = B("m") l.z = b e.v = a e.s = b b.z = c a...
7
11
1.571429
0.261905
2
3.5
2
1
1.5
6
2
1
6
0.857143
6
0.545455
1
3
3
3
3
3
3
1
433
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt b = A("b") a = B("a") f = A("f") l = B("l") g = A("g") b.t = l a.x = l f.t = a l.x = a g.t = l assert a.x.x.x.x.x.txt == "
l"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt b = A("b") a = B("a") f = A("f") l = B("l") g = A("g") b.t = l a.x = l f.t = a l.x = a g.t = l assert a.x.x.x.x.x.txt == "l"
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
434
class A: def __init__(self, txt: str): self.o: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.q: A = None self.txt = txt e = A("e") a = B("a") n = A("n") e.o = n e.v = n a.p = e a.q = n n.o = e n.v = e asse...
e"
class A: def __init__(self, txt: str): self.o: A = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.q: A = None self.txt = txt e = A("e") a = B("a") n = A("n") e.o = n e.v = n a.p = e a.q = n n.o = e n.v = e asse...
3
4
1.333333
0.666667
2
1.5
2
2
2
3
2
1
2
0.666667
3
0.75
2
2
2
2
2
2
2
2
435
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.txt = txt a = A("a") g = B("g") l = B("l") n = B("n") b = B("b") m = B("m") d = A("d") h = A("h") f = A("f") i = A("i") a.v = f g.z = d l.z = h n...
f"
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.txt = txt a = A("a") g = B("g") l = B("l") n = B("n") b = B("b") m = B("m") d = A("d") h = A("h") f = A("f") i = A("i") a.v = f g.z = d l.z = h n...
10
10
1
0.111111
2
5
1
1
1
5
3
2
3
0.3
3
0.3
3
2
4
2.5
1
5
5
1
436
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt b = A("b") e = B("e") n = A("n") d = A("d") c = A("c") j = B("j") m = B("m") b.t = e e.x = m n.t = j d.t = j c.t = j j.x = m m.x = e as...
e"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt b = A("b") e = B("e") n = A("n") d = A("d") c = A("c") j = B("j") m = B("m") b.t = e e.x = m n.t = j d.t = j c.t = j j.x = m m.x = e 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
437
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt l = A("l") f = B("f") a = B("a") e = B("e") k = A("k") i = B("i") d = A("d") g = A("g") h = B("h") l.o = e f.q = i a.q = h e.q = f k.o ...
f"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt l = A("l") f = B("f") a = B("a") e = B("e") k = A("k") i = B("i") d = A("d") g = A("g") h = B("h") l.o = e f.q = i a.q = h e.q = f k.o ...
9
9
1
0.125
2
4.5
1
1
1
9
4
3
3
0.333333
3
0.333333
7
3
9
4.5
1
9
9
1
438
class A: def __init__(self, txt: str): self.s: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.z: A = None self.txt = txt a = A("a") l = B("l") m = A("m") d = B("d") g = A("g") h = B("h") a.s = h a.x = m l.y...
l"
class A: def __init__(self, txt: str): self.s: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.z: A = None self.txt = txt a = A("a") l = B("l") m = A("m") d = B("d") g = A("g") h = B("h") a.s = h a.x = m l.y...
6
10
1.666667
0.333333
2
3
2
2
2
5
2
2
4
0.666667
4
0.4
2
3
3
3
3
2
1
2
439
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt e = A("e") m = B("m") c = B("c") b = B("b") d = A("d") a = B("a") g = A("g") n = A("n") i = B("i") e.s = a m.q = c c.q = m b.q = c d.s ...
m"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt e = A("e") m = B("m") c = B("c") b = B("b") d = A("d") a = B("a") g = A("g") n = A("n") i = B("i") e.s = a m.q = c c.q = m b.q = c d.s ...
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
2
5
5
1
440
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.p: A = None self.txt = txt n = A("n") h = B("h") c = B("c") e = B("e") j = A("j") m = B("m") f = A("f") n.p = h h.x = m h.p = f c.x = h c...
e"
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.p: A = None self.txt = txt n = A("n") h = B("h") c = B("c") e = B("e") j = A("j") m = B("m") f = A("f") n.p = h h.x = m h.p = f c.x = h c...
7
11
1.571429
0.261905
2
3.5
2
1
1.5
6
2
2
5
0.714286
5
0.454545
2
2
2
2
2
5
4
1
441
class A: def __init__(self, txt: str): self.w: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt b = A("b") j = B("j") i = A("i") c = B("c") b.w = c b.v = i j.z = b i.w = j i.v = b c.z = i assert i.w.z.w.z.t...
i"
class A: def __init__(self, txt: str): self.w: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt b = A("b") j = B("j") i = A("i") c = B("c") b.w = c b.v = i j.z = b i.w = j i.v = b c.z = i assert i.w.z.w.z.t...
4
6
1.5
0.5
2
2
2
1
1.5
4
2
1
4
1
4
0.666667
1
4
4
4
2
2
1
1
442
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.o: B = None self.txt = txt i = A("i") j = B("j") g = B("g") c = A("c") f = B("f") i.q = c j.y = i j.o = f g.y = c g.o = f c.q = i f.y = i...
f"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.o: B = None self.txt = txt i = A("i") j = B("j") g = B("g") c = A("c") f = B("f") i.q = c j.y = i j.o = f g.y = c g.o = f c.q = i f.y = i...
5
8
1.6
0.4
2
2.5
2
1
1.5
3
2
2
2
0.4
2
0.25
2
2
2
2
1
3
3
1
443
class A: def __init__(self, txt: str): self.p: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.v: B = None self.txt = txt n = A("n") l = B("l") m = B("m") b = A("b") g = B("g") c = A("c") h = B("h") k = B("k"...
l"
class A: def __init__(self, txt: str): self.p: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.v: B = None self.txt = txt n = A("n") l = B("l") m = B("m") b = A("b") g = B("g") c = A("c") h = B("h") k = B("k"...
8
16
2
0.285714
2
4
2
2
2
3
2
1
3
0.375
3
0.1875
1
2
2
2
3
1
1
2
444
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.t: A = None self.txt = txt d = A("d") h = B("h") g = B("g") e = A("e") c = A("c") m = B("m") d.o = c h.s = d h.t = c g.s = d g.t = e e.o ...
c"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.t: A = None self.txt = txt d = A("d") h = B("h") g = B("g") e = A("e") c = A("c") m = B("m") d.o = c h.s = d h.t = c g.s = d g.t = e e.o ...
6
9
1.5
0.3
2
3
2
1
1.5
4
2
2
3
0.5
3
0.333333
2
2
2
2
2
3
3
1
445
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.x: A = None self.txt = txt m = A("m") d = B("d") l = A("l") f = A("f") e = B("e") i = A("i") g = B("g") a = A("a") b = A("b") c = A("c") ...
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.x: A = None self.txt = txt m = A("m") d = B("d") l = A("l") f = A("f") e = B("e") i = A("i") g = B("g") a = A("a") b = A("b") c = A("c") ...
10
12
1.2
0.133333
2
5
2
1
1.5
3
2
2
2
0.2
2
0.166667
2
2
2
2
2
2
1
1
446
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt m = A("m") e = B("e") f = B("f") i = B("i") b = A("b") d = A("d") c = A("c") n = A("n") k = B("k") a = A("a") m.s = n e.o = f f.o = i i...
a"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt m = A("m") e = B("e") f = B("f") i = B("i") b = A("b") d = A("d") c = A("c") n = A("n") k = B("k") a = A("a") m.s = n e.o = f f.o = i i...
10
10
1
0.111111
2
5
1
1
1
8
3
2
4
0.4
4
0.4
5
4
8
4.666667
1
8
8
1
447
class A: def __init__(self, txt: str): self.o: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.o: B = None self.txt = txt b = A("b") k = B("k") n = B("n") i = A("i") g = A("g") b.o = i b.x = g k.v = n k.o = ...
k"
class A: def __init__(self, txt: str): self.o: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.o: B = None self.txt = txt b = A("b") k = B("k") n = B("n") i = A("i") g = A("g") b.o = i b.x = g k.v = n k.o = ...
5
7
1.4
0.35
2
2.5
2
2
2
5
3
3
2
0.4
2
0.285714
4
2
4
2.666667
1
5
5
1
448
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.p: A = None self.txt = txt j = A("j") a = B("a") d = B("d") n = A("n") g = B("g") h = B("h") l = A("l") c = B("c") j.y = g a.u = n a.p = ...
j"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.p: A = None self.txt = txt j = A("j") a = B("a") d = B("d") n = A("n") g = B("g") h = B("h") l = A("l") c = B("c") j.y = g a.u = n a.p = ...
8
12
1.5
0.214286
2
4
2
1
1.5
5
2
1
5
0.625
5
0.416667
1
4
4
4
3
2
1
1
449
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.p: A = None self.txt = txt k = A("k") h = B("h") e = A("e") k.q = e h.u = e h.p = e e.q = k assert k.q.q.q.txt == "
e"
class A: def __init__(self, txt: str): self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.p: A = None self.txt = txt k = A("k") h = B("h") e = A("e") k.q = e h.u = e h.p = e e.q = k assert k.q.q.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
1
3
3
1
450
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt d = A("d") e = B("e") k = B("k") d.w = e e.o = d k.o = d assert e.o.w.o.txt == "
d"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt d = A("d") e = B("e") k = B("k") d.w = e e.o = d k.o = d assert e.o.w.o.txt == "d"
3
3
1
0.5
2
1.5
1
1
1
3
2
2
2
0.666667
2
0.666667
2
2
2
2
2
2
1
1
451
class A: def __init__(self, txt: str): self.v: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.o: B = None self.txt = txt k = A("k") n = B("n") a = A("a") c = A("c") l = A("l") i = A("i") e = B("e") g = A("g"...
m"
class A: def __init__(self, txt: str): self.v: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.o: B = None self.txt = txt k = A("k") n = B("n") a = A("a") c = A("c") l = A("l") i = A("i") e = B("e") g = A("g"...
9
15
1.666667
0.208333
2
4.5
2
2
2
8
4
2
4
0.444444
6
0.4
5
2
7
3.75
3
3
3
2
452
class A: def __init__(self, txt: str): self.x: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.txt = txt m = A("m") j = B("j") c = A("c") h = B("h") a = B("a") i = B("i") n = B("n") k = B("k") l = B("l") m.x = h m.w...
k"
class A: def __init__(self, txt: str): self.x: B = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.txt = txt m = A("m") j = B("j") c = A("c") h = B("h") a = B("a") i = B("i") n = B("n") k = B("k") l = B("l") m.x = h m.w...
9
11
1.222222
0.152778
2
4.5
2
1
1.5
3
1
1
4
0.444444
3
0.272727
0
null
null
null
3
1
1
1
453
class A: def __init__(self, txt: str): self.r: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.q: A = None self.txt = txt g = A("g") b = B("b") k = A("k") n = B("n") m = B("m") j = A("j") c = A("c") d = A("d"...
b"
class A: def __init__(self, txt: str): self.r: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.q: A = None self.txt = txt g = A("g") b = B("b") k = A("k") n = B("n") m = B("m") j = A("j") c = A("c") d = A("d"...
8
13
1.625
0.232143
2
4
2
2
2
4
3
1
3
0.375
4
0.307692
2
2
4
2.666667
3
2
2
2
454
class A: def __init__(self, txt: str): self.u: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.r: A = None self.txt = txt j = A("j") b = B("b") e = A("e") f = A("f") g = B("g") j.u = g j.y = f b.u = g b.r = ...
f"
class A: def __init__(self, txt: str): self.u: B = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.r: A = None self.txt = txt j = A("j") b = B("b") e = A("e") f = A("f") g = B("g") j.u = g j.y = f b.u = g b.r = ...
5
10
2
0.5
2
2.5
2
2
2
5
3
2
3
0.6
3
0.3
3
2
4
2.5
2
4
4
2
455
class A: def __init__(self, txt: str): self.z: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt e = A("e") k = B("k") l = B("l") b = A("b") a = B("a") e.z = a e.p = k k.q = a l.q = k b.z = a b.p = l a.q = k...
k"
class A: def __init__(self, txt: str): self.z: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt e = A("e") k = B("k") l = B("l") b = A("b") a = B("a") e.z = a e.p = k k.q = a l.q = k b.z = a b.p = l a.q = k...
5
7
1.4
0.35
2
2.5
2
1
1.5
3
2
2
2
0.4
2
0.285714
2
2
2
2
1
3
3
1
456
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.x: B = None self.txt = txt m = A("m") i = B("i") j = B("j") c = B("c") h = B("h") d = A("d") g = B("g") n = B("n") e = A("e") a = B("a") ...
c"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.x: B = None self.txt = txt m = A("m") i = B("i") j = B("j") c = B("c") h = B("h") d = A("d") g = B("g") n = B("n") e = A("e") a = B("a") ...
10
16
1.6
0.177778
2
5
2
1
1.5
10
4
2
6
0.6
9
0.5625
5
2
9
5
2
7
3
2
457
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.v: A = None self.txt = txt m = A("m") l = B("l") a = A("a") m.r = l m.u = l l.v = a a.r = l a.u = l assert l.v.u.v.txt == "
a"
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.v: A = None self.txt = txt m = A("m") l = B("l") a = A("a") m.r = l m.u = l l.v = a a.r = l a.u = l assert l.v.u.v.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
458
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.q: A = None self.txt = txt k = A("k") d = B("d") n = B("n") k.y = d k.t = n d.q = k n.q = k assert n.q.t.q.txt == "
k"
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.q: A = None self.txt = txt k = A("k") d = B("d") n = B("n") k.y = d k.t = n d.q = k n.q = k assert n.q.t.q.txt == "k"
3
4
1.333333
0.666667
2
1.5
2
1
1.5
3
2
2
2
0.666667
2
0.5
2
2
2
2
2
2
1
1
459
class A: def __init__(self, txt: str): self.r: B = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt g = A("g") i = B("i") m = B("m") c = A("c") k = A("k") a = A("a") l = A("l") j = A("j") g.r = m g.s = c i.x = ...
k"
class A: def __init__(self, txt: str): self.r: B = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt g = A("g") i = B("i") m = B("m") c = A("c") k = A("k") a = A("a") l = A("l") j = A("j") g.r = m g.s = c i.x = ...
8
14
1.75
0.25
2
4
2
1
1.5
8
2
2
6
0.75
7
0.5
3
4
6
4.666667
3
4
2
2
460
class A: def __init__(self, txt: str): self.w: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.z: B = None self.txt = txt n = A("n") m = B("m") j = A("j") l = B("l") i = B("i") f = B("f") a = A("a") n.w = j ...
a"
class A: def __init__(self, txt: str): self.w: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.z: B = None self.txt = txt n = A("n") m = B("m") j = A("j") l = B("l") i = B("i") f = B("f") a = A("a") n.w = j ...
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
461
class A: def __init__(self, txt: str): self.y: B = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt d = A("d") g = B("g") m = B("m") d.y = m d.s = m g.y = d m.y = d assert g.y.y.y.txt == "
d"
class A: def __init__(self, txt: str): self.y: B = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt d = A("d") g = B("g") m = B("m") d.y = m d.s = m g.y = d m.y = d assert g.y.y.y.txt == "d"
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
462
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt d = A("d") a = B("a") n = B("n") j = A("j") d.u = a a.r = d n.r = d j.u = n assert j.u.r.u.txt == "
a"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt d = A("d") a = B("a") n = B("n") j = A("j") d.u = a a.r = d n.r = d j.u = n assert j.u.r.u.txt == "a"
4
4
1
0.333333
2
2
1
1
1
3
1
1
4
1
3
0.75
0
null
null
null
2
2
1
1
463
class A: def __init__(self, txt: str): self.t: A = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.s: A = None self.txt = txt c = A("c") k = B("k") d = A("d") l = A("l") a = B("a") f = B("f") i = B("i") b = B("b"...
k"
class A: def __init__(self, txt: str): self.t: A = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.s: A = None self.txt = txt c = A("c") k = B("k") d = A("d") l = A("l") a = B("a") f = B("f") i = B("i") b = B("b"...
9
17
1.888889
0.236111
2
4.5
2
2
2
4
3
2
2
0.222222
2
0.117647
3
2
4
2.5
2
2
1
1
464
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.v: A = None self.txt = txt f = A("f") l = B("l") h = B("h") m = B("m") g = A("g") i = B("i") k = B("k") d = B("d") e = A("e") f.v = g l.t...
g"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.v: A = None self.txt = txt f = A("f") l = B("l") h = B("h") m = B("m") g = A("g") i = B("i") k = B("k") d = B("d") e = A("e") f.v = g l.t...
9
15
1.666667
0.208333
2
4.5
2
1
1.5
6
4
3
2
0.222222
2
0.133333
5
2
6
3.111111
1
6
6
1
465
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt d = A("d") b = B("b") n = A("n") k = A("k") c = A("c") m = B("m") g = B("g") d.u = k b.z = n n.u = k k.u = n c.u = k m.z = d g.z = c as...
k"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt d = A("d") b = B("b") n = A("n") k = A("k") c = A("c") m = B("m") g = B("g") d.u = k b.z = n n.u = k k.u = n c.u = k m.z = d g.z = c 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
2
3
3
1
466
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.r: A = None self.txt = txt m = A("m") d = B("d") h = B("h") m.t = d d.z = m d.r = m h.z = m h.r = m assert h.z.t.r.txt == "
m"
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.r: A = None self.txt = txt m = A("m") d = B("d") h = B("h") m.t = d d.z = m d.r = m h.z = m h.r = m assert h.z.t.r.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
3
1
1
1
467
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt d = A("d") n = B("n") h = A("h") j = B("j") g = B("g") m = A("m") a = B("a") c = A("c") i = B("i") d.z = g n.p = m h.z = a j.p = c g.p ...
c"
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt d = A("d") n = B("n") h = A("h") j = B("j") g = B("g") m = A("m") a = B("a") c = A("c") i = B("i") d.z = g n.p = m h.z = a j.p = c g.p ...
9
9
1
0.125
2
4.5
1
1
1
7
4
4
2
0.222222
2
0.222222
6
2
6
3.333333
2
4
1
1
468
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.o: B = None self.txt = txt e = A("e") k = B("k") d = A("d") l = B("l") j = A("j") n = A("n") b = A("b") m = A("m") e.v = j k.q = l k.o = ...
k"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.o: B = None self.txt = txt e = A("e") k = B("k") d = A("d") l = B("l") j = A("j") n = A("n") b = A("b") m = A("m") e.v = j k.q = l k.o = ...
8
8
1
0.142857
2
4
2
1
1.5
4
3
2
2
0.25
3
0.375
3
2
4
2.5
2
3
2
2
469
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt e = A("e") b = B("b") m = A("m") d = B("d") f = B("f") l = B("l") h = B("h") e.o = h b.r = e m.o = h d.r = e f.r = m l.r = m h.r = e as...
h"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt e = A("e") b = B("b") m = A("m") d = B("d") f = B("f") l = B("l") h = B("h") e.o = h b.r = e m.o = h d.r = e f.r = m l.r = m h.r = e as...
7
7
1
0.166667
2
3.5
1
1
1
4
3
2
2
0.285714
2
0.285714
3
2
4
2.5
2
2
1
1
470
class A: def __init__(self, txt: str): self.q: B = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt c = A("c") g = B("g") a = B("a") n = B("n") i = A("i") m = A("m") h = A("h") l = A("l") d = A("d") c.q = a c.z...
a"
class A: def __init__(self, txt: str): self.q: B = None self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt c = A("c") g = B("g") a = B("a") n = B("n") i = A("i") m = A("m") h = A("h") l = A("l") d = A("d") c.q = a c.z...
9
15
1.666667
0.208333
2
4.5
2
1
1.5
7
3
2
4
0.444444
5
0.333333
4
2
6
3.333333
3
3
1
2
471
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.txt = txt k = A("k") f = B("f") j = B("j") n = A("n") i = B("i") c = A("c") l = B("l") g = B("g") k.y = n f.x = i j.x = f n.y = k i.x = g c.y = k...
g"
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.txt = txt k = A("k") f = B("f") j = B("j") n = A("n") i = B("i") c = A("c") l = B("l") g = B("g") k.y = n f.x = i j.x = f n.y = k i.x = g c.y = k...
8
8
1
0.142857
2
4
1
1
1
4
2
2
3
0.375
3
0.375
2
3
3
3
1
4
4
1
472
class A: def __init__(self, txt: str): self.w: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt a = A("a") d = B("d") n = A("n") l = A("l") b = B("b") c = B("c") e = A("e") h = B("h") a.w = l a.x = l d.y = ...
b"
class A: def __init__(self, txt: str): self.w: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt a = A("a") d = B("d") n = A("n") l = A("l") b = B("b") c = B("c") e = A("e") h = B("h") a.w = l a.x = l d.y = ...
8
9
1.125
0.160714
2
4
2
1
1.5
8
4
4
3
0.375
3
0.333333
6
2
6
3.333333
1
8
8
1
473
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.r: B = None self.txt = txt c = A("c") a = B("a") j = B("j") k = B("k") d = A("d") e = A("e") i = B("i") c.u = d a.t = e a.r = j j.t = e j...
c"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.r: B = None self.txt = txt c = A("c") a = B("a") j = B("j") k = B("k") d = A("d") e = A("e") i = B("i") c.u = d a.t = e a.r = j j.t = e j...
7
11
1.571429
0.261905
2
3.5
2
1
1.5
7
4
4
2
0.285714
2
0.181818
6
2
6
3.333333
1
7
7
1
474
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.u: B = None self.txt = txt k = A("k") d = B("d") i = B("i") n = A("n") e = A("e") k.p = i d.t = n d.u = i i.t = k i.u = d n.p = d e.p = d...
d"
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.u: B = None self.txt = txt k = A("k") d = B("d") i = B("i") n = A("n") e = A("e") k.p = i d.t = n d.u = i i.t = k i.u = d n.p = d e.p = d...
5
7
1.4
0.35
2
2.5
2
1
1.5
5
2
1
4
0.8
5
0.714286
2
2
4
3
3
2
1
2
475
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt g = A("g") d = B("d") c = B("c") n = A("n") i = A("i") f = A("f") l = B("l") k = B("k") g.o = f d.s = i c.s = f n.o = i i.o = g f.o = i...
i"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt g = A("g") d = B("d") c = B("c") n = A("n") i = A("i") f = A("f") l = B("l") k = B("k") g.o = f d.s = i c.s = f n.o = i i.o = g f.o = i...
8
8
1
0.142857
2
4
1
1
1
3
1
1
4
0.5
3
0.375
0
null
null
null
2
2
2
1
476
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt j = A("j") c = B("c") k = A("k") b = B("b") m = A("m") n = A("n") g = A("g") j.u = b c.p = b k.u = b b.p = c m.u = b n.u = c g.u = b as...
c"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt j = A("j") c = B("c") k = A("k") b = B("b") m = A("m") n = A("n") g = A("g") j.u = b c.p = b k.u = b b.p = c m.u = b n.u = c g.u = b 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
477
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.txt = txt l = A("l") d = B("d") h = A("h") b = B("b") a = B("a") n = B("n") f = A("f") l.o = a d.u = n h.o = a b.u = n a.u = d n.u = a f.o = b as...
n"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.txt = txt l = A("l") d = B("d") h = A("h") b = B("b") a = B("a") n = B("n") f = A("f") l.o = a d.u = n h.o = a b.u = n a.u = d n.u = a f.o = b as...
7
7
1
0.166667
2
3.5
1
1
1
3
1
1
4
0.571429
3
0.428571
0
null
null
null
2
2
2
1
478
class A: def __init__(self, txt: str): self.v: B = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.z: B = None self.txt = txt d = A("d") k = B("k") f = A("f") i = B("i") g = B("g") b = B("b") e = A("e") d.v = i ...
b"
class A: def __init__(self, txt: str): self.v: B = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.z: B = None self.txt = txt d = A("d") k = B("k") f = A("f") i = B("i") g = B("g") b = B("b") e = A("e") d.v = i ...
7
10
1.428571
0.238095
2
3.5
2
2
2
3
1
1
4
0.571429
3
0.3
0
null
null
null
2
2
2
1
479
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.y: B = None self.txt = txt d = A("d") h = B("h") e = B("e") f = A("f") c = A("c") l = A("l") a = B("a") n = A("n") j = B("j") m = A("m") ...
e"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.y: B = None self.txt = txt d = A("d") h = B("h") e = B("e") f = A("f") c = A("c") l = A("l") a = B("a") n = A("n") j = B("j") m = A("m") ...
10
11
1.1
0.122222
2
5
2
1
1.5
6
2
1
4
0.4
6
0.545455
3
3
4
3.333333
2
4
2
2
480
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.r: A = None self.w: B = None self.txt = txt a = A("a") e = B("e") c = A("c") j = B("j") f = A("f") g = B("g") m = A("m") i = A("i"...
g"
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.r: A = None self.w: B = None self.txt = txt a = A("a") e = B("e") c = A("c") j = B("j") f = A("f") g = B("g") m = A("m") i = A("i"...
9
17
1.888889
0.236111
2
4.5
2
2
2
7
3
2
5
0.555556
6
0.352941
3
2
4
3
3
4
2
2
481
class A: def __init__(self, txt: str): self.s: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt i = A("i") h = B("h") n = B("n") d = B("d") i.s = n i.p = h h.z = i n.z = i d.z = i assert n.z.p.z.txt == "
i"
class A: def __init__(self, txt: str): self.s: B = None self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt i = A("i") h = B("h") n = B("n") d = B("d") i.s = n i.p = h h.z = i n.z = i d.z = i assert n.z.p.z.txt == "i"
4
5
1.25
0.416667
2
2
2
1
1.5
3
2
1
3
0.75
3
0.6
1
2
2
2
2
2
1
1
482
class A: def __init__(self, txt: str): self.x: B = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt b = A("b") f = B("f") d = A("d") j = B("j") b.x = f b.z = d f.s = d d.x = j d.z = b j.s = b assert b.z.x.s.txt...
b"
class A: def __init__(self, txt: str): self.x: B = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt b = A("b") f = B("f") d = A("d") j = B("j") b.x = f b.z = d f.s = d d.x = j d.z = b j.s = b assert b.z.x.s.txt...
4
6
1.5
0.5
2
2
2
1
1.5
3
2
1
3
0.75
3
0.5
1
3
3
3
3
1
1
1
483
class A: def __init__(self, txt: str): self.y: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.q: A = None self.txt = txt f = A("f") d = B("d") a = B("a") m = B("m") j = A("j") h = B("h") i = A("i") f.y = i ...
i"
class A: def __init__(self, txt: str): self.y: A = None self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.q: A = None self.txt = txt f = A("f") d = B("d") a = B("a") m = B("m") j = A("j") h = B("h") i = A("i") f.y = i ...
7
13
1.857143
0.309524
2
3.5
2
2
2
6
3
2
3
0.428571
4
0.307692
4
2
5
3
3
4
4
2
484
class A: def __init__(self, txt: str): self.r: B = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.s: B = None self.txt = txt a = A("a") f = B("f") n = A("n") k = A("k") c = B("c") i = B("i") a.r = c a.s = k f.w...
i"
class A: def __init__(self, txt: str): self.r: B = None self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.s: B = None self.txt = txt a = A("a") f = B("f") n = A("n") k = A("k") c = B("c") i = B("i") a.r = c a.s = k f.w...
6
12
2
0.4
2
3
2
2
2
5
1
1
6
1
5
0.416667
0
null
null
null
3
2
1
1
485
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.w: A = None self.txt = txt k = A("k") n = B("n") d = A("d") i = A("i") f = A("f") g = B("g") k.w = f n.o = f n.w = k d.w = k i.w = k f.w ...
i"
class A: def __init__(self, txt: str): self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.w: A = None self.txt = txt k = A("k") n = B("n") d = A("d") i = A("i") f = A("f") g = B("g") k.w = f n.o = f n.w = k d.w = k i.w = k f.w ...
6
8
1.333333
0.266667
2
3
2
1
1.5
6
2
2
4
0.666667
4
0.5
3
3
3
3
1
6
6
1
486
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.u: B = None self.txt = txt c = A("c") f = B("f") d = A("d") b = A("b") l = B("l") n = B("n") k = B("k") e = A("e") j = A("j") i = A("i") ...
c"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.u: B = None self.txt = txt c = A("c") f = B("f") d = A("d") b = A("b") l = B("l") n = B("n") k = B("k") e = A("e") j = A("j") i = A("i") ...
10
14
1.4
0.155556
2
5
2
1
1.5
5
2
1
5
0.5
5
0.357143
1
5
5
5
1
5
5
1
487
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt g = A("g") j = B("j") n = A("n") k = A("k") m = B("m") c = A("c") b = A("b") a = B("a") f = B("f") h = A("h") g.o = f j.o = m n.o = f k...
m"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt g = A("g") j = B("j") n = A("n") k = A("k") m = B("m") c = A("c") b = A("b") a = B("a") f = B("f") h = A("h") g.o = f j.o = m n.o = f k...
10
10
1
0.111111
2
5
1
1
1
4
3
2
2
0.2
2
0.2
3
2
4
2.5
1
4
4
1
488
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.t: A = None self.txt = txt e = A("e") j = B("j") g = A("g") b = B("b") h = A("h") e.u = h j.z = b j.t = h g.u = e b.z = j b.t = g h.u = e...
e"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.t: A = None self.txt = txt e = A("e") j = B("j") g = A("g") b = B("b") h = A("h") e.u = h j.z = b j.t = h g.u = e b.z = j b.t = g h.u = e...
5
7
1.4
0.35
2
2.5
2
1
1.5
3
2
2
2
0.4
2
0.285714
2
2
2
2
1
3
3
1
489
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.s: B = None self.u: A = None self.txt = txt d = A("d") j = B("j") g = B("g") b = A("b") d.q = j d.r = b j.s = g j.u = d g.s = j g...
d"
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.s: B = None self.u: A = None self.txt = txt d = A("d") j = B("j") g = B("g") b = A("b") d.q = j d.r = b j.s = g j.u = d g.s = j g...
4
8
2
0.666667
2
2
2
2
2
3
2
1
3
0.75
3
0.375
1
2
2
2
2
2
2
2
490
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.t: B = None self.txt = txt e = A("e") j = B("j") b = B("b") f = A("f") g = B("g") a = A("a") m = B("m") e.y = a j.w = g j.t = b b.w = j b...
g"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.t: B = None self.txt = txt e = A("e") j = B("j") b = B("b") f = A("f") g = B("g") a = A("a") m = B("m") e.y = a j.w = g j.t = b b.w = j b...
7
10
1.428571
0.238095
2
3.5
2
1
1.5
6
3
3
3
0.428571
4
0.4
4
2
5
3.333333
2
5
4
2
491
class A: def __init__(self, txt: str): self.p: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.u: B = None self.txt = txt h = A("h") b = B("b") g = B("g") m = B("m") a = A("a") l = A("l") c = A("c") h.p = g ...
c"
class A: def __init__(self, txt: str): self.p: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.u: B = None self.txt = txt h = A("h") b = B("b") g = B("g") m = B("m") a = A("a") l = A("l") c = A("c") h.p = g ...
7
14
2
0.333333
2
3.5
2
2
2
3
1
1
4
0.571429
3
0.214286
0
null
null
null
1
3
3
1
492
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.z: B = None self.txt = txt n = A("n") b = B("b") f = A("f") l = B("l") d = A("d") j = B("j") n.o = d b.u = d b.z = l f.o = d l.u = n l.z ...
n"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.z: B = None self.txt = txt n = A("n") b = B("b") f = A("f") l = B("l") d = A("d") j = B("j") n.o = d b.u = d b.z = l f.o = d l.u = n l.z ...
6
9
1.5
0.3
2
3
2
1
1.5
5
3
2
3
0.5
3
0.333333
3
2
4
2.5
2
4
4
1
493
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.z: B = None self.v: B = None self.txt = txt k = A("k") n = B("n") g = B("g") e = A("e") d = B("d") k.y = g k.t = n n.z = g n.v = ...
n"
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.z: B = None self.v: B = None self.txt = txt k = A("k") n = B("n") g = B("g") e = A("e") d = B("d") k.y = g k.t = n n.z = g n.v = ...
5
8
1.6
0.4
2
2.5
2
2
2
3
2
1
3
0.6
3
0.375
1
2
2
2
3
1
1
1
494
class A: def __init__(self, txt: str): self.s: A = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.y: B = None self.txt = txt c = A("c") a = B("a") f = A("f") g = A("g") k = B("k") m = A("m") l = A("l") i = B("i"...
k"
class A: def __init__(self, txt: str): self.s: A = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.y: B = None self.txt = txt c = A("c") a = B("a") f = A("f") g = A("g") k = B("k") m = A("m") l = A("l") i = B("i"...
8
16
2
0.285714
2
4
2
2
2
8
3
2
5
0.625
6
0.375
4
2
7
4
4
3
3
2
495
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.txt = txt a = A("a") c = B("c") l = B("l") e = A("e") a.o = e c.w = l l.w = c e.o = a assert a.o.o.o.o.txt == "
a"
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.txt = txt a = A("a") c = B("c") l = B("l") e = A("e") a.o = e c.w = l l.w = c e.o = a assert a.o.o.o.o.txt == "a"
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
496
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.r: A = None self.txt = txt h = A("h") m = B("m") i = B("i") e = A("e") h.w = i m.x = h m.r = e i.x = h i.r = e e.w = m assert m.x.w.x.txt...
h"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.r: A = None self.txt = txt h = A("h") m = B("m") i = B("i") e = A("e") h.w = i m.x = h m.r = e i.x = h i.r = e e.w = m assert m.x.w.x.txt...
4
6
1.5
0.5
2
2
2
1
1.5
3
2
1
3
0.75
3
0.5
1
2
2
2
2
2
1
1
497
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt f = A("f") g = B("g") h = B("h") f.t = g g.u = f h.u = f assert h.u.t.u.txt == "
f"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt f = A("f") g = B("g") h = B("h") f.t = g g.u = f h.u = f assert h.u.t.u.txt == "f"
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
498
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt j = A("j") d = B("d") m = A("m") i = B("i") h = A("h") n = B("n") g = A("g") j.o = h d.r = g m.o = j i.r = j h.o = j n.r = j g.o = h as...
h"
class A: def __init__(self, txt: str): self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.txt = txt j = A("j") d = B("d") m = A("m") i = B("i") h = A("h") n = B("n") g = A("g") j.o = h d.r = g m.o = j i.r = j h.o = j n.r = j g.o = h as...
7
7
1
0.166667
2
3.5
1
1
1
5
3
3
2
0.285714
2
0.285714
4
2
4
2.666667
1
5
5
1
499
class A: def __init__(self, txt: str): self.z: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.z: B = None self.txt = txt i = A("i") a = B("a") l = B("l") g = B("g") m = A("m") i.z = l i.o = m a.o = g a.z = ...
l"
class A: def __init__(self, txt: str): self.z: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.z: B = None self.txt = txt i = A("i") a = B("a") l = B("l") g = B("g") m = A("m") i.z = l i.o = m a.o = g a.z = ...
5
7
1.4
0.35
2
2.5
2
2
2
3
2
1
3
0.6
3
0.428571
1
3
3
3
2
2
2
1