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
800
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 h = A("h") k = B("k") l = A("l") b = B("b") a = B("a") c = A("c") n = A("n") j = B("j") e = A("e") g = A("g") h.v = n k.z = j l.v = e b...
n"
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 h = A("h") k = B("k") l = A("l") b = B("b") a = B("a") c = A("c") n = A("n") j = B("j") e = A("e") g = A("g") h.v = n k.z = j l.v = e b...
10
10
1
0.111111
2
5
1
1
1
9
4
3
3
0.3
3
0.3
7
3
9
4.5
1
9
9
1
801
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.q: A = None self.txt = txt d = A("d") l = B("l") b = A("b") f = B("f") d.p = b l.r = d l.q = d b.p = d f.r = b f.q = d assert b.p.p.p.p.t...
b"
class A: def __init__(self, txt: str): self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.q: A = None self.txt = txt d = A("d") l = B("l") b = A("b") f = B("f") d.p = b l.r = d l.q = d b.p = d f.r = b f.q = d assert b.p.p.p.p.t...
4
5
1.25
0.416667
2
2
2
1
1.5
4
3
2
2
0.5
2
0.4
3
2
4
2.5
1
4
4
1
802
class A: def __init__(self, txt: str): self.y: B = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.y: A = None self.txt = txt c = A("c") n = B("n") e = B("e") b = B("b") d = A("d") i = B("i") c.y = e c.p = d n.o...
c"
class A: def __init__(self, txt: str): self.y: B = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.y: A = None self.txt = txt c = A("c") n = B("n") e = B("e") b = B("b") d = A("d") i = B("i") c.y = e c.p = d n.o...
6
11
1.833333
0.366667
2
3
2
2
2
5
3
2
3
0.5
3
0.272727
3
2
4
2.5
2
4
4
1
803
class A: def __init__(self, txt: str): self.r: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.x: A = None self.txt = txt m = A("m") b = B("b") k = A("k") j = A("j") n = B("n") l = A("l") g = A("g") a = B("a"...
b"
class A: def __init__(self, txt: str): self.r: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.x: A = None self.txt = txt m = A("m") b = B("b") k = A("k") j = A("j") n = B("n") l = A("l") g = A("g") a = B("a"...
8
16
2
0.285714
2
4
2
2
2
3
2
1
3
0.375
3
0.1875
1
2
2
2
2
2
1
1
804
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.txt = txt j = A("j") c = B("c") e = A("e") k = B("k") f = B("f") m = A("m") l = B("l") a = B("a") h = B("h") i = A("i") j.u = i c.t = i e.u = j k...
e"
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.txt = txt j = A("j") c = B("c") e = A("e") k = B("k") f = B("f") m = A("m") l = B("l") a = B("a") h = B("h") i = A("i") j.u = i c.t = i e.u = j k...
10
10
1
0.111111
2
5
1
1
1
9
4
3
3
0.3
3
0.3
7
3
9
4.5
1
9
9
1
805
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.x: B = None self.txt = txt d = A("d") b = B("b") g = B("g") d.o = b b.t = d b.x = g g.t = d g.x = b assert g.t.o.x.txt == "
g"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.x: B = None self.txt = txt d = A("d") b = B("b") g = B("g") d.o = b b.t = d b.x = g g.t = d g.x = b assert g.t.o.x.txt == "g"
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
806
class A: def __init__(self, txt: str): self.w: B = None self.r: A = 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") c = B("c") d = A("d") l = B("l") a = B("a") m.w = a m.r = d c.y = a c.q = ...
a"
class A: def __init__(self, txt: str): self.w: B = None self.r: A = 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") c = B("c") d = A("d") l = B("l") a = B("a") m.w = a m.r = d c.y = a c.q = ...
5
10
2
0.5
2
2.5
2
2
2
3
2
1
3
0.6
3
0.3
1
3
3
3
3
1
1
1
807
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.s: A = None self.txt = txt n = A("n") l = B("l") b = A("b") d = A("d") c = B("c") k = B("k") e = B("e") a = A("a") n.u = a l.z = e l.s = ...
a"
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.s: A = None self.txt = txt n = A("n") l = B("l") b = A("b") d = A("d") c = B("c") k = B("k") e = B("e") a = A("a") n.u = a l.z = e l.s = ...
8
12
1.5
0.214286
2
4
2
1
1.5
6
2
2
4
0.5
4
0.333333
3
3
3
3
1
6
6
1
808
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.v: B = None self.txt = txt h = A("h") j = B("j") b = B("b") i = A("i") n = B("n") e = A("e") f = A("f") k = B("k") h.z = b j.p = i j.v = ...
b"
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.v: B = None self.txt = txt h = A("h") j = B("j") b = B("b") i = A("i") n = B("n") e = A("e") f = A("f") k = B("k") h.z = b j.p = i j.v = ...
8
12
1.5
0.214286
2
4
2
1
1.5
8
4
2
5
0.625
6
0.5
4
2
6
3.428571
3
4
2
2
809
class A: def __init__(self, txt: str): self.z: B = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt f = A("f") i = B("i") m = A("m") e = A("e") g = A("g") k = A("k") f.z = i f.w = i i.v = k m.z = i m.w = i e.z ...
k"
class A: def __init__(self, txt: str): self.z: B = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.txt = txt f = A("f") i = B("i") m = A("m") e = A("e") g = A("g") k = A("k") f.z = i f.w = i i.v = k m.z = i m.w = i e.z ...
6
6
1
0.2
2
3
2
1
1.5
4
2
2
3
0.5
3
0.5
2
2
2
2
3
2
1
1
810
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt a = A("a") h = B("h") l = B("l") f = A("f") e = B("e") j = B("j") d = B("d") c = B("c") g = B("g") a.y = f h.z = j l.z = d f.y = a e.z ...
h"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt a = A("a") h = B("h") l = B("l") f = A("f") e = B("e") j = B("j") d = B("d") c = B("c") g = B("g") a.y = f h.z = j l.z = d f.y = a e.z ...
9
9
1
0.125
2
4.5
1
1
1
9
3
3
4
0.444444
4
0.444444
6
3
6
4
1
9
9
1
811
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.u: A = None self.txt = txt f = A("f") i = B("i") j = B("j") m = A("m") k = A("k") a = A("a") f.t = a i.o = k i.u = f j.o = a j.u = k m.t ...
m"
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.u: A = None self.txt = txt f = A("f") i = B("i") j = B("j") m = A("m") k = A("k") a = A("a") f.t = a i.o = k i.u = f j.o = a j.u = k m.t ...
6
8
1.333333
0.266667
2
3
2
1
1.5
5
2
2
3
0.5
3
0.375
3
3
3
3
1
5
5
1
812
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt f = A("f") m = B("m") d = A("d") f.s = d m.y = d d.s = f assert m.y.s.s.txt == "
d"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt f = A("f") m = B("m") d = A("d") f.s = d m.y = d d.s = f assert m.y.s.s.txt == "d"
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
813
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.s: A = None self.txt = txt n = A("n") a = B("a") f = B("f") j = B("j") l = B("l") k = A("k") c = A("c") h = B("h") n.s = f a.u = n a.s = ...
f"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.s: A = None self.txt = txt n = A("n") a = B("a") f = B("f") j = B("j") l = B("l") k = A("k") c = A("c") h = B("h") n.s = f a.u = n a.s = ...
8
11
1.375
0.196429
2
4
2
1
1.5
5
3
3
2
0.25
3
0.272727
4
2
4
2.666667
2
4
3
2
814
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.r: B = None self.q: B = None self.txt = txt b = A("b") i = B("i") k = B("k") l = B("l") d = B("d") c = A("c") g = A("g") b.u = d ...
k"
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.r: B = None self.q: B = None self.txt = txt b = A("b") i = B("i") k = B("k") l = B("l") d = B("d") c = A("c") g = A("g") b.u = d ...
7
13
1.857143
0.309524
2
3.5
2
2
2
7
3
2
3
0.428571
5
0.384615
5
2
5
3.285714
2
4
3
2
815
class A: def __init__(self, txt: str): self.p: A = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.o: B = None self.txt = txt c = A("c") d = B("d") b = B("b") i = A("i") l = A("l") a = B("a") c.p = i c.z = i d.y...
c"
class A: def __init__(self, txt: str): self.p: A = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.o: B = None self.txt = txt c = A("c") d = B("d") b = B("b") i = A("i") l = A("l") a = B("a") c.p = i c.z = i d.y...
6
9
1.5
0.3
2
3
2
2
2
3
2
1
3
0.5
3
0.333333
1
2
2
2
3
1
1
1
816
class A: def __init__(self, txt: str): self.s: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.r: A = None self.txt = txt d = A("d") i = B("i") f = B("f") n = A("n") d.s = f d.u = f i.z = n i.r = d f.z = d f...
f"
class A: def __init__(self, txt: str): self.s: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.r: A = None self.txt = txt d = A("d") i = B("i") f = B("f") n = A("n") d.s = f d.u = f i.z = n i.r = d f.z = d f...
4
5
1.25
0.416667
2
2
2
2
2
3
2
1
3
0.75
3
0.6
1
2
2
2
2
2
1
1
817
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.y: A = None self.txt = txt d = A("d") b = B("b") n = A("n") i = A("i") a = B("a") l = A("l") k = A("k") d.y = a b.o = i b.y = k n.y = a i...
l"
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.y: A = None self.txt = txt d = A("d") b = B("b") n = A("n") i = A("i") a = B("a") l = A("l") k = A("k") d.y = a b.o = i b.y = k n.y = a i...
7
9
1.285714
0.214286
2
3.5
2
1
1.5
4
2
2
3
0.428571
3
0.333333
2
2
2
2
2
3
2
2
818
class A: def __init__(self, txt: str): self.s: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt l = A("l") k = B("k") f = B("f") m = A("m") c = A("c") i = A("i") n = B("n") g = B("g") d = B("d") b = A("b") ...
k"
class A: def __init__(self, txt: str): self.s: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.txt = txt l = A("l") k = B("k") f = B("f") m = A("m") c = A("c") i = A("i") n = B("n") g = B("g") d = B("d") b = A("b") ...
10
13
1.3
0.144444
2
5
2
1
1.5
3
1
1
4
0.4
3
0.230769
0
null
null
null
2
2
1
1
819
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt g = A("g") b = B("b") j = A("j") a = A("a") c = A("c") d = B("d") m = B("m") i = A("i") g.v = a b.p = d j.v = i a.v = j c.v = a d.p = m...
j"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt g = A("g") b = B("b") j = A("j") a = A("a") c = A("c") d = B("d") m = B("m") i = A("i") g.v = a b.p = d j.v = i a.v = j c.v = a d.p = m...
8
8
1
0.142857
2
4
1
1
1
7
3
3
3
0.375
3
0.375
5
3
6
3.857143
1
7
7
1
820
class A: def __init__(self, txt: str): self.u: A = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt d = A("d") g = B("g") h = B("h") m = A("m") a = A("a") k = A("k") b = B("b") l = A("l") f = A("f") d.u = k d.p...
m"
class A: def __init__(self, txt: str): self.u: A = None self.p: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt d = A("d") g = B("g") h = B("h") m = A("m") a = A("a") k = A("k") b = B("b") l = A("l") f = A("f") d.u = k d.p...
9
15
1.666667
0.208333
2
4.5
2
1
1.5
4
2
1
4
0.444444
4
0.266667
1
2
2
2
2
3
3
2
821
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.w: A = None self.txt = txt f = A("f") j = B("j") n = A("n") b = A("b") h = A("h") f.s = b j.y = b j.w = f n.s = b b.s = h h.s = n assert ...
n"
class A: def __init__(self, txt: str): self.s: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.w: A = None self.txt = txt f = A("f") j = B("j") n = A("n") b = A("b") h = A("h") f.s = b j.y = b j.w = f n.s = b b.s = h h.s = n assert ...
5
6
1.2
0.3
2
2.5
2
1
1.5
4
1
1
5
1
4
0.666667
0
null
null
null
2
3
3
1
822
class A: def __init__(self, txt: str): self.s: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.y: B = None self.txt = txt b = A("b") k = B("k") n = A("n") h = A("h") l = A("l") a = B("a") b.s = a b.v = l k.v...
a"
class A: def __init__(self, txt: str): self.s: B = None self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.y: B = None self.txt = txt b = A("b") k = B("k") n = A("n") h = A("h") l = A("l") a = B("a") b.s = a b.v = l k.v...
6
10
1.666667
0.333333
2
3
2
2
2
6
4
2
2
0.333333
4
0.4
5
2
6
3.111111
2
4
4
2
823
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt j = A("j") i = B("i") d = B("d") m = B("m") f = A("f") h = B("h") b = B("b") c = A("c") k = B("k") j.x = f i.z = k d.z = i m.z = d f.x ...
c"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt j = A("j") i = B("i") d = B("d") m = B("m") f = A("f") h = B("h") b = B("b") c = A("c") k = B("k") j.x = f i.z = k d.z = i m.z = d f.x ...
9
9
1
0.125
2
4.5
1
1
1
3
2
2
2
0.222222
2
0.222222
2
2
2
2
1
3
3
1
824
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.u: A = None self.txt = txt f = A("f") g = B("g") h = B("h") b = B("b") i = B("i") m = B("m") n = A("n") f.x = n g.p = i g.u = n h.p = g h...
f"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.u: A = None self.txt = txt f = A("f") g = B("g") h = B("h") b = B("b") i = B("i") m = B("m") n = A("n") f.x = n g.p = i g.u = n h.p = g h...
7
12
1.714286
0.285714
2
3.5
2
1
1.5
4
3
2
2
0.285714
2
0.166667
3
2
4
2.5
1
4
4
1
825
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt a = A("a") c = B("c") j = B("j") h = A("h") k = A("k") d = B("d") e = A("e") g = B("g") a.v = e c.o = d j.o = d h.v = e k.v = h d.o = j...
h"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: B = None self.txt = txt a = A("a") c = B("c") j = B("j") h = A("h") k = A("k") d = B("d") e = A("e") g = B("g") a.v = e c.o = d j.o = d h.v = e k.v = h d.o = j...
8
8
1
0.142857
2
4
1
1
1
8
4
4
3
0.375
3
0.375
6
2
6
3.333333
1
8
8
1
826
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.w: A = None self.txt = txt a = A("a") h = B("h") k = B("k") e = A("e") b = B("b") j = B("j") c = A("c") a.z = e h.y = c h.w = a k.y = e k...
e"
class A: def __init__(self, txt: str): self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.w: A = None self.txt = txt a = A("a") h = B("h") k = B("k") e = A("e") b = B("b") j = B("j") c = A("c") a.z = e h.y = c h.w = a k.y = e k...
7
9
1.285714
0.214286
2
3.5
2
1
1.5
4
2
2
3
0.428571
3
0.333333
2
2
2
2
2
3
3
1
827
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.x: A = None self.txt = txt k = A("k") a = B("a") f = A("f") k.s = f k.x = a a.x = k f.s = k f.x = a assert k.s.s.s.txt == "
f"
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.x: A = None self.txt = txt k = A("k") a = B("a") f = A("f") k.s = f k.x = a a.x = k f.s = k f.x = a assert k.s.s.s.txt == "f"
3
5
1.666667
0.833333
2
1.5
2
1
1.5
3
2
2
2
0.666667
2
0.4
2
2
2
2
1
3
3
1
828
class A: def __init__(self, txt: str): self.t: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.r: B = None self.txt = txt n = A("n") h = B("h") m = B("m") g = A("g") d = A("d") j = A("j") a = B("a") i = A("i"...
h"
class A: def __init__(self, txt: str): self.t: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.r: B = None self.txt = txt n = A("n") h = B("h") m = B("m") g = A("g") d = A("d") j = A("j") a = B("a") i = A("i"...
8
16
2
0.285714
2
4
2
2
2
4
2
1
4
0.5
4
0.25
1
2
2
2
3
2
2
1
829
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt k = A("k") f = B("f") n = A("n") h = B("h") k.y = h f.p = h n.y = f h.p = f assert f.p.p.p.p.txt == "
f"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt k = A("k") f = B("f") n = A("n") h = B("h") k.y = h f.p = h n.y = f h.p = f assert f.p.p.p.p.txt == "f"
4
4
1
0.333333
2
2
1
1
1
4
3
2
2
0.5
2
0.5
3
2
4
2.5
1
4
4
1
830
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt e = A("e") l = B("l") k = B("k") e.y = l l.y = e k.y = e assert l.y.y.y.txt == "
e"
class A: def __init__(self, txt: str): self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt e = A("e") l = B("l") k = B("k") e.y = l l.y = e k.y = e assert l.y.y.y.txt == "e"
3
3
1
0.5
2
1.5
1
1
1
3
2
2
2
0.666667
2
0.666667
2
2
2
2
1
3
3
1
831
class A: def __init__(self, txt: str): self.o: A = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.o: A = None self.txt = txt m = A("m") f = B("f") c = A("c") m.o = c m.u = c f.s = m f.o = m c.o = m c.u = m asse...
c"
class A: def __init__(self, txt: str): self.o: A = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.o: A = None self.txt = txt m = A("m") f = B("f") c = A("c") m.o = c m.u = c f.s = m f.o = m c.o = m c.u = m asse...
3
3
1
0.5
2
1.5
2
2
2
3
2
2
2
0.666667
2
0.666667
2
2
2
2
1
3
3
1
832
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.v: B = None self.txt = txt m = A("m") d = B("d") a = A("a") l = B("l") h = B("h") b = B("b") m.o = b d.z = b d.v = b a.o = b l.z = d l.v ...
h"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.v: B = None self.txt = txt m = A("m") d = B("d") a = A("a") l = B("l") h = B("h") b = B("b") m.o = b d.z = b d.v = b a.o = b l.z = d l.v ...
6
8
1.333333
0.266667
2
3
2
1
1.5
6
3
2
3
0.5
4
0.5
4
2
5
3.4
2
3
3
2
833
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: B = None self.txt = txt g = A("g") l = B("l") m = A("m") k = B("k") j = A("j") e = A("e") n = B("n") i = A("i") c = B("c") b = A("b") ...
k"
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: B = None self.txt = txt g = A("g") l = B("l") m = A("m") k = B("k") j = A("j") e = A("e") n = B("n") i = A("i") c = B("c") b = A("b") ...
10
16
1.6
0.177778
2
5
2
1
1.5
10
6
5
2
0.2
2
0.125
9
2
10
4.4
1
10
10
1
834
class A: def __init__(self, txt: str): self.r: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt g = A("g") n = B("n") e = A("e") g.r = n g.o = e n.z = g e.r = n e.o = g assert g.r.z.r.txt == "
n"
class A: def __init__(self, txt: str): self.r: B = None self.o: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt g = A("g") n = B("n") e = A("e") g.r = n g.o = e n.z = g e.r = n e.o = g assert g.r.z.r.txt == "n"
3
5
1.666667
0.833333
2
1.5
2
1
1.5
3
2
2
2
0.666667
2
0.4
2
2
2
2
2
2
1
1
835
class A: def __init__(self, txt: str): self.z: A = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.t: A = None self.txt = txt h = A("h") e = B("e") d = A("d") l = B("l") b = B("b") h.z = d h.t = b e.r = d e.t = ...
d"
class A: def __init__(self, txt: str): self.z: A = None self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.r: A = None self.t: A = None self.txt = txt h = A("h") e = B("e") d = A("d") l = B("l") b = B("b") h.z = d h.t = b e.r = d e.t = ...
5
9
1.8
0.45
2
2.5
2
2
2
5
2
2
3
0.6
3
0.333333
3
3
3
3
3
2
1
1
836
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.z: A = None self.txt = txt l = A("l") f = B("f") k = B("k") g = B("g") b = A("b") l.p = k f.o = l f.z = l k.o = b k.z = b g.o = l g.z = l...
l"
class A: def __init__(self, txt: str): self.p: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.z: A = None self.txt = txt l = A("l") f = B("f") k = B("k") g = B("g") b = A("b") l.p = k f.o = l f.z = l k.o = b k.z = b g.o = l g.z = l...
5
5
1
0.25
2
2.5
2
1
1.5
5
2
2
4
0.8
4
0.8
2
4
4
4
2
3
1
1
837
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.q: B = None self.txt = txt e = A("e") f = B("f") c = B("c") e.o = c f.u = e f.q = c c.u = e c.q = f assert e.o.u.o.txt == "
c"
class A: def __init__(self, txt: str): self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.q: B = None self.txt = txt e = A("e") f = B("f") c = B("c") e.o = c f.u = e f.q = c c.u = e c.q = f assert e.o.u.o.txt == "c"
3
5
1.666667
0.833333
2
1.5
2
1
1.5
3
2
2
2
0.666667
2
0.4
2
2
2
2
2
2
1
1
838
class A: def __init__(self, txt: str): self.p: B = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt g = A("g") i = B("i") j = B("j") n = A("n") m = B("m") l = A("l") h = B("h") k = A("k") c = B("c") g.p = i g.w...
m"
class A: def __init__(self, txt: str): self.p: B = None self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt g = A("g") i = B("i") j = B("j") n = A("n") m = B("m") l = A("l") h = B("h") k = A("k") c = B("c") g.p = i g.w...
9
12
1.333333
0.166667
2
4.5
2
1
1.5
7
2
2
4
0.444444
4
0.333333
4
4
4
4
3
3
1
1
839
class A: def __init__(self, txt: str): self.u: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.t: A = None self.txt = txt e = A("e") i = B("i") d = B("d") m = A("m") l = A("l") e.u = i e.x = m i.q = d i.t = ...
i"
class A: def __init__(self, txt: str): self.u: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.t: A = None self.txt = txt e = A("e") i = B("i") d = B("d") m = A("m") l = A("l") e.u = i e.x = m i.q = d i.t = ...
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
1
840
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.s: B = None self.txt = txt c = A("c") g = B("g") f = A("f") a = A("a") m = B("m") n = A("n") c.y = n g.u = m g.s = m f.y = n a.y = f m.u ...
a"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.s: B = None self.txt = txt c = A("c") g = B("g") f = A("f") a = A("a") m = B("m") n = A("n") c.y = n g.u = m g.s = m f.y = n a.y = f m.u ...
6
6
1
0.2
2
3
2
1
1.5
3
2
1
3
0.5
3
0.5
1
3
3
3
1
3
3
1
841
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt k = A("k") l = B("l") m = B("m") j = B("j") k.t = m l.t = j m.t = j j.t = m assert m.t.t.t.txt == "
j"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: B = None self.txt = txt k = A("k") l = B("l") m = B("m") j = B("j") k.t = m l.t = j m.t = j j.t = m assert m.t.t.t.txt == "j"
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
842
class A: def __init__(self, txt: str): self.s: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.r: A = None self.txt = txt d = A("d") f = B("f") b = B("b") c = B("c") e = A("e") d.s = e d.o = c f.y = e f.r = ...
d"
class A: def __init__(self, txt: str): self.s: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.r: A = None self.txt = txt d = A("d") f = B("f") b = B("b") c = B("c") e = A("e") d.s = e d.o = c f.y = e f.r = ...
5
8
1.6
0.4
2
2.5
2
2
2
3
2
1
3
0.6
3
0.375
1
2
2
2
2
2
1
1
843
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.z: B = None self.txt = txt f = A("f") g = B("g") j = A("j") n = B("n") d = A("d") f.u = g g.v = j g.z = n j.u = n n.v = j n.z = g d.u = n...
n"
class A: def __init__(self, txt: str): self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.z: B = None self.txt = txt f = A("f") g = B("g") j = A("j") n = B("n") d = A("d") f.u = g g.v = j g.z = n j.u = n n.v = j n.z = g d.u = n...
5
7
1.4
0.35
2
2.5
2
1
1.5
3
2
1
3
0.6
3
0.428571
1
2
2
2
2
2
1
1
844
class A: def __init__(self, txt: str): self.q: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.t: A = None self.txt = txt i = A("i") f = B("f") b = B("b") k = B("k") m = B("m") e = B("e") a = A("a") j = A("j"...
a"
class A: def __init__(self, txt: str): self.q: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.t: A = None self.txt = txt i = A("i") f = B("f") b = B("b") k = B("k") m = B("m") e = B("e") a = A("a") j = A("j"...
10
19
1.9
0.211111
2
5
2
2
2
9
3
2
6
0.6
6
0.315789
4
3
6
3.6
2
8
6
1
845
class A: def __init__(self, txt: str): self.o: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.txt = txt m = A("m") c = B("c") j = B("j") e = B("e") n = A("n") m.o = c m.r = n c.u = e j.u = e e.u = j n.o = e n.r = m...
e"
class A: def __init__(self, txt: str): self.o: B = None self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.txt = txt m = A("m") c = B("c") j = B("j") e = B("e") n = A("n") m.o = c m.r = n c.u = e j.u = e e.u = j n.o = e n.r = m...
5
7
1.4
0.35
2
2.5
2
1
1.5
5
2
1
4
0.8
5
0.714286
2
2
2
2
3
2
2
2
846
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.t: A = None self.txt = txt l = A("l") n = B("n") b = B("b") j = A("j") i = A("i") a = A("a") h = A("h") g = B("g") m = A("m") c = B("c") ...
n"
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.t: A = None self.txt = txt l = A("l") n = B("n") b = B("b") j = A("j") i = A("i") a = A("a") h = A("h") g = B("g") m = A("m") c = B("c") ...
10
15
1.5
0.166667
2
5
2
1
1.5
4
2
1
4
0.4
4
0.266667
1
2
2
2
3
2
1
1
847
class A: def __init__(self, txt: str): self.p: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.txt = txt f = A("f") k = B("k") c = B("c") i = A("i") l = B("l") n = B("n") h = B("h") a = A("a") d = A("d") g = A("g") ...
c"
class A: def __init__(self, txt: str): self.p: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.txt = txt f = A("f") k = B("k") c = B("c") i = A("i") l = B("l") n = B("n") h = B("h") a = A("a") d = A("d") g = A("g") ...
10
13
1.3
0.144444
2
5
2
1
1.5
10
5
5
3
0.3
3
0.230769
8
2
8
4
1
10
10
1
848
class A: def __init__(self, txt: str): self.p: A = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt l = A("l") m = B("m") h = B("h") j = A("j") n = A("n") b = A("b") e = B("e") g = B("g") f = B("f") i = B("i") ...
b"
class A: def __init__(self, txt: str): self.p: A = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: B = None self.txt = txt l = A("l") m = B("m") h = B("h") j = A("j") n = A("n") b = A("b") e = B("e") g = B("g") f = B("f") i = B("i") ...
10
13
1.3
0.144444
2
5
2
1
1.5
8
4
2
3
0.3
5
0.384615
6
2
6
3.8
2
5
2
2
849
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt m = A("m") h = B("h") n = B("n") c = A("c") m.x = c h.w = m n.w = c c.x = m assert n.w.x.x.txt == "
c"
class A: def __init__(self, txt: str): self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.txt = txt m = A("m") h = B("h") n = B("n") c = A("c") m.x = c h.w = m n.w = c c.x = m assert n.w.x.x.txt == "c"
4
4
1
0.333333
2
2
1
1
1
3
2
1
3
0.75
3
0.75
1
2
2
2
2
2
2
1
850
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt g = A("g") a = B("a") f = A("f") b = A("b") e = A("e") g.v = a a.p = g f.v = a b.v = a e.v = a assert b.v.p.v.p.txt == "
g"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt g = A("g") a = B("a") f = A("f") b = A("b") e = A("e") g.v = a a.p = g f.v = a b.v = a e.v = a assert b.v.p.v.p.txt == "g"
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
2
1
1
851
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt d = A("d") f = B("f") e = A("e") n = A("n") l = A("l") d.s = f f.q = n e.s = f n.s = f l.s = f assert l.s.q.s.q.s.txt == "
f"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt d = A("d") f = B("f") e = A("e") n = A("n") l = A("l") d.s = f f.q = n e.s = f n.s = f l.s = f assert l.s.q.s.q.s.txt == "f"
5
5
1
0.25
2
2.5
1
1
1
5
3
2
3
0.6
3
0.6
3
2
4
2.5
2
3
1
1
852
class A: def __init__(self, txt: str): self.r: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt l = A("l") h = B("h") g = B("g") m = A("m") a = B("a") n = B("n") i = B("i") c = A("c") k = B("k") j = A("j") ...
g"
class A: def __init__(self, txt: str): self.r: A = None self.o: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt l = A("l") h = B("h") g = B("g") m = A("m") a = B("a") n = B("n") i = B("i") c = A("c") k = B("k") j = A("j") ...
10
14
1.4
0.155556
2
5
2
1
1.5
5
3
2
3
0.3
3
0.214286
3
2
4
2.5
2
4
4
1
853
class A: def __init__(self, txt: str): self.z: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.txt = txt d = A("d") m = B("m") k = B("k") j = A("j") f = A("f") g = A("g") a = A("a") i = A("i") e = B("e") d.z = k d.r...
m"
class A: def __init__(self, txt: str): self.z: B = None self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: B = None self.txt = txt d = A("d") m = B("m") k = B("k") j = A("j") f = A("f") g = A("g") a = A("a") i = A("i") e = B("e") d.z = k d.r...
9
14
1.555556
0.194444
2
4.5
2
1
1.5
9
3
3
4
0.444444
4
0.285714
6
3
6
4
2
8
8
1
854
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.v: B = None self.txt = txt f = A("f") g = B("g") k = B("k") f.s = k g.s = k g.v = k k.s = g k.v = g assert k.v.s.v.txt == "
g"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.v: B = None self.txt = txt f = A("f") g = B("g") k = B("k") f.s = k g.s = k g.v = k k.s = g k.v = g assert k.v.s.v.txt == "g"
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
855
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt e = A("e") m = B("m") d = B("d") i = A("i") c = A("c") h = A("h") e.v = m m.q = e d.q = i i.v = m c.v = m h.v = d assert h.v.q.v.q.txt ...
e"
class A: def __init__(self, txt: str): self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: A = None self.txt = txt e = A("e") m = B("m") d = B("d") i = A("i") c = A("c") h = A("h") e.v = m m.q = e d.q = i i.v = m c.v = m h.v = d assert h.v.q.v.q.txt ...
6
6
1
0.2
2
3
1
1
1
4
1
1
5
0.833333
4
0.666667
0
null
null
null
2
2
1
1
856
class A: def __init__(self, txt: str): self.t: B = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt d = A("d") i = B("i") g = A("g") h = A("h") k = A("k") b = B("b") m = A("m") n = A("n") d.t = i d.u = m i.x = ...
b"
class A: def __init__(self, txt: str): self.t: B = None self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.txt = txt d = A("d") i = B("i") g = A("g") h = A("h") k = A("k") b = B("b") m = A("m") n = A("n") d.t = i d.u = m i.x = ...
8
14
1.75
0.25
2
4
2
1
1.5
7
4
3
3
0.375
3
0.214286
5
2
6
3.111111
2
6
6
1
857
class A: def __init__(self, txt: str): self.s: A = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.y: B = None self.txt = txt e = A("e") m = B("m") f = A("f") n = B("n") h = B("h") g = A("g") k = B("k") d = A("d"...
f"
class A: def __init__(self, txt: str): self.s: A = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.y: B = None self.txt = txt e = A("e") m = B("m") f = A("f") n = B("n") h = B("h") g = A("g") k = B("k") d = A("d"...
9
16
1.777778
0.222222
2
4.5
2
2
2
3
2
1
3
0.333333
3
0.1875
1
3
3
3
2
2
2
1
858
class A: def __init__(self, txt: str): self.r: A = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.r: B = None self.txt = txt e = A("e") f = B("f") d = A("d") l = B("l") j = A("j") e.r = d e.z = j f.x = l f.r = ...
f"
class A: def __init__(self, txt: str): self.r: A = None self.z: A = None self.txt = txt class B: def __init__(self, txt: str): self.x: B = None self.r: B = None self.txt = txt e = A("e") f = B("f") d = A("d") l = B("l") j = A("j") e.r = d e.z = j f.x = l f.r = ...
5
6
1.2
0.3
2
2.5
2
2
2
4
3
1
2
0.4
4
0.666667
3
2
4
2.5
2
2
2
2
859
class A: def __init__(self, txt: str): self.q: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt h = A("h") a = B("a") f = A("f") b = B("b") c = B("c") l = B("l") n = B("n") g = B("g") e = A("e") h.q = f h.x...
e"
class A: def __init__(self, txt: str): self.q: A = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.p: A = None self.txt = txt h = A("h") a = B("a") f = A("f") b = B("b") c = B("c") l = B("l") n = B("n") g = B("g") e = A("e") h.q = f h.x...
9
10
1.111111
0.138889
2
4.5
2
1
1.5
9
4
3
4
0.444444
6
0.6
6
2
6
3
3
4
2
2
860
class A: def __init__(self, txt: str): self.y: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.o: A = None self.txt = txt d = A("d") b = B("b") e = B("e") l = A("l") n = B("n") m = A("m") j = B("j") i = B("i"...
d"
class A: def __init__(self, txt: str): self.y: B = None self.x: A = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.o: A = None self.txt = txt d = A("d") b = B("b") e = B("e") l = A("l") n = B("n") m = A("m") j = B("j") i = B("i"...
8
13
1.625
0.232143
2
4
2
2
2
4
2
2
3
0.375
3
0.230769
2
3
3
3
1
4
4
1
861
class A: def __init__(self, txt: str): self.r: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt h = A("h") b = B("b") j = A("j") h.r = b h.q = b b.y = h j.r = b j.q = b assert b.y.r.y.txt == "
h"
class A: def __init__(self, txt: str): self.r: B = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.txt = txt h = A("h") b = B("b") j = A("j") h.r = b h.q = b b.y = h j.r = b j.q = b assert b.y.r.y.txt == "h"
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
862
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.w: B = None self.txt = txt c = A("c") d = B("d") l = A("l") a = B("a") i = B("i") n = B("n") b = B("b") g = A("g") c.u = g d.u = g d.w = ...
g"
class A: def __init__(self, txt: str): self.u: A = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.w: B = None self.txt = txt c = A("c") d = B("d") l = A("l") a = B("a") i = B("i") n = B("n") b = B("b") g = A("g") c.u = g d.u = g d.w = ...
8
13
1.625
0.232143
2
4
2
1
1.5
8
4
3
4
0.5
4
0.307692
5
2
6
3.111111
1
8
8
1
863
class A: def __init__(self, txt: str): self.s: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.v: A = None self.txt = txt c = A("c") j = B("j") a = A("a") e = A("e") c.s = j c.u = j j.y = e j.v = c a.s = j a...
j"
class A: def __init__(self, txt: str): self.s: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.v: A = None self.txt = txt c = A("c") j = B("j") a = A("a") e = A("e") c.s = j c.u = j j.y = e j.v = c a.s = j a...
4
5
1.25
0.416667
2
2
2
2
2
3
2
1
3
0.75
3
0.6
1
2
2
2
2
2
1
1
864
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.r: B = None self.txt = txt j = A("j") d = B("d") b = A("b") h = A("h") a = A("a") m = B("m") n = A("n") c = B("c") k = B("k") j.v = b d.o...
n"
class A: def __init__(self, txt: str): self.v: A = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.r: B = None self.txt = txt j = A("j") d = B("d") b = A("b") h = A("h") a = A("a") m = B("m") n = A("n") c = B("c") k = B("k") j.v = b d.o...
9
13
1.444444
0.180556
2
4.5
2
1
1.5
5
2
1
5
0.555556
5
0.384615
1
4
4
4
2
4
4
1
865
class A: def __init__(self, txt: str): self.s: B = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.x: A = None self.txt = txt h = A("h") b = B("b") i = B("i") l = B("l") f = A("f") a = A("a") e = A("e") g = A("g"...
i"
class A: def __init__(self, txt: str): self.s: B = None self.q: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.x: A = None self.txt = txt h = A("h") b = B("b") i = B("i") l = B("l") f = A("f") a = A("a") e = A("e") g = A("g"...
8
16
2
0.285714
2
4
2
2
2
3
1
1
4
0.5
3
0.1875
0
null
null
null
2
2
2
1
866
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.z: B = None self.txt = txt a = A("a") i = B("i") c = A("c") m = A("m") k = A("k") g = A("g") e = B("e") a.t = i i.q = e i.z = e c.t = e m...
e"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.z: B = None self.txt = txt a = A("a") i = B("i") c = A("c") m = A("m") k = A("k") g = A("g") e = B("e") a.t = i i.q = e i.z = e c.t = e m...
7
7
1
0.166667
2
3.5
2
1
1.5
4
2
1
3
0.428571
4
0.571429
2
2
2
2
3
2
2
2
867
class A: def __init__(self, txt: str): self.r: B = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.t: A = None self.txt = txt g = A("g") b = B("b") c = A("c") k = B("k") g.r = k g.v = k b.y = k b.t = c c.r = k c...
c"
class A: def __init__(self, txt: str): self.r: B = None self.v: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.t: A = None self.txt = txt g = A("g") b = B("b") c = A("c") k = B("k") g.r = k g.v = k b.y = k b.t = c c.r = k c...
4
7
1.75
0.583333
2
2
2
2
2
3
1
1
4
1
3
0.428571
0
null
null
null
3
1
1
1
868
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.p: A = None self.txt = txt b = A("b") i = B("i") e = A("e") h = B("h") j = B("j") b.s = i i.t = e i.p = b e.s = j h.t = e h.p = b j.t = b...
e"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.t: A = None self.p: A = None self.txt = txt b = A("b") i = B("i") e = A("e") h = B("h") j = B("j") b.s = i i.t = e i.p = b e.s = j h.t = e h.p = b j.t = b...
5
8
1.6
0.4
2
2.5
2
1
1.5
3
2
1
3
0.6
3
0.375
1
2
2
2
3
1
1
1
869
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.z: B = None self.txt = txt e = A("e") j = B("j") b = A("b") a = B("a") h = A("h") m = A("m") d = A("d") g = B("g") e.v = a e.w = m j.z = ...
a"
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.z: B = None self.txt = txt e = A("e") j = B("j") b = A("b") a = B("a") h = A("h") m = A("m") d = A("d") g = B("g") e.v = a e.w = m j.z = ...
8
13
1.625
0.232143
2
4
2
1
1.5
4
1
1
5
0.625
4
0.307692
0
null
null
null
3
2
2
1
870
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.s: A = None self.txt = txt c = A("c") j = B("j") m = A("m") h = A("h") f = B("f") g = B("g") e = A("e") i = A("i") b = A("b") c.u = f c.s...
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.s: A = None self.txt = txt c = A("c") j = B("j") m = A("m") h = A("h") f = B("f") g = B("g") e = A("e") i = A("i") b = A("b") c.u = f c.s...
9
12
1.333333
0.166667
2
4.5
2
1
1.5
9
3
3
4
0.444444
6
0.5
6
2
6
4
2
7
3
2
871
class A: def __init__(self, txt: str): self.u: A = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt g = A("g") b = B("b") n = A("n") e = B("e") m = B("m") l = A("l") j = B("j") a = A("a") i = B("i") g.u = l g.y...
b"
class A: def __init__(self, txt: str): self.u: A = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.txt = txt g = A("g") b = B("b") n = A("n") e = B("e") m = B("m") l = A("l") j = B("j") a = A("a") i = B("i") g.u = l g.y...
9
13
1.444444
0.180556
2
4.5
2
1
1.5
6
2
2
5
0.555556
5
0.384615
2
4
4
4
2
3
1
1
872
class A: def __init__(self, txt: str): self.y: A = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.r: A = None self.txt = txt l = A("l") c = B("c") g = A("g") l.y = g l.x = c c.v = g c.r = l g.y = l g.x = c asse...
g"
class A: def __init__(self, txt: str): self.y: A = None self.x: B = None self.txt = txt class B: def __init__(self, txt: str): self.v: A = None self.r: A = None self.txt = txt l = A("l") c = B("c") g = A("g") l.y = g l.x = c c.v = g c.r = l g.y = l g.x = c asse...
3
6
2
1
2
1.5
2
2
2
3
2
2
2
0.666667
2
0.333333
2
2
2
2
1
3
3
1
873
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.q: B = None self.txt = txt n = A("n") l = B("l") i = A("i") m = A("m") g = B("g") n.t = m l.z = n l.q = g i.t = m m.t = i g.z = i g.q = l...
i"
class A: def __init__(self, txt: str): self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.q: B = None self.txt = txt n = A("n") l = B("l") i = A("i") m = A("m") g = B("g") n.t = m l.z = n l.q = g i.t = m m.t = i g.z = i g.q = l...
5
7
1.4
0.35
2
2.5
2
1
1.5
3
2
2
2
0.4
2
0.285714
2
2
2
2
1
3
3
1
874
class A: def __init__(self, txt: str): self.x: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.z: A = None self.txt = txt g = A("g") a = B("a") d = B("d") m = B("m") h = B("h") n = A("n") g.x = n g.q = h a.o...
h"
class A: def __init__(self, txt: str): self.x: A = None self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.o: A = None self.z: A = None self.txt = txt g = A("g") a = B("a") d = B("d") m = B("m") h = B("h") n = A("n") g.x = n g.q = h a.o...
6
9
1.5
0.3
2
3
2
2
2
3
1
1
4
0.666667
3
0.333333
0
null
null
null
3
1
1
1
875
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.p: A = None self.q: B = None self.txt = txt l = A("l") h = B("h") e = B("e") l.y = h l.x = h h.p = l h.q = e e.p = l e.q = h asse...
e"
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.p: A = None self.q: B = None self.txt = txt l = A("l") h = B("h") e = B("e") l.y = h l.x = h h.p = l h.q = e e.p = l e.q = h asse...
3
5
1.666667
0.833333
2
1.5
2
2
2
3
2
2
2
0.666667
2
0.4
2
2
2
2
1
3
3
1
876
class A: def __init__(self, txt: str): self.x: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt g = A("g") h = B("h") a = A("a") l = B("l") c = B("c") n = A("n") e = B("e") d = A("d") k = A("k") g.x = c g.y...
e"
class A: def __init__(self, txt: str): self.x: B = None self.y: B = None self.txt = txt class B: def __init__(self, txt: str): self.q: B = None self.txt = txt g = A("g") h = B("h") a = A("a") l = B("l") c = B("c") n = A("n") e = B("e") d = A("d") k = A("k") g.x = c g.y...
9
13
1.444444
0.180556
2
4.5
2
1
1.5
7
3
2
4
0.444444
4
0.307692
4
3
6
3.6
1
7
7
1
877
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.u: A = None self.txt = txt d = A("d") k = B("k") a = A("a") d.w = k k.z = a k.u = a a.w = k assert a.w.u.w.txt == "
k"
class A: def __init__(self, txt: str): self.w: B = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.u: A = None self.txt = txt d = A("d") k = B("k") a = A("a") d.w = k k.z = a k.u = a a.w = k assert a.w.u.w.txt == "k"
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
878
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt c = A("c") k = B("k") h = A("h") e = A("e") l = A("l") i = B("i") c.r = k k.s = i h.r = k e.r = i l.r = i i.s = k assert c.r.s.s.txt ==...
k"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: B = None self.txt = txt c = A("c") k = B("k") h = A("h") e = A("e") l = A("l") i = B("i") c.r = k k.s = i h.r = k e.r = i l.r = i i.s = k assert c.r.s.s.txt ==...
6
6
1
0.2
2
3
1
1
1
3
2
1
3
0.5
3
0.5
1
2
2
2
2
2
2
1
879
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt a = A("a") m = B("m") f = A("f") g = A("g") k = B("k") e = B("e") l = A("l") c = A("c") h = A("h") n = A("n") a.y = l m.z = f f.y = g g...
l"
class A: def __init__(self, txt: str): self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: A = None self.txt = txt a = A("a") m = B("m") f = A("f") g = A("g") k = B("k") e = B("e") l = A("l") c = A("c") h = A("h") n = A("n") a.y = l m.z = f f.y = g g...
10
10
1
0.111111
2
5
1
1
1
9
3
3
4
0.4
4
0.4
6
4
8
5
1
9
9
1
880
class A: def __init__(self, txt: str): self.x: A = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt a = A("a") i = B("i") f = B("f") c = A("c") d = A("d") a.x = c a.w = c i.y = f f.y = i c.x = d c.w = d d.x = c...
c"
class A: def __init__(self, txt: str): self.x: A = None self.w: A = None self.txt = txt class B: def __init__(self, txt: str): self.y: B = None self.txt = txt a = A("a") i = B("i") f = B("f") c = A("c") d = A("d") a.x = c a.w = c i.y = f f.y = i c.x = d c.w = d d.x = c...
5
5
1
0.25
2
2.5
2
1
1.5
5
3
2
3
0.6
3
0.6
3
2
4
2.5
2
3
1
1
881
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.v: B = None self.txt = txt i = A("i") h = B("h") g = B("g") c = A("c") n = A("n") d = A("d") j = B("j") k = A("k") f = A("f") i.u = g i.s...
j"
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.v: B = None self.txt = txt i = A("i") h = B("h") g = B("g") c = A("c") n = A("n") d = A("d") j = B("j") k = A("k") f = A("f") i.u = g i.s...
9
14
1.555556
0.194444
2
4.5
2
1
1.5
9
4
4
4
0.444444
4
0.285714
6
2
6
3.333333
2
8
8
1
882
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") m = B("m") l = A("l") j.v = m m.y = j l.v = m assert l.v.y.v.txt == "
m"
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") m = B("m") l = A("l") j.v = m m.y = j l.v = m assert l.v.y.v.txt == "m"
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
883
class A: def __init__(self, txt: str): self.s: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.u: B = None self.txt = txt l = A("l") m = B("m") a = B("a") h = A("h") j = A("j") b = B("b") l.s = a l.u = a m.y...
j"
class A: def __init__(self, txt: str): self.s: B = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.y: A = None self.u: B = None self.txt = txt l = A("l") m = B("m") a = B("a") h = A("h") j = A("j") b = B("b") l.s = a l.u = a m.y...
6
9
1.5
0.3
2
3
2
2
2
3
1
1
4
0.666667
3
0.333333
0
null
null
null
2
2
2
1
884
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt c = A("c") i = B("i") k = B("k") j = A("j") h = B("h") n = A("n") e = A("e") l = B("l") b = B("b") c.q = i i.u = c k.u = e j.q = h h.u ...
e"
class A: def __init__(self, txt: str): self.q: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt c = A("c") i = B("i") k = B("k") j = A("j") h = B("h") n = A("n") e = A("e") l = B("l") b = B("b") c.q = i i.u = c k.u = e j.q = h h.u ...
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
885
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.w: B = None self.txt = txt h = A("h") i = B("i") c = B("c") g = B("g") e = B("e") m = B("m") n = A("n") h.t = i i.q = n i.w = m c.q = n c...
n"
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.w: B = None self.txt = txt h = A("h") i = B("i") c = B("c") g = B("g") e = B("e") m = B("m") n = A("n") h.t = i i.q = n i.w = m c.q = n c...
7
12
1.714286
0.285714
2
3.5
2
1
1.5
7
2
1
6
0.857143
7
0.583333
2
3
5
4
3
3
1
2
886
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt n = A("n") a = B("a") f = A("f") h = A("h") g = A("g") b = B("b") n.r = g a.r = b f.r = n h.r = f g.r = n b.r = a assert h.r.r.r.txt ==...
g"
class A: def __init__(self, txt: str): self.r: A = None self.txt = txt class B: def __init__(self, txt: str): self.r: B = None self.txt = txt n = A("n") a = B("a") f = A("f") h = A("h") g = A("g") b = B("b") n.r = g a.r = b f.r = n h.r = f g.r = n b.r = a assert h.r.r.r.txt ==...
6
6
1
0.2
2
3
1
1
1
3
1
1
4
0.666667
3
0.5
0
null
null
null
1
3
3
1
887
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.y: B = None self.txt = txt l = A("l") a = B("a") m = B("m") f = A("f") l.t = m a.u = m a.y = m m.u = a m.y = a f.t = m assert m.y.y.y.txt...
a"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: B = None self.y: B = None self.txt = txt l = A("l") a = B("a") m = B("m") f = A("f") l.t = m a.u = m a.y = m m.u = a m.y = a f.t = m assert m.y.y.y.txt...
4
4
1
0.333333
2
2
2
1
1.5
3
2
2
2
0.5
2
0.5
2
2
2
2
1
3
3
1
888
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt k = A("k") b = B("b") f = A("f") d = B("d") n = A("n") k.t = d b.x = k f.t = b d.x = k n.t = b assert d.x.t.x.t.txt == "
d"
class A: def __init__(self, txt: str): self.t: B = None self.txt = txt class B: def __init__(self, txt: str): self.x: A = None self.txt = txt k = A("k") b = B("b") f = A("f") d = B("d") n = A("n") k.t = d b.x = k f.t = b d.x = k n.t = b assert d.x.t.x.t.txt == "d"
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
2
2
1
1
889
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.w: B = None self.txt = txt i = A("i") f = B("f") h = B("h") j = B("j") a = B("a") i.r = a f.s = i f.w = a h.s = i h.w = j j.s = i j.w = h...
a"
class A: def __init__(self, txt: str): self.r: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.w: B = None self.txt = txt i = A("i") f = B("f") h = B("h") j = B("j") a = B("a") i.r = a f.s = i f.w = a h.s = i h.w = j j.s = i j.w = h...
5
9
1.8
0.45
2
2.5
2
1
1.5
4
2
2
3
0.6
3
0.333333
2
2
2
2
2
2
1
1
890
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt h = A("h") d = B("d") c = A("c") h.z = d d.s = c c.z = d assert c.z.s.z.txt == "
d"
class A: def __init__(self, txt: str): self.z: B = None self.txt = txt class B: def __init__(self, txt: str): self.s: A = None self.txt = txt h = A("h") d = B("d") c = A("c") h.z = d d.s = c c.z = d assert c.z.s.z.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
891
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.p: A = None self.txt = txt b = A("b") l = B("l") j = A("j") e = A("e") b.t = l b.s = l l.p = e j.t = l j.s = l e.t = l e.s = l assert b.s...
e"
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.p: A = None self.txt = txt b = A("b") l = B("l") j = A("j") e = A("e") b.t = l b.s = l l.p = e j.t = l j.s = l e.t = l e.s = l assert b.s...
4
4
1
0.333333
2
2
2
1
1.5
4
2
2
3
0.75
3
0.75
2
2
2
2
2
2
1
1
892
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt j = A("j") i = B("i") k = A("k") a = B("a") m = B("m") h = B("h") d = A("d") c = A("c") b = A("b") j.s = i i.u = j k.s = i a.u = k m.u ...
i"
class A: def __init__(self, txt: str): self.s: B = None self.txt = txt class B: def __init__(self, txt: str): self.u: A = None self.txt = txt j = A("j") i = B("i") k = A("k") a = B("a") m = B("m") h = B("h") d = A("d") c = A("c") b = A("b") j.s = i i.u = j k.s = i a.u = k m.u ...
9
9
1
0.125
2
4.5
1
1
1
9
4
4
4
0.444444
4
0.444444
6
2
6
3.333333
2
5
1
1
893
class A: def __init__(self, txt: str): self.q: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.r: A = None self.txt = txt n = A("n") h = B("h") d = A("d") m = A("m") n.q = d n.t = m h.w = n h.r = d d.q = m d...
n"
class A: def __init__(self, txt: str): self.q: A = None self.t: A = None self.txt = txt class B: def __init__(self, txt: str): self.w: A = None self.r: A = None self.txt = txt n = A("n") h = B("h") d = A("d") m = A("m") n.q = d n.t = m h.w = n h.r = d d.q = m d...
4
7
1.75
0.583333
2
2
2
2
2
3
2
1
2
0.5
3
0.428571
2
2
2
2
2
2
2
2
894
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.r: B = None self.u: B = None self.txt = txt h = A("h") c = B("c") k = B("k") f = A("f") g = B("g") j = A("j") b = B("b") a = A("a"...
i"
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.r: B = None self.u: B = None self.txt = txt h = A("h") c = B("c") k = B("k") f = A("f") g = B("g") j = A("j") b = B("b") a = A("a"...
9
16
1.777778
0.222222
2
4.5
2
2
2
5
2
2
4
0.444444
4
0.25
2
2
2
2
2
3
3
2
895
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.p: A = None self.txt = txt g = A("g") k = B("k") f = B("f") l = A("l") b = A("b") h = A("h") c = A("c") i = A("i") d = A("d") g.y = l g.t...
h"
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.p: A = None self.txt = txt g = A("g") k = B("k") f = B("f") l = A("l") b = A("b") h = A("h") c = A("c") i = A("i") d = A("d") g.y = l g.t...
9
16
1.777778
0.222222
2
4.5
2
1
1.5
9
3
2
5
0.555556
6
0.375
5
2
7
4.833333
3
5
3
2
896
class A: def __init__(self, txt: str): 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 n = A("n") c = B("c") g = A("g") l = A("l") a = B("a") m = A("m") e = B("e") k = A("k") b = B("b") n.r = a c.w...
e"
class A: def __init__(self, txt: str): 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 n = A("n") c = B("c") g = A("g") l = A("l") a = B("a") m = A("m") e = B("e") k = A("k") b = B("b") n.r = a c.w...
9
13
1.444444
0.180556
2
4.5
2
1
1.5
6
2
1
5
0.555556
6
0.461538
2
3
4
3.5
3
3
3
2
897
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.p: A = None self.txt = txt j = A("j") c = B("c") f = A("f") k = A("k") e = B("e") j.s = c j.x = k c.p = k f.s = c f.x = k k.s = c k.x = j...
j"
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.p: A = None self.txt = txt j = A("j") c = B("c") f = A("f") k = A("k") e = B("e") j.s = c j.x = k c.p = k f.s = c f.x = k k.s = c k.x = j...
5
8
1.6
0.4
2
2.5
2
1
1.5
3
1
1
4
0.8
3
0.375
0
null
null
null
2
2
2
1
898
class A: def __init__(self, txt: str): self.q: A = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.v: B = None self.txt = txt a = A("a") l = B("l") n = A("n") f = B("f") i = A("i") e = B("e") k = B("k") j = B("j"...
f"
class A: def __init__(self, txt: str): self.q: A = None self.u: B = None self.txt = txt class B: def __init__(self, txt: str): self.w: B = None self.v: B = None self.txt = txt a = A("a") l = B("l") n = A("n") f = B("f") i = A("i") e = B("e") k = B("k") j = B("j"...
8
16
2
0.285714
2
4
2
2
2
3
2
1
3
0.375
3
0.1875
1
2
2
2
2
2
2
1
899
class A: def __init__(self, txt: str): self.q: A = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt f = A("f") a = B("a") g = B("g") i = A("i") e = B("e") b = A("b") h = B("h") j = A("j") d = B("d") f.q = b f.y...
j"
class A: def __init__(self, txt: str): self.q: A = None self.y: A = None self.txt = txt class B: def __init__(self, txt: str): self.z: B = None self.txt = txt f = A("f") a = B("a") g = B("g") i = A("i") e = B("e") b = A("b") h = B("h") j = A("j") d = B("d") f.q = b f.y...
9
13
1.444444
0.180556
2
4.5
2
1
1.5
4
2
1
4
0.444444
4
0.307692
1
2
2
2
2
3
3
2