id int64 0 25k | prompt stringlengths 265 3.39k | answer stringclasses 14
values | pythoncode stringlengths 267 3.39k | num_nodes int64 3 10 | num_edges int64 3 56 | avg_node_edge float64 1 5.6 | graph_density float64 0.11 1 | num_classes int64 2 10 | avg_node_class float64 1 5 | max_num_field int64 1 10 | min_num_field int64 1 5 | avg_num_field float64 1 7.8 | path_length int64 3 10 | max_node_visits int64 1 6 | max_edge_visits int64 1 5 | unique_node_number int64 2 10 | path_node_coverage float64 0.2 1 | unique_edge_number int64 2 10 | path_edge_coverage float64 0.04 1 | num_cycle int64 0 9 | shortest_cycle int64 2 9 ⌀ | longest_cycle int64 2 10 ⌀ | average_cycle float64 2 9 ⌀ | unique_edge_label int64 1 9 | max_label_occurrences int64 1 10 | max_label_consecutive int64 1 10 | max_node_outdegree int64 1 5 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 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.p: B = None
self.txt = txt
m = A("m")
c = B("c")
b = A("b")
h = B("h")
d = A("d")
m.o = c
c.r = m
c.p = h
b.o = c
h.r = m
h.p = c
d.o = h... | c" | 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.p: B = None
self.txt = txt
m = A("m")
c = B("c")
b = A("b")
h = B("h")
d = A("d")
m.o = c
c.r = m
c.p = h
b.o = c
h.r = m
h.p = c
d.o = h... | 5 | 7 | 1.4 | 0.35 | 2 | 2.5 | 2 | 1 | 1.5 | 5 | 3 | 2 | 3 | 0.6 | 3 | 0.428571 | 3 | 2 | 4 | 2.5 | 2 | 4 | 4 | 1 |
1 | 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
i = A("i")
e = B("e")
a = A("a")
m = B("m")
h = B("h")
k = B("k")
i.u = m
e.p = h
a.u = h
m.p = h
h.p = e
k.p = h
assert h.p.p.p.txt ==... | e" | 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
i = A("i")
e = B("e")
a = A("a")
m = B("m")
h = B("h")
k = B("k")
i.u = m
e.p = h
a.u = h
m.p = h
h.p = e
k.p = h
assert h.p.p.p.txt ==... | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 3 | 2 | 2 | 2 | 0.333333 | 2 | 0.333333 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
2 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.x: B = None
self.txt = txt
n = A("n")
b = B("b")
l = B("l")
m = A("m")
k = B("k")
c = B("c")
e = A("e")
h = A("h")
d = A("d")
j = A("j")
... | h" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.x: B = None
self.txt = txt
n = A("n")
b = B("b")
l = B("l")
m = A("m")
k = B("k")
c = B("c")
e = A("e")
h = A("h")
d = A("d")
j = A("j")
... | 10 | 14 | 1.4 | 0.155556 | 2 | 5 | 2 | 1 | 1.5 | 10 | 2 | 2 | 7 | 0.7 | 7 | 0.5 | 4 | 4 | 4 | 4 | 3 | 8 | 8 | 1 |
3 | class A:
def __init__(self, txt: str):
self.y: 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")
i = B("i")
k.y = i
a.x = k
i.x = k
assert i.x.y.x.txt == " | k" | class A:
def __init__(self, txt: str):
self.y: 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")
i = B("i")
k.y = i
a.x = k
i.x = k
assert i.x.y.x.txt == "k" | 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 |
4 | class A:
def __init__(self, txt: str):
self.o: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
d = A("d")
j = B("j")
e = A("e")
d.o = j
d.q = e
j.s = d
e.o = j
e.q = d
assert d.q.o.s.txt == " | d" | class A:
def __init__(self, txt: str):
self.o: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
d = A("d")
j = B("j")
e = A("e")
d.o = j
d.q = e
j.s = d
e.o = j
e.q = d
assert d.q.o.s.txt == "d" | 3 | 5 | 1.666667 | 0.833333 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 1 | 3 | 0.6 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 |
5 | class A:
def __init__(self, txt: str):
self.z: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.w: A = None
self.txt = txt
g = A("g")
k = B("k")
d = A("d")
h = A("h")
m = B("m")
e = B("e")
g.z = e
g.x = d
k.r... | e" | class A:
def __init__(self, txt: str):
self.z: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.w: A = None
self.txt = txt
g = A("g")
k = B("k")
d = A("d")
h = A("h")
m = B("m")
e = B("e")
g.z = e
g.x = d
k.r... | 6 | 11 | 1.833333 | 0.366667 | 2 | 3 | 2 | 2 | 2 | 6 | 2 | 2 | 5 | 0.833333 | 5 | 0.454545 | 2 | 2 | 2 | 2 | 3 | 3 | 3 | 2 |
6 | 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.w: B = None
self.y: A = None
self.txt = txt
d = A("d")
j = B("j")
b = B("b")
f = B("f")
g = B("g")
c = B("c")
a = B("a")
d.z = c
... | d" | 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.w: B = None
self.y: A = None
self.txt = txt
d = A("d")
j = B("j")
b = B("b")
f = B("f")
g = B("g")
c = B("c")
a = B("a")
d.z = c
... | 7 | 14 | 2 | 0.333333 | 2 | 3.5 | 2 | 2 | 2 | 7 | 3 | 2 | 5 | 0.714286 | 6 | 0.428571 | 3 | 2 | 5 | 3.25 | 3 | 3 | 1 | 2 |
7 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.x: A = None
self.txt = txt
j = A("j")
i = B("i")
e = A("e")
c = B("c")
n = B("n")
f = B("f")
j.z = f
i.w = e
i.x = e
e.z = n
c.w = j
c.x ... | n" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.x: A = None
self.txt = txt
j = A("j")
i = B("i")
e = A("e")
c = B("c")
n = B("n")
f = B("f")
j.z = f
i.w = e
i.x = e
e.z = n
c.w = j
c.x ... | 6 | 9 | 1.5 | 0.3 | 2 | 3 | 2 | 1 | 1.5 | 4 | 1 | 1 | 5 | 0.833333 | 4 | 0.444444 | 0 | null | null | null | 3 | 2 | 1 | 1 |
8 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
f = A("f")
l = B("l")
c = B("c")
n = B("n")
m = B("m")
i = B("i")
d = A("d")
g = B("g")
f.y = d
l.s = d
c.s = f
n.s = f
m.s = d
i.s = f... | f" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
f = A("f")
l = B("l")
c = B("c")
n = B("n")
m = B("m")
i = B("i")
d = A("d")
g = B("g")
f.y = d
l.s = d
c.s = f
n.s = f
m.s = d
i.s = f... | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 7 | 4 | 4 | 2 | 0.25 | 2 | 0.25 | 6 | 2 | 6 | 3.333333 | 1 | 7 | 7 | 1 |
9 | class A:
def __init__(self, txt: str):
self.q: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
b = A("b")
n = B("n")
j = A("j")
b.q = n
b.t = j
n.y = j
j.q = n
j.t = b
assert n.y.t.t.txt == " | j" | class A:
def __init__(self, txt: str):
self.q: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
b = A("b")
n = B("n")
j = A("j")
b.q = n
b.t = j
n.y = j
j.q = n
j.t = b
assert n.y.t.t.txt == "j" | 3 | 5 | 1.666667 | 0.833333 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 1 | 3 | 0.6 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
10 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
k = A("k")
b = B("b")
n = B("n")
c = A("c")
j = B("j")
d = A("d")
f = B("f")
e = A("e")
i = B("i")
l = A("l")
k.p = c
b.w = l
n.w = l
c... | l" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
k = A("k")
b = B("b")
n = B("n")
c = A("c")
j = B("j")
d = A("d")
f = B("f")
e = A("e")
i = B("i")
l = A("l")
k.p = c
b.w = l
n.w = l
c... | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 8 | 3 | 3 | 3 | 0.3 | 3 | 0.3 | 6 | 3 | 6 | 4 | 1 | 8 | 8 | 1 |
11 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.z: A = None
self.txt = txt
d = A("d")
h = B("h")
i = B("i")
j = A("j")
m = B("m")
l = A("l")
g = B("g")
f = A("f")
k = B("k")
c = A("c")
... | g" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.z: A = None
self.txt = txt
d = A("d")
h = B("h")
i = B("i")
j = A("j")
m = B("m")
l = A("l")
g = B("g")
f = A("f")
k = B("k")
c = A("c")
... | 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 |
12 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.q: A = None
self.txt = txt
j = A("j")
b = B("b")
f = A("f")
g = B("g")
i = B("i")
h = A("h")
k = B("k")
a = B("a")
j.z = i
b.x = j
b.q = ... | f" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.q: A = None
self.txt = txt
j = A("j")
b = B("b")
f = A("f")
g = B("g")
i = B("i")
h = A("h")
k = B("k")
a = B("a")
j.z = i
b.x = j
b.q = ... | 8 | 11 | 1.375 | 0.196429 | 2 | 4 | 2 | 1 | 1.5 | 6 | 3 | 2 | 3 | 0.375 | 4 | 0.363636 | 4 | 2 | 4 | 3.2 | 3 | 3 | 1 | 2 |
13 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.r: B = None
self.txt = txt
k = A("k")
m = B("m")
a = B("a")
i = A("i")
e = A("e")
l = B("l")
h = A("h")
k.p = l
m.x = i
m.r = a
a.x = e
a... | l" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.r: B = None
self.txt = txt
k = A("k")
m = B("m")
a = B("a")
i = A("i")
e = A("e")
l = B("l")
h = A("h")
k.p = l
m.x = i
m.r = a
a.x = e
a... | 7 | 10 | 1.428571 | 0.238095 | 2 | 3.5 | 2 | 1 | 1.5 | 5 | 3 | 2 | 3 | 0.428571 | 3 | 0.3 | 3 | 2 | 4 | 2.5 | 2 | 4 | 4 | 1 |
14 | 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.x: B = None
self.txt = txt
m = A("m")
c = B("c")
a = B("a")
l = A("l")
f = A("f")
n = A("n")
i = B("i")
b = A("b")
g = B("g")
m.u = i
m.p... | c" | 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.x: B = None
self.txt = txt
m = A("m")
c = B("c")
a = B("a")
l = A("l")
f = A("f")
n = A("n")
i = B("i")
b = A("b")
g = B("g")
m.u = i
m.p... | 9 | 12 | 1.333333 | 0.166667 | 2 | 4.5 | 2 | 1 | 1.5 | 6 | 3 | 2 | 4 | 0.444444 | 4 | 0.333333 | 3 | 2 | 4 | 2.5 | 2 | 5 | 5 | 1 |
15 | 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
i = A("i")
g = B("g")
a = B("a")
l = B("l")
n = A("n")
k = B("k")
b = A("b")
d = A("d")
e = A("e")
m = A("m")
i.y = l
g.p = l
a.p = g
l... | a" | 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
i = A("i")
g = B("g")
a = B("a")
l = B("l")
n = A("n")
k = B("k")
b = A("b")
d = A("d")
e = A("e")
m = A("m")
i.y = l
g.p = l
a.p = g
l... | 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 |
16 | class A:
def __init__(self, txt: str):
self.v: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
k = A("k")
n = B("n")
m = A("m")
l = B("l")
h = B("h")
k.v = m
k.p = m
n.q = h
m.v = k
m.p = k
l.q = h
h.q = n... | n" | class A:
def __init__(self, txt: str):
self.v: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
k = A("k")
n = B("n")
m = A("m")
l = B("l")
h = B("h")
k.v = m
k.p = m
n.q = h
m.v = k
m.p = k
l.q = h
h.q = n... | 5 | 5 | 1 | 0.25 | 2 | 2.5 | 2 | 1 | 1.5 | 4 | 3 | 2 | 2 | 0.4 | 2 | 0.4 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
17 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
h = A("h")
d = B("d")
i = A("i")
h.r = d
d.t = h
i.r = d
assert i.r.t.r.txt == " | d" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
h = A("h")
d = B("d")
i = A("i")
h.r = d
d.t = h
i.r = d
assert i.r.t.r.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 | 1 | 1 |
18 | class A:
def __init__(self, txt: str):
self.w: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
e = A("e")
d = B("d")
m = A("m")
j = A("j")
n = B("n")
f = A("f")
h = A("h")
k = A("k")
a = A("a")
l = A("l")
... | d" | class A:
def __init__(self, txt: str):
self.w: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
e = A("e")
d = B("d")
m = A("m")
j = A("j")
n = B("n")
f = A("f")
h = A("h")
k = A("k")
a = A("a")
l = A("l")
... | 10 | 18 | 1.8 | 0.2 | 2 | 5 | 2 | 1 | 1.5 | 6 | 3 | 2 | 4 | 0.4 | 4 | 0.222222 | 3 | 2 | 4 | 2.5 | 3 | 4 | 4 | 1 |
19 | class A:
def __init__(self, txt: str):
self.s: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
h = B("h")
b = B("b")
l = A("l")
f = A("f")
c = A("c")
a = A("a")
n = B("n")
d.s = h
d.y = a
h.z = ... | n" | class A:
def __init__(self, txt: str):
self.s: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
h = B("h")
b = B("b")
l = A("l")
f = A("f")
c = A("c")
a = A("a")
n = B("n")
d.s = h
d.y = a
h.z = ... | 8 | 13 | 1.625 | 0.232143 | 2 | 4 | 2 | 1 | 1.5 | 5 | 2 | 2 | 4 | 0.5 | 4 | 0.307692 | 2 | 3 | 3 | 3 | 3 | 2 | 1 | 1 |
20 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
k = A("k")
m = B("m")
n = B("n")
c = A("c")
h = B("h")
g = B("g")
a = B("a")
j = A("j")
e = A("e")
d = B("d")
k.q = e
m.t = g
n.t = m
c... | e" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
k = A("k")
m = B("m")
n = B("n")
c = A("c")
h = B("h")
g = B("g")
a = B("a")
j = A("j")
e = A("e")
d = B("d")
k.q = e
m.t = g
n.t = m
c... | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 6 | 3 | 2 | 4 | 0.4 | 4 | 0.4 | 3 | 2 | 4 | 2.5 | 1 | 6 | 6 | 1 |
21 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.v: B = None
self.txt = txt
k = A("k")
i = B("i")
m = B("m")
k.u = i
i.o = m
i.v = m
m.o = i
m.v = i
assert m.v.v.o.txt == " | i" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.v: B = None
self.txt = txt
k = A("k")
i = B("i")
m = B("m")
k.u = i
i.o = m
i.v = m
m.o = i
m.v = i
assert m.v.v.o.txt == "i" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 2 | 0.666667 | 3 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
22 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
e = A("e")
m = B("m")
d = B("d")
c = B("c")
k = A("k")
i = A("i")
e.u = i
m.x = c
d.x = c
c.x = m
k.u = i
i.u = e
assert k.u.u.u.u.u.u.... | e" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
e = A("e")
m = B("m")
d = B("d")
c = B("c")
k = A("k")
i = A("i")
e.u = i
m.x = c
d.x = c
c.x = m
k.u = i
i.u = e
assert k.u.u.u.u.u.u.... | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 6 | 3 | 3 | 3 | 0.5 | 3 | 0.5 | 4 | 2 | 4 | 2.666667 | 1 | 6 | 6 | 1 |
23 | 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.txt = txt
l = A("l")
a = B("a")
n = B("n")
e = A("e")
b = A("b")
l.q = b
a.u = e
n.u = l
e.q = l
b.q = l
assert n.u.q.q.q.txt == " | b" | 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.txt = txt
l = A("l")
a = B("a")
n = B("n")
e = A("e")
b = A("b")
l.q = b
a.u = e
n.u = l
e.q = l
b.q = l
assert n.u.q.q.q.txt == "b" | 5 | 5 | 1 | 0.25 | 2 | 2.5 | 1 | 1 | 1 | 4 | 2 | 2 | 3 | 0.6 | 3 | 0.6 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
24 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
b = A("b")
k = B("k")
g = B("g")
c = A("c")
j = A("j")
d = A("d")
e = A("e")
f = B("f")
b.s = d
k.u = c
g.u = c
c.s = b
j.s = c
d.s = b... | b" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
b = A("b")
k = B("k")
g = B("g")
c = A("c")
j = A("j")
d = A("d")
e = A("e")
f = B("f")
b.s = d
k.u = c
g.u = c
c.s = b
j.s = c
d.s = b... | 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 |
25 | 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.u: A = None
self.txt = txt
i = A("i")
n = B("n")
a = A("a")
j = A("j")
h = B("h")
c = B("c")
e = A("e")
b = A("b")
i.v = j
n.z = c
n.u = ... | e" | 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.u: A = None
self.txt = txt
i = A("i")
n = B("n")
a = A("a")
j = A("j")
h = B("h")
c = B("c")
e = A("e")
b = A("b")
i.v = j
n.z = c
n.u = ... | 8 | 11 | 1.375 | 0.196429 | 2 | 4 | 2 | 1 | 1.5 | 6 | 3 | 3 | 3 | 0.375 | 3 | 0.272727 | 4 | 2 | 4 | 2.666667 | 1 | 6 | 6 | 1 |
26 | class A:
def __init__(self, txt: str):
self.r: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.p: A = None
self.txt = txt
n = A("n")
h = B("h")
g = B("g")
j = B("j")
k = A("k")
l = A("l")
e = A("e")
f = B("f"... | f" | class A:
def __init__(self, txt: str):
self.r: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.p: A = None
self.txt = txt
n = A("n")
h = B("h")
g = B("g")
j = B("j")
k = A("k")
l = A("l")
e = A("e")
f = B("f"... | 10 | 19 | 1.9 | 0.211111 | 2 | 5 | 2 | 2 | 2 | 9 | 3 | 2 | 6 | 0.6 | 7 | 0.368421 | 4 | 2 | 7 | 4.8 | 3 | 5 | 3 | 2 |
27 | 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.txt = txt
e = A("e")
n = B("n")
k = A("k")
g = B("g")
j = A("j")
f = A("f")
a = A("a")
i = A("i")
l = B("l")
e.p = a
n.r = f
k.p = j
g.r = j
j.p ... | j" | 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.txt = txt
e = A("e")
n = B("n")
k = A("k")
g = B("g")
j = A("j")
f = A("f")
a = A("a")
i = A("i")
l = B("l")
e.p = a
n.r = f
k.p = j
g.r = j
j.p ... | 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 |
28 | 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.o: A = None
self.txt = txt
k = A("k")
h = B("h")
j = A("j")
k.s = h
h.u = j
h.o = j
j.s = h
assert j.s.u.s.txt == " | h" | 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.o: A = None
self.txt = txt
k = A("k")
h = B("h")
j = A("j")
k.s = h
h.u = j
h.o = j
j.s = h
assert j.s.u.s.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 |
29 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
j = A("j")
l = B("l")
a = A("a")
h = B("h")
c = A("c")
m = A("m")
e = A("e")
n = B("n")
d = B("d")
b = A("b")
j.x = m
l.x = m
a.x = m
h... | a" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
j = A("j")
l = B("l")
a = A("a")
h = B("h")
c = A("c")
m = A("m")
e = A("e")
n = B("n")
d = B("d")
b = A("b")
j.x = m
l.x = m
a.x = m
h... | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 6 | 3 | 2 | 4 | 0.4 | 4 | 0.4 | 3 | 2 | 4 | 2.5 | 1 | 6 | 6 | 1 |
30 | class A:
def __init__(self, txt: str):
self.o: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
b = A("b")
c = B("c")
d = A("d")
b.o = d
b.r = d
c.s = b
d.o = b
d.r = b
assert c.s.r.o.txt == " | b" | class A:
def __init__(self, txt: str):
self.o: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
b = A("b")
c = B("c")
d = A("d")
b.o = d
b.r = d
c.s = b
d.o = b
d.r = b
assert c.s.r.o.txt == "b" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 |
31 | 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.y: B = None
self.txt = txt
l = A("l")
m = B("m")
d = A("d")
g = A("g")
b = B("b")
e = A("e")
k = A("k")
h = B("h")
l.p = m
l.w = h
m.y = ... | b" | 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.y: B = None
self.txt = txt
l = A("l")
m = B("m")
d = A("d")
g = A("g")
b = B("b")
e = A("e")
k = A("k")
h = B("h")
l.p = m
l.w = h
m.y = ... | 8 | 13 | 1.625 | 0.232143 | 2 | 4 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.230769 | 1 | 3 | 3 | 3 | 1 | 3 | 3 | 1 |
32 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
h = A("h")
g = B("g")
e = A("e")
a = B("a")
h.y = a
g.w = e
e.y = g
a.w = h
assert g.w.y.w.txt == " | e" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
h = A("h")
g = B("g")
e = A("e")
a = B("a")
h.y = a
g.w = e
e.y = g
a.w = h
assert g.w.y.w.txt == "e" | 4 | 4 | 1 | 0.333333 | 2 | 2 | 1 | 1 | 1 | 3 | 2 | 2 | 2 | 0.5 | 2 | 0.5 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
33 | class A:
def __init__(self, txt: str):
self.t: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.q: B = None
self.txt = txt
d = A("d")
i = B("i")
b = A("b")
m = A("m")
f = B("f")
c = A("c")
e = A("e")
d.t = e
... | f" | class A:
def __init__(self, txt: str):
self.t: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.q: B = None
self.txt = txt
d = A("d")
i = B("i")
b = A("b")
m = A("m")
f = B("f")
c = A("c")
e = A("e")
d.t = e
... | 7 | 14 | 2 | 0.333333 | 2 | 3.5 | 2 | 2 | 2 | 7 | 2 | 2 | 5 | 0.714286 | 5 | 0.357143 | 3 | 4 | 4 | 4 | 2 | 6 | 6 | 2 |
34 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.x: A = None
self.txt = txt
e = A("e")
j = B("j")
k = B("k")
e.y = k
j.o = k
j.x = e
k.o = j
k.x = e
assert e.y.o.o.txt == " | k" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.x: A = None
self.txt = txt
e = A("e")
j = B("j")
k = B("k")
e.y = k
j.o = k
j.x = e
k.o = j
k.x = e
assert e.y.o.o.txt == "k" | 3 | 5 | 1.666667 | 0.833333 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 1 | 3 | 0.6 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
35 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.x: B = None
self.txt = txt
m = A("m")
f = B("f")
l = A("l")
g = B("g")
m.v = g
f.v = l
f.x = g
l.v = g
g.v = m
g.x = f
assert g.x.v.v.txt... | g" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.x: B = None
self.txt = txt
m = A("m")
f = B("f")
l = A("l")
g = B("g")
m.v = g
f.v = l
f.x = g
l.v = g
g.v = m
g.x = f
assert g.x.v.v.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 | 2 | 2 | 2 | 1 |
36 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
j = A("j")
d = B("d")
h = B("h")
m = A("m")
l = B("l")
f = B("f")
j.v = m
d.s = l
h.s = f
m.v = j
l.s = h
f.s = d
assert j.v.v.v.v.v.v.... | j" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
j = A("j")
d = B("d")
h = B("h")
m = A("m")
l = B("l")
f = B("f")
j.v = m
d.s = l
h.s = f
m.v = j
l.s = h
f.s = d
assert j.v.v.v.v.v.v.... | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 6 | 4 | 3 | 2 | 0.333333 | 2 | 0.333333 | 5 | 2 | 6 | 3.111111 | 1 | 6 | 6 | 1 |
37 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.p: B = None
self.txt = txt
g = A("g")
j = B("j")
b = A("b")
e = A("e")
f = A("f")
n = B("n")
g.p = e
j.y = n
j.p = n
b.p = e
e.p = b
f.p ... | e" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.p: B = None
self.txt = txt
g = A("g")
j = B("j")
b = A("b")
e = A("e")
f = A("f")
n = B("n")
g.p = e
j.y = n
j.p = n
b.p = e
e.p = b
f.p ... | 6 | 6 | 1 | 0.2 | 2 | 3 | 2 | 1 | 1.5 | 6 | 3 | 3 | 3 | 0.5 | 3 | 0.5 | 4 | 2 | 4 | 2.666667 | 1 | 6 | 6 | 1 |
38 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.x: B = None
self.txt = txt
i = A("i")
j = B("j")
h = A("h")
d = B("d")
g = A("g")
f = A("f")
e = A("e")
i.w = d
j.v = d
j.x = d
h.w = d
d... | d" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.x: B = None
self.txt = txt
i = A("i")
j = B("j")
h = A("h")
d = B("d")
g = A("g")
f = A("f")
e = A("e")
i.w = d
j.v = d
j.x = d
h.w = d
d... | 7 | 7 | 1 | 0.166667 | 2 | 3.5 | 2 | 1 | 1.5 | 7 | 4 | 3 | 3 | 0.428571 | 4 | 0.571429 | 5 | 2 | 6 | 3.111111 | 3 | 4 | 2 | 2 |
39 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.z: A = None
self.txt = txt
d = A("d")
b = B("b")
k = B("k")
g = A("g")
h = B("h")
d.u = h
b.r = h
b.z = g
k.r = h
k.z = d
g.u = b
h.r = b... | b" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.z: A = None
self.txt = txt
d = A("d")
b = B("b")
k = B("k")
g = A("g")
h = B("h")
d.u = h
b.r = h
b.z = g
k.r = h
k.z = d
g.u = b
h.r = b... | 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 | 1 | 1 |
40 | class A:
def __init__(self, txt: str):
self.s: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
h = A("h")
a = B("a")
n = A("n")
e = B("e")
h.s = a
h.o = n
a.v = n
n.s = a
n.o = h
e.v = n
assert n.o.o.o.s.t... | a" | class A:
def __init__(self, txt: str):
self.s: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
h = A("h")
a = B("a")
n = A("n")
e = B("e")
h.s = a
h.o = n
a.v = n
n.s = a
n.o = h
e.v = n
assert n.o.o.o.s.t... | 4 | 6 | 1.5 | 0.5 | 2 | 2 | 2 | 1 | 1.5 | 4 | 2 | 2 | 3 | 0.75 | 3 | 0.5 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 2 |
41 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
k = A("k")
g = B("g")
l = A("l")
f = A("f")
c = B("c")
j = A("j")
n = B("n")
b = B("b")
i = A("i")
k.y = l
g.q = b
l.y = f
f.y = j
c.q ... | c" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
k = A("k")
g = B("g")
l = A("l")
f = A("f")
c = B("c")
j = A("j")
n = B("n")
b = B("b")
i = A("i")
k.y = l
g.q = b
l.y = f
f.y = j
c.q ... | 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 |
42 | class A:
def __init__(self, txt: str):
self.s: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
n = A("n")
a = B("a")
l = A("l")
e = A("e")
j = B("j")
g = A("g")
h = B("h")
n.s = a
n.w = j
a.q = h
l.s = j
l... | a" | class A:
def __init__(self, txt: str):
self.s: B = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
n = A("n")
a = B("a")
l = A("l")
e = A("e")
j = B("j")
g = A("g")
h = B("h")
n.s = a
n.w = j
a.q = h
l.s = j
l... | 7 | 10 | 1.428571 | 0.238095 | 2 | 3.5 | 2 | 1 | 1.5 | 6 | 3 | 2 | 3 | 0.428571 | 3 | 0.3 | 4 | 3 | 6 | 3.6 | 1 | 6 | 6 | 1 |
43 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.t: A = None
self.txt = txt
l = A("l")
b = B("b")
d = A("d")
l.o = d
b.q = d
b.t = l
d.o = l
assert b.t.o.o.txt == " | l" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.t: A = None
self.txt = txt
l = A("l")
b = B("b")
d = A("d")
l.o = d
b.q = d
b.t = l
d.o = l
assert b.t.o.o.txt == "l" | 3 | 4 | 1.333333 | 0.666667 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 1 | 3 | 0.75 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
44 | 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
d = A("d")
h = B("h")
f = B("f")
l = A("l")
k = A("k")
c = B("c")
a = B("a")
j = A("j")
i = B("i")
e = A("e")
d.t = f
h.x = a
f.x = a
l... | f" | 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
d = A("d")
h = B("h")
f = B("f")
l = A("l")
k = A("k")
c = B("c")
a = B("a")
j = A("j")
i = B("i")
e = A("e")
d.t = f
h.x = a
f.x = a
l... | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 6 | 3 | 3 | 3 | 0.3 | 3 | 0.3 | 4 | 2 | 4 | 2.666667 | 1 | 6 | 6 | 1 |
45 | class A:
def __init__(self, txt: str):
self.u: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.y: A = None
self.txt = txt
h = A("h")
g = B("g")
d = A("d")
b = B("b")
e = A("e")
a = A("a")
f = B("f")
l = A("l"... | g" | class A:
def __init__(self, txt: str):
self.u: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.y: A = None
self.txt = txt
h = A("h")
g = B("g")
d = A("d")
b = B("b")
e = A("e")
a = A("a")
f = B("f")
l = A("l"... | 8 | 16 | 2 | 0.285714 | 2 | 4 | 2 | 2 | 2 | 7 | 3 | 2 | 5 | 0.625 | 6 | 0.375 | 3 | 2 | 4 | 3 | 3 | 3 | 2 | 2 |
46 | class A:
def __init__(self, txt: str):
self.w: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
m = A("m")
n = B("n")
g = B("g")
h = A("h")
a = B("a")
e = A("e")
m.w = h
m.p = n
n.t = h
g.t = h
h.w = m
h.p ... | m" | class A:
def __init__(self, txt: str):
self.w: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
m = A("m")
n = B("n")
g = B("g")
h = A("h")
a = B("a")
e = A("e")
m.w = h
m.p = n
n.t = h
g.t = h
h.w = m
h.p ... | 6 | 9 | 1.5 | 0.3 | 2 | 3 | 2 | 1 | 1.5 | 6 | 3 | 2 | 4 | 0.666667 | 5 | 0.555556 | 3 | 2 | 4 | 2.5 | 3 | 3 | 3 | 2 |
47 | 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
j = A("j")
a = B("a")
k = B("k")
m = A("m")
l = B("l")
c = B("c")
e = B("e")
f = B("f")
h = A("h")
g = A("g")
j.r = f
a.s = e
k.s = f
m... | f" | 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
j = A("j")
a = B("a")
k = B("k")
m = A("m")
l = B("l")
c = B("c")
e = B("e")
f = B("f")
h = A("h")
g = A("g")
j.r = f
a.s = e
k.s = f
m... | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 7 | 3 | 3 | 3 | 0.3 | 3 | 0.3 | 5 | 3 | 6 | 3.857143 | 1 | 7 | 7 | 1 |
48 | class A:
def __init__(self, txt: str):
self.q: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
g = A("g")
m = B("m")
j = A("j")
n = B("n")
e = B("e")
g.q = m
g.u = m
m.q = g
j.q = n
j.u = m
n.q = g
e.q = j... | g" | class A:
def __init__(self, txt: str):
self.q: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
g = A("g")
m = B("m")
j = A("j")
n = B("n")
e = B("e")
g.q = m
g.u = m
m.q = g
j.q = n
j.u = m
n.q = g
e.q = j... | 5 | 6 | 1.2 | 0.3 | 2 | 2.5 | 2 | 1 | 1.5 | 5 | 3 | 3 | 2 | 0.4 | 3 | 0.5 | 4 | 2 | 4 | 2.666667 | 2 | 4 | 3 | 2 |
49 | class A:
def __init__(self, txt: str):
self.w: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
c = A("c")
g = B("g")
f = B("f")
m = B("m")
c.w = m
c.z = f
g.r = m
f.r = m
m.r = g
assert c.z.r.r.r.txt == " | m" | class A:
def __init__(self, txt: str):
self.w: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
c = A("c")
g = B("g")
f = B("f")
m = B("m")
c.w = m
c.z = f
g.r = m
f.r = m
m.r = g
assert c.z.r.r.r.txt == "m... | 4 | 5 | 1.25 | 0.416667 | 2 | 2 | 2 | 1 | 1.5 | 4 | 2 | 1 | 4 | 1 | 4 | 0.8 | 1 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
50 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.r: B = None
self.txt = txt
m = A("m")
j = B("j")
a = B("a")
l = B("l")
n = B("n")
e = A("e")
i = A("i")
b = A("b")
m.z = j
j.w = a
j.r = ... | l" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.r: B = None
self.txt = txt
m = A("m")
j = B("j")
a = B("a")
l = B("l")
n = B("n")
e = A("e")
i = A("i")
b = A("b")
m.z = j
j.w = a
j.r = ... | 8 | 10 | 1.25 | 0.178571 | 2 | 4 | 2 | 1 | 1.5 | 6 | 2 | 2 | 5 | 0.625 | 5 | 0.5 | 2 | 4 | 4 | 4 | 3 | 3 | 3 | 1 |
51 | class A:
def __init__(self, txt: str):
self.y: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.q: A = None
self.txt = txt
a = A("a")
n = B("n")
d = B("d")
b = A("b")
g = A("g")
e = A("e")
h = B("h")
a.y = g
... | e" | class A:
def __init__(self, txt: str):
self.y: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.q: A = None
self.txt = txt
a = A("a")
n = B("n")
d = B("d")
b = A("b")
g = A("g")
e = A("e")
h = B("h")
a.y = g
... | 7 | 14 | 2 | 0.333333 | 2 | 3.5 | 2 | 2 | 2 | 5 | 2 | 2 | 4 | 0.571429 | 4 | 0.285714 | 2 | 4 | 4 | 4 | 2 | 4 | 2 | 1 |
52 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.v: A = None
self.txt = txt
i = A("i")
j = B("j")
l = A("l")
g = A("g")
m = A("m")
n = B("n")
f = B("f")
a = B("a")
e = B("e")
i.y = f
j.s... | f" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.v: A = None
self.txt = txt
i = A("i")
j = B("j")
l = A("l")
g = A("g")
m = A("m")
n = B("n")
f = B("f")
a = B("a")
e = B("e")
i.y = f
j.s... | 9 | 14 | 1.555556 | 0.194444 | 2 | 4.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.333333 | 3 | 0.214286 | 1 | 3 | 3 | 3 | 1 | 3 | 3 | 1 |
53 | class A:
def __init__(self, txt: str):
self.v: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
d = A("d")
l = B("l")
j = A("j")
m = A("m")
k = B("k")
b = A("b")
e = B("e")
g = B("g")
i = A("i")
d.v = k
d.s... | k" | class A:
def __init__(self, txt: str):
self.v: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
d = A("d")
l = B("l")
j = A("j")
m = A("m")
k = B("k")
b = A("b")
e = B("e")
g = B("g")
i = A("i")
d.v = k
d.s... | 9 | 14 | 1.555556 | 0.194444 | 2 | 4.5 | 2 | 1 | 1.5 | 6 | 3 | 2 | 4 | 0.444444 | 4 | 0.285714 | 3 | 2 | 4 | 2.5 | 1 | 6 | 6 | 1 |
54 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
i = A("i")
h = B("h")
m = A("m")
j = B("j")
b = A("b")
c = A("c")
l = A("l")
d = B("d")
i.o = l
h.v = d
m.o = c
j.v = h
b.o = i
c.o = l... | i" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
i = A("i")
h = B("h")
m = A("m")
j = B("j")
b = A("b")
c = A("c")
l = A("l")
d = B("d")
i.o = l
h.v = d
m.o = c
j.v = h
b.o = i
c.o = l... | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 6 | 2 | 2 | 4 | 0.5 | 4 | 0.5 | 3 | 3 | 3 | 3 | 1 | 6 | 6 | 1 |
55 | class A:
def __init__(self, txt: str):
self.o: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
k = A("k")
a = B("a")
c = B("c")
e = B("e")
l = B("l")
j = A("j")
h = A("h")
i = B("i")
d = A("d")
k.o = j
k.r... | i" | class A:
def __init__(self, txt: str):
self.o: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
k = A("k")
a = B("a")
c = B("c")
e = B("e")
l = B("l")
j = A("j")
h = A("h")
i = B("i")
d = A("d")
k.o = j
k.r... | 9 | 13 | 1.444444 | 0.180556 | 2 | 4.5 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.222222 | 2 | 0.153846 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
56 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.y: B = None
self.txt = txt
a = A("a")
n = B("n")
k = A("k")
d = A("d")
i = B("i")
a.w = k
n.x = i
n.y = i
k.w = d
d.w = k
i.x = n
i.y = n... | k" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.y: B = None
self.txt = txt
a = A("a")
n = B("n")
k = A("k")
d = A("d")
i = B("i")
a.w = k
n.x = i
n.y = i
k.w = d
d.w = k
i.x = n
i.y = n... | 5 | 5 | 1 | 0.25 | 2 | 2.5 | 2 | 1 | 1.5 | 5 | 3 | 3 | 2 | 0.4 | 2 | 0.4 | 4 | 2 | 4 | 2.666667 | 1 | 5 | 5 | 1 |
57 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.p: A = None
self.txt = txt
d = A("d")
k = B("k")
h = A("h")
l = B("l")
e = A("e")
b = B("b")
i = A("i")
d.z = b
k.u = d
k.p = h
h.z = l
l... | l" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.p: A = None
self.txt = txt
d = A("d")
k = B("k")
h = A("h")
l = B("l")
e = A("e")
b = B("b")
i = A("i")
d.z = b
k.u = d
k.p = h
h.z = l
l... | 7 | 9 | 1.285714 | 0.214286 | 2 | 3.5 | 2 | 1 | 1.5 | 5 | 3 | 2 | 3 | 0.428571 | 4 | 0.444444 | 3 | 2 | 4 | 2.5 | 3 | 3 | 1 | 2 |
58 | class A:
def __init__(self, txt: str):
self.v: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.x: B = None
self.txt = txt
g = A("g")
j = B("j")
c = A("c")
l = B("l")
m = A("m")
f = B("f")
e = A("e")
k = A("k"... | k" | class A:
def __init__(self, txt: str):
self.v: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.x: B = None
self.txt = txt
g = A("g")
j = B("j")
c = A("c")
l = B("l")
m = A("m")
f = B("f")
e = A("e")
k = A("k"... | 9 | 18 | 2 | 0.25 | 2 | 4.5 | 2 | 2 | 2 | 3 | 2 | 1 | 3 | 0.333333 | 3 | 0.166667 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 |
59 | class A:
def __init__(self, txt: str):
self.r: B = None
self.w: 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 = A("k")
b = B("b")
d = B("d")
n = B("n")
m = B("m"... | k" | class A:
def __init__(self, txt: str):
self.r: B = None
self.w: 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 = A("k")
b = B("b")
d = B("d")
n = B("n")
m = B("m"... | 9 | 18 | 2 | 0.25 | 2 | 4.5 | 2 | 2 | 2 | 7 | 2 | 2 | 6 | 0.666667 | 6 | 0.333333 | 2 | 4 | 4 | 4 | 3 | 4 | 2 | 1 |
60 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.u: B = None
self.txt = txt
g = A("g")
b = B("b")
k = B("k")
a = A("a")
g.r = a
b.p = g
b.u = k
k.p = a
k.u = b
a.r = g
assert b.p.r.r.r.t... | a" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.u: B = None
self.txt = txt
g = A("g")
b = B("b")
k = B("k")
a = A("a")
g.r = a
b.p = g
b.u = k
k.p = a
k.u = b
a.r = g
assert b.p.r.r.r.t... | 4 | 6 | 1.5 | 0.5 | 2 | 2 | 2 | 1 | 1.5 | 4 | 2 | 2 | 3 | 0.75 | 3 | 0.5 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
61 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.z: A = None
self.txt = txt
e = A("e")
j = B("j")
n = A("n")
i = B("i")
l = B("l")
e.p = j
j.s = i
j.z = e
n.p = l
i.s = j
i.z = e
l.s = j... | l" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.z: A = None
self.txt = txt
e = A("e")
j = B("j")
n = A("n")
i = B("i")
l = B("l")
e.p = j
j.s = i
j.z = e
n.p = l
i.s = j
i.z = e
l.s = j... | 5 | 8 | 1.6 | 0.4 | 2 | 2.5 | 2 | 1 | 1.5 | 4 | 3 | 2 | 2 | 0.4 | 2 | 0.25 | 3 | 2 | 4 | 2.5 | 2 | 2 | 1 | 1 |
62 | class A:
def __init__(self, txt: str):
self.u: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
h = B("h")
a = A("a")
c.u = a
c.s = a
h.s = a
a.u = c
a.s = c
assert h.s.s.s.txt == " | a" | class A:
def __init__(self, txt: str):
self.u: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
h = B("h")
a = A("a")
c.u = a
c.s = a
h.s = a
a.u = c
a.s = c
assert h.s.s.s.txt == "a" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
63 | 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.v: A = None
self.txt = txt
h = A("h")
m = B("m")
g = A("g")
h.o = m
h.r = g
m.v = g
g.o = m
g.r = h
assert h.r.r.r.txt == " | g" | 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.v: A = None
self.txt = txt
h = A("h")
m = B("m")
g = A("g")
h.o = m
h.r = g
m.v = g
g.o = m
g.r = h
assert h.r.r.r.txt == "g" | 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 |
64 | class A:
def __init__(self, txt: str):
self.v: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.q: B = None
self.txt = txt
k = A("k")
m = B("m")
d = B("d")
g = A("g")
k.v = m
k.y = d
m.p = g
m.q = d
d.p = g
d... | m" | class A:
def __init__(self, txt: str):
self.v: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.q: B = None
self.txt = txt
k = A("k")
m = B("m")
d = B("d")
g = A("g")
k.v = m
k.y = d
m.p = g
m.q = d
d.p = g
d... | 4 | 8 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 2 | 4 | 2 | 1 | 3 | 0.75 | 4 | 0.5 | 2 | 2 | 3 | 2.5 | 3 | 2 | 2 | 2 |
65 | class A:
def __init__(self, txt: str):
self.o: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
l = A("l")
n = B("n")
j = A("j")
k = A("k")
m = B("m")
g = A("g")
l.o = n
l.q = k
n.x = l
j.o = m
j.q = l
k.o ... | n" | class A:
def __init__(self, txt: str):
self.o: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
l = A("l")
n = B("n")
j = A("j")
k = A("k")
m = B("m")
g = A("g")
l.o = n
l.q = k
n.x = l
j.o = m
j.q = l
k.o ... | 6 | 10 | 1.666667 | 0.333333 | 2 | 3 | 2 | 1 | 1.5 | 4 | 3 | 2 | 2 | 0.333333 | 2 | 0.2 | 3 | 2 | 4 | 2.5 | 2 | 2 | 1 | 1 |
66 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
n = A("n")
c = B("c")
m = A("m")
g = B("g")
n.p = m
c.t = m
m.p = n
g.t = n
assert c.t.p.p.p.txt == " | n" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
n = A("n")
c = B("c")
m = A("m")
g = B("g")
n.p = m
c.t = m
m.p = n
g.t = n
assert c.t.p.p.p.txt == "n" | 4 | 4 | 1 | 0.333333 | 2 | 2 | 1 | 1 | 1 | 4 | 2 | 2 | 3 | 0.75 | 3 | 0.75 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
67 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.x: A = None
self.txt = txt
f = A("f")
j = B("j")
i = A("i")
g = B("g")
e = B("e")
h = B("h")
d = A("d")
k = B("k")
l = A("l")
f.x = d
j.q... | f" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.x: A = None
self.txt = txt
f = A("f")
j = B("j")
i = A("i")
g = B("g")
e = B("e")
h = B("h")
d = A("d")
k = B("k")
l = A("l")
f.x = d
j.q... | 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 | 1 | 9 | 9 | 1 |
68 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.u: B = None
self.txt = txt
c = A("c")
i = B("i")
l = B("l")
c.o = l
i.s = c
i.u = l
l.s = c
l.u = i
assert l.s.o.s.txt == " | c" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.u: B = None
self.txt = txt
c = A("c")
i = B("i")
l = B("l")
c.o = l
i.s = c
i.u = l
l.s = c
l.u = i
assert l.s.o.s.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 |
69 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.v: A = None
self.txt = txt
j = A("j")
l = B("l")
n = B("n")
b = B("b")
e = A("e")
c = B("c")
j.z = e
l.s = e
l.v = e
n.s = e
n.v = j
b.s ... | j" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.v: A = None
self.txt = txt
j = A("j")
l = B("l")
n = B("n")
b = B("b")
e = A("e")
c = B("c")
j.z = e
l.s = e
l.v = e
n.s = e
n.v = j
b.s ... | 6 | 8 | 1.333333 | 0.266667 | 2 | 3 | 2 | 1 | 1.5 | 6 | 3 | 3 | 3 | 0.5 | 3 | 0.375 | 4 | 2 | 4 | 2.666667 | 2 | 5 | 5 | 1 |
70 | class A:
def __init__(self, txt: str):
self.x: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.o: B = None
self.txt = txt
d = A("d")
k = B("k")
a = A("a")
m = B("m")
h = B("h")
n = B("n")
c = A("c")
j = A("j"... | e" | class A:
def __init__(self, txt: str):
self.x: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.o: B = None
self.txt = txt
d = A("d")
k = B("k")
a = A("a")
m = B("m")
h = B("h")
n = B("n")
c = A("c")
j = A("j"... | 10 | 18 | 1.8 | 0.2 | 2 | 5 | 2 | 2 | 2 | 10 | 4 | 2 | 5 | 0.5 | 7 | 0.388889 | 6 | 2 | 8 | 4.4 | 2 | 5 | 3 | 2 |
71 | 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.o: A = None
self.txt = txt
a = A("a")
d = B("d")
i = A("i")
b = A("b")
a.x = d
a.z = i
d.o = b
i.x = d
i.z = b
b.x = d
b.z = i
assert b.z... | 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.o: A = None
self.txt = txt
a = A("a")
d = B("d")
i = A("i")
b = A("b")
a.x = d
a.z = i
d.o = b
i.x = d
i.z = b
b.x = d
b.z = i
assert b.z... | 4 | 7 | 1.75 | 0.583333 | 2 | 2 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.428571 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 |
72 | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
a = A("a")
j = B("j")
c = A("c")
e = A("e")
g = B("g")
m = A("m")
i = B("i")
f = A("f")
a.z = g
a.s = g
j.s = ... | c" | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
a = A("a")
j = B("j")
c = A("c")
e = A("e")
g = B("g")
m = A("m")
i = B("i")
f = A("f")
a.z = g
a.s = g
j.s = ... | 8 | 10 | 1.25 | 0.178571 | 2 | 4 | 2 | 1 | 1.5 | 4 | 3 | 2 | 2 | 0.25 | 2 | 0.2 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
73 | class A:
def __init__(self, txt: str):
self.x: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.s: A = None
self.txt = txt
m = A("m")
i = B("i")
k = A("k")
e = A("e")
n = A("n")
h = B("h")
m.x = e
m.t = i
i.p... | n" | class A:
def __init__(self, txt: str):
self.x: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.s: A = None
self.txt = txt
m = A("m")
i = B("i")
k = A("k")
e = A("e")
n = A("n")
h = B("h")
m.x = e
m.t = i
i.p... | 6 | 11 | 1.833333 | 0.366667 | 2 | 3 | 2 | 2 | 2 | 6 | 3 | 2 | 4 | 0.666667 | 5 | 0.454545 | 3 | 2 | 5 | 3.75 | 4 | 2 | 1 | 2 |
74 | class A:
def __init__(self, txt: str):
self.y: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
a = A("a")
c = B("c")
b = B("b")
e = A("e")
a.y = c
a.v = e
c.s = b
b.s = c
e.y = c
e.v = a
assert b.s.s.s.txt... | c" | class A:
def __init__(self, txt: str):
self.y: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
a = A("a")
c = B("c")
b = B("b")
e = A("e")
a.y = c
a.v = e
c.s = b
b.s = c
e.y = c
e.v = a
assert b.s.s.s.txt... | 4 | 6 | 1.5 | 0.5 | 2 | 2 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.5 | 2 | 0.333333 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
75 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
n = A("n")
f = B("f")
d = A("d")
n.r = d
f.u = n
d.r = n
assert d.r.r.r.txt == " | n" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
n = A("n")
f = B("f")
d = A("d")
n.r = d
f.u = n
d.r = n
assert d.r.r.r.txt == "n" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 1 | 1 | 1 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
76 | class A:
def __init__(self, txt: str):
self.q: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: B = None
self.txt = txt
m = A("m")
i = B("i")
k = B("k")
c = A("c")
n = B("n")
b = B("b")
g = B("g")
j = B("j"... | b" | class A:
def __init__(self, txt: str):
self.q: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: B = None
self.txt = txt
m = A("m")
i = B("i")
k = B("k")
c = A("c")
n = B("n")
b = B("b")
g = B("g")
j = B("j"... | 10 | 20 | 2 | 0.222222 | 2 | 5 | 2 | 2 | 2 | 8 | 3 | 2 | 6 | 0.6 | 7 | 0.35 | 3 | 2 | 7 | 5.25 | 3 | 4 | 2 | 2 |
77 | 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.r: B = None
self.txt = txt
g = A("g")
b = B("b")
d = B("d")
m = A("m")
i = B("i")
e = A("e")
a = A("a")
k = B("k")
g.s = k
g.v = m
b.r = ... | d" | 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.r: B = None
self.txt = txt
g = A("g")
b = B("b")
d = B("d")
m = A("m")
i = B("i")
e = A("e")
a = A("a")
k = B("k")
g.s = k
g.v = m
b.r = ... | 8 | 12 | 1.5 | 0.214286 | 2 | 4 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.25 | 2 | 0.166667 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
78 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.z: A = None
self.txt = txt
i = A("i")
c = B("c")
h = A("h")
a = A("a")
i.w = h
c.r = a
c.z = h
h.w = i
a.w = i
assert a.w.w.w.w.txt == " | h" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.z: A = None
self.txt = txt
i = A("i")
c = B("c")
h = A("h")
a = A("a")
i.w = h
c.r = a
c.z = h
h.w = i
a.w = i
assert a.w.w.w.w.txt == "h... | 4 | 5 | 1.25 | 0.416667 | 2 | 2 | 2 | 1 | 1.5 | 4 | 2 | 2 | 3 | 0.75 | 3 | 0.6 | 2 | 2 | 2 | 2 | 1 | 4 | 4 | 1 |
79 | class A:
def __init__(self, txt: str):
self.v: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.u: A = None
self.txt = txt
g = A("g")
l = B("l")
m = A("m")
b = A("b")
h = B("h")
n = B("n")
g.v = l
g.u = h
l.z... | m" | class A:
def __init__(self, txt: str):
self.v: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.u: A = None
self.txt = txt
g = A("g")
l = B("l")
m = A("m")
b = A("b")
h = B("h")
n = B("n")
g.v = l
g.u = h
l.z... | 6 | 11 | 1.833333 | 0.366667 | 2 | 3 | 2 | 2 | 2 | 4 | 2 | 1 | 4 | 0.666667 | 4 | 0.363636 | 1 | 4 | 4 | 4 | 2 | 2 | 1 | 1 |
80 | class A:
def __init__(self, txt: str):
self.z: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.o: A = None
self.txt = txt
j = A("j")
b = B("b")
h = A("h")
d = B("d")
e = B("e")
i = B("i")
l = B("l")
a = B("a"... | j" | class A:
def __init__(self, txt: str):
self.z: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.o: A = None
self.txt = txt
j = A("j")
b = B("b")
h = A("h")
d = B("d")
e = B("e")
i = B("i")
l = B("l")
a = B("a"... | 8 | 16 | 2 | 0.285714 | 2 | 4 | 2 | 2 | 2 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.25 | 1 | 2 | 2 | 2 | 2 | 3 | 2 | 1 |
81 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
h = A("h")
l = B("l")
m = A("m")
f = B("f")
d = B("d")
b = A("b")
c = B("c")
n = B("n")
g = B("g")
h.v = m
l.s = f
m.v = h
f.s = d
d.s ... | f" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
h = A("h")
l = B("l")
m = A("m")
f = B("f")
d = B("d")
b = A("b")
c = B("c")
n = B("n")
g = B("g")
h.v = m
l.s = f
m.v = h
f.s = d
d.s ... | 9 | 9 | 1 | 0.125 | 2 | 4.5 | 1 | 1 | 1 | 5 | 2 | 1 | 5 | 0.555556 | 5 | 0.555556 | 1 | 3 | 3 | 3 | 1 | 5 | 5 | 1 |
82 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
i = A("i")
a = B("a")
h = A("h")
i.r = a
a.u = i
h.r = a
assert a.u.r.u.txt == " | i" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
i = A("i")
a = B("a")
h = A("h")
i.r = a
a.u = i
h.r = a
assert a.u.r.u.txt == "i" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 1 | 1 | 1 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
83 | 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
a = A("a")
h = B("h")
k = B("k")
j = A("j")
g = B("g")
b = A("b")
i = B("i")
l = A("l")
c = A("c")
n = A("n")
a.o = j
h.r = a
k.r = l
j... | j" | 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
a = A("a")
h = B("h")
k = B("k")
j = A("j")
g = B("g")
b = A("b")
i = B("i")
l = A("l")
c = A("c")
n = A("n")
a.o = j
h.r = a
k.r = l
j... | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 6 | 3 | 3 | 3 | 0.3 | 3 | 0.3 | 4 | 2 | 4 | 2.666667 | 1 | 6 | 6 | 1 |
84 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.z: B = None
self.txt = txt
j = A("j")
a = B("a")
n = B("n")
c = B("c")
i = B("i")
d = B("d")
j.o = i
a.t = d
a.z = d
n.t = i
n.z = a
c.t ... | a" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.z: B = None
self.txt = txt
j = A("j")
a = B("a")
n = B("n")
c = B("c")
i = B("i")
d = B("d")
j.o = i
a.t = d
a.z = d
n.t = i
n.z = a
c.t ... | 6 | 10 | 1.666667 | 0.333333 | 2 | 3 | 2 | 1 | 1.5 | 3 | 1 | 1 | 4 | 0.666667 | 3 | 0.3 | 0 | null | null | null | 2 | 2 | 1 | 1 |
85 | 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.x: B = None
self.txt = txt
i = A("i")
m = B("m")
a = B("a")
f = A("f")
e = A("e")
d = A("d")
g = B("g")
i.o = m
m.u = a
m.x = g
a.u = m
a... | m" | 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.x: B = None
self.txt = txt
i = A("i")
m = B("m")
a = B("a")
f = A("f")
e = A("e")
d = A("d")
g = B("g")
i.o = m
m.u = a
m.x = g
a.u = m
a... | 7 | 10 | 1.428571 | 0.238095 | 2 | 3.5 | 2 | 1 | 1.5 | 4 | 2 | 2 | 3 | 0.428571 | 3 | 0.3 | 2 | 2 | 2 | 2 | 3 | 2 | 1 | 1 |
86 | class A:
def __init__(self, txt: str):
self.v: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.t: A = None
self.txt = txt
i = A("i")
e = B("e")
b = A("b")
a = A("a")
f = A("f")
h = A("h")
d = B("d")
j = A("j"... | d" | class A:
def __init__(self, txt: str):
self.v: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.t: A = None
self.txt = txt
i = A("i")
e = B("e")
b = A("b")
a = A("a")
f = A("f")
h = A("h")
d = B("d")
j = A("j"... | 8 | 16 | 2 | 0.285714 | 2 | 4 | 2 | 2 | 2 | 4 | 2 | 1 | 3 | 0.375 | 4 | 0.25 | 2 | 2 | 3 | 2.5 | 3 | 2 | 2 | 2 |
87 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
a = A("a")
b = B("b")
k = B("k")
d = A("d")
n = B("n")
c = A("c")
a.t = b
b.w = c
k.w = d
d.t = b
n.w = a
c.t = b
assert c.t.w.t.w.t.tx... | b" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
a = A("a")
b = B("b")
k = B("k")
d = A("d")
n = B("n")
c = A("c")
a.t = b
b.w = c
k.w = d
d.t = b
n.w = a
c.t = b
assert c.t.w.t.w.t.tx... | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 5 | 3 | 3 | 2 | 0.333333 | 2 | 0.333333 | 4 | 2 | 4 | 2.666667 | 2 | 3 | 1 | 1 |
88 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.o: A = None
self.txt = txt
b = A("b")
h = B("h")
n = B("n")
m = A("m")
j = A("j")
g = B("g")
d = A("d")
i = B("i")
b.u = j
h.p = n
h.o = ... | d" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.o: A = None
self.txt = txt
b = A("b")
h = B("h")
n = B("n")
m = A("m")
j = A("j")
g = B("g")
d = A("d")
i = B("i")
b.u = j
h.p = n
h.o = ... | 8 | 12 | 1.5 | 0.214286 | 2 | 4 | 2 | 1 | 1.5 | 8 | 3 | 3 | 4 | 0.5 | 4 | 0.333333 | 5 | 3 | 6 | 3.857143 | 2 | 7 | 7 | 1 |
89 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.o: A = None
self.txt = txt
b = A("b")
j = B("j")
l = A("l")
b.z = l
j.p = l
j.o = l
l.z = b
assert l.z.z.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.o: A = None
self.txt = txt
b = A("b")
j = B("j")
l = A("l")
b.z = l
j.p = l
j.o = l
l.z = b
assert l.z.z.z.txt == "b" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
90 | class A:
def __init__(self, txt: str):
self.s: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.w: A = None
self.txt = txt
k = A("k")
f = B("f")
n = A("n")
j = B("j")
m = A("m")
b = A("b")
e = B("e")
d = B("d"... | j" | class A:
def __init__(self, txt: str):
self.s: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.w: A = None
self.txt = txt
k = A("k")
f = B("f")
n = A("n")
j = B("j")
m = A("m")
b = A("b")
e = B("e")
d = B("d"... | 8 | 15 | 1.875 | 0.267857 | 2 | 4 | 2 | 2 | 2 | 5 | 2 | 2 | 4 | 0.5 | 4 | 0.266667 | 2 | 3 | 3 | 3 | 3 | 2 | 1 | 1 |
91 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
f = A("f")
m = B("m")
g = B("g")
e = A("e")
f.y = e
m.p = g
g.p = m
e.y = f
assert e.y.y.y.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
f = A("f")
m = B("m")
g = B("g")
e = A("e")
f.y = e
m.p = g
g.p = m
e.y = f
assert e.y.y.y.y.txt == "e" | 4 | 4 | 1 | 0.333333 | 2 | 2 | 1 | 1 | 1 | 4 | 3 | 2 | 2 | 0.5 | 2 | 0.5 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
92 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.w: B = None
self.txt = txt
j = A("j")
a = B("a")
f = B("f")
d = B("d")
b = B("b")
h = A("h")
e = B("e")
m = B("m")
i = B("i")
n = B("n")
... | m" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.w: B = None
self.txt = txt
j = A("j")
a = B("a")
f = B("f")
d = B("d")
b = B("b")
h = A("h")
e = B("e")
m = B("m")
i = B("i")
n = B("n")
... | 10 | 17 | 1.7 | 0.188889 | 2 | 5 | 2 | 1 | 1.5 | 8 | 3 | 2 | 4 | 0.4 | 6 | 0.352941 | 5 | 2 | 7 | 3.714286 | 3 | 4 | 2 | 2 |
93 | class A:
def __init__(self, txt: str):
self.t: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.t: A = None
self.txt = txt
m = A("m")
b = B("b")
k = B("k")
e = A("e")
m.t = e
m.y = e
b.q = e
b.t = e
k.q = m
k... | e" | class A:
def __init__(self, txt: str):
self.t: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.t: A = None
self.txt = txt
m = A("m")
b = B("b")
k = B("k")
e = A("e")
m.t = e
m.y = e
b.q = e
b.t = e
k.q = m
k... | 4 | 5 | 1.25 | 0.416667 | 2 | 2 | 2 | 2 | 2 | 4 | 2 | 1 | 3 | 0.75 | 4 | 0.8 | 2 | 2 | 2 | 2 | 3 | 2 | 2 | 2 |
94 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
b = A("b")
l = B("l")
f = A("f")
h = A("h")
n = B("n")
k = B("k")
b.s = h
l.p = k
f.s = b
h.s = f
n.p = k
k.p = l
assert k.p.p.p.p.txt ... | k" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
b = A("b")
l = B("l")
f = A("f")
h = A("h")
n = B("n")
k = B("k")
b.s = h
l.p = k
f.s = b
h.s = f
n.p = k
k.p = l
assert k.p.p.p.p.txt ... | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 4 | 3 | 2 | 2 | 0.333333 | 2 | 0.333333 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
95 | 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
n = A("n")
f = B("f")
m = A("m")
j = A("j")
e = B("e")
l = A("l")
k = B("k")
a = A("a")
h = A("h")
n.u = f
f.p = k
m.u = f
j.u = e
e.p ... | f" | 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
n = A("n")
f = B("f")
m = A("m")
j = A("j")
e = B("e")
l = A("l")
k = B("k")
a = A("a")
h = A("h")
n.u = f
f.p = k
m.u = f
j.u = e
e.p ... | 9 | 9 | 1 | 0.125 | 2 | 4.5 | 1 | 1 | 1 | 4 | 2 | 1 | 4 | 0.444444 | 4 | 0.444444 | 1 | 3 | 3 | 3 | 2 | 3 | 3 | 1 |
96 | 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
f = A("f")
d = B("d")
a = B("a")
j = A("j")
i = A("i")
k = B("k")
b = A("b")
f.v = j
d.p = a
a.p = d
j.v = i
i.v = b
k.p = a
b.v = i
as... | i" | 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
f = A("f")
d = B("d")
a = B("a")
j = A("j")
i = A("i")
k = B("k")
b = A("b")
f.v = j
d.p = a
a.p = d
j.v = i
i.v = b
k.p = a
b.v = i
as... | 7 | 7 | 1 | 0.166667 | 2 | 3.5 | 1 | 1 | 1 | 7 | 4 | 4 | 2 | 0.285714 | 2 | 0.285714 | 6 | 2 | 6 | 3.333333 | 1 | 7 | 7 | 1 |
97 | class A:
def __init__(self, txt: str):
self.u: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.q: A = None
self.txt = txt
m = A("m")
a = B("a")
j = B("j")
i = A("i")
l = B("l")
m.u = a
m.w = i
a.x = m
a.q = ... | i" | class A:
def __init__(self, txt: str):
self.u: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.q: A = None
self.txt = txt
m = A("m")
a = B("a")
j = B("j")
i = A("i")
l = B("l")
m.u = a
m.w = i
a.x = m
a.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 |
98 | 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.v: A = None
self.txt = txt
k = A("k")
j = B("j")
f = A("f")
k.p = j
k.q = j
j.v = k
f.p = j
f.q = j
assert k.p.v.q.txt == " | j" | 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.v: A = None
self.txt = txt
k = A("k")
j = B("j")
f = A("f")
k.p = j
k.q = j
j.v = k
f.p = j
f.q = j
assert k.p.v.q.txt == "j" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 2 | 0.666667 | 3 | 1 | 2 | 2 | 2 | 2 | 3 | 1 | 1 | 2 |
99 | class A:
def __init__(self, txt: str):
self.s: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.s: A = None
self.txt = txt
h = A("h")
n = B("n")
e = A("e")
l = A("l")
i = B("i")
h.s = n
h.y = e
n.o = h
n.s = ... | i" | class A:
def __init__(self, txt: str):
self.s: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.s: A = None
self.txt = txt
h = A("h")
n = B("n")
e = A("e")
l = A("l")
i = B("i")
h.s = n
h.y = e
n.o = h
n.s = ... | 5 | 9 | 1.8 | 0.45 | 2 | 2.5 | 2 | 2 | 2 | 4 | 2 | 1 | 4 | 0.8 | 4 | 0.444444 | 1 | 2 | 2 | 2 | 2 | 3 | 3 | 2 |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 4