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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
600 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
d = A("d")
a = B("a")
e = A("e")
d.w = a
a.v = d
e.w = a
assert a.v.w.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
d = A("d")
a = B("a")
e = A("e")
d.w = a
a.v = d
e.w = a
assert a.v.w.v.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 |
601 | class A:
def __init__(self, txt: str):
self.p: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
c = A("c")
d = B("d")
n = A("n")
c.p = d
c.x = d
d.p = n
n.p = d
n.x = d
assert n.p.p.x.txt == " | d" | class A:
def __init__(self, txt: str):
self.p: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
c = A("c")
d = B("d")
n = A("n")
c.p = d
c.x = d
d.p = n
n.p = d
n.x = d
assert n.p.p.x.txt == "d" | 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 |
602 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
h = A("h")
n = B("n")
f = B("f")
e = A("e")
i = B("i")
h.r = e
n.s = i
f.s = n
e.r = h
i.s = n
assert i.s.s.s.s.s.txt == " | n" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
h = A("h")
n = B("n")
f = B("f")
e = A("e")
i = B("i")
h.r = e
n.s = i
f.s = n
e.r = h
i.s = n
assert i.s.s.s.s.s.txt == "n" | 5 | 5 | 1 | 0.25 | 2 | 2.5 | 1 | 1 | 1 | 5 | 3 | 3 | 2 | 0.4 | 2 | 0.4 | 4 | 2 | 4 | 2.666667 | 1 | 5 | 5 | 1 |
603 | 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.txt = txt
h = A("h")
i = B("i")
e = A("e")
d = A("d")
m = B("m")
h.t = i
i.u = m
e.t = m
d.t = m
m.u = i
assert e.t.u.u.u.u.txt == " | m" | 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.txt = txt
h = A("h")
i = B("i")
e = A("e")
d = A("d")
m = B("m")
h.t = i
i.u = m
e.t = m
d.t = m
m.u = i
assert e.t.u.u.u.u.txt == "m" | 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 | 4 | 4 | 1 |
604 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
i = A("i")
f = B("f")
a = B("a")
l = B("l")
b = B("b")
g = B("g")
e = A("e")
i.s = b
f.r = b
a.r = l
l.r = g
b.r = l
g.r = f
e.s = b
as... | l" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
i = A("i")
f = B("f")
a = B("a")
l = B("l")
b = B("b")
g = B("g")
e = A("e")
i.s = b
f.r = b
a.r = l
l.r = g
b.r = l
g.r = f
e.s = b
as... | 7 | 7 | 1 | 0.166667 | 2 | 3.5 | 1 | 1 | 1 | 7 | 2 | 2 | 4 | 0.571429 | 4 | 0.571429 | 4 | 4 | 4 | 4 | 1 | 7 | 7 | 1 |
605 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
a = A("a")
n = B("n")
h = A("h")
d = A("d")
g = B("g")
m = A("m")
c = A("c")
f = A("f")
e = B("e")
a.x = e
n.r = h
h.x = e
d.x = e
g.r ... | h" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
a = A("a")
n = B("n")
h = A("h")
d = A("d")
g = B("g")
m = A("m")
c = A("c")
f = A("f")
e = B("e")
a.x = e
n.r = h
h.x = e
d.x = e
g.r ... | 9 | 9 | 1 | 0.125 | 2 | 4.5 | 1 | 1 | 1 | 4 | 2 | 2 | 3 | 0.333333 | 3 | 0.333333 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
606 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.w: A = None
self.txt = txt
j = A("j")
m = B("m")
g = A("g")
j.v = g
m.z = j
m.w = g
g.v = j
assert g.v.v.v.txt == " | j" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.w: A = None
self.txt = txt
j = A("j")
m = B("m")
g = A("g")
j.v = g
m.z = j
m.w = g
g.v = j
assert g.v.v.v.txt == "j" | 3 | 4 | 1.333333 | 0.666667 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.5 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
607 | class A:
def __init__(self, txt: str):
self.s: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.w: A = None
self.txt = txt
k = A("k")
c = B("c")
g = A("g")
a = B("a")
k.s = a
k.w = g
c.t = a
c.w = g
g.s = c
g... | a" | class A:
def __init__(self, txt: str):
self.s: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.w: A = None
self.txt = txt
k = A("k")
c = B("c")
g = A("g")
a = B("a")
k.s = a
k.w = g
c.t = a
c.w = g
g.s = c
g... | 4 | 8 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 2 | 3 | 1 | 1 | 4 | 1 | 3 | 0.375 | 0 | null | null | null | 3 | 1 | 1 | 1 |
608 | 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.txt = txt
i = A("i")
d = B("d")
a = A("a")
l = A("l")
h = B("h")
m = A("m")
i.q = m
d.o = l
a.q = i
l.q = m
h.o = a
m.q = a
assert m.q.q.q.q.q.q.... | m" | 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.txt = txt
i = A("i")
d = B("d")
a = A("a")
l = A("l")
h = B("h")
m = A("m")
i.q = m
d.o = l
a.q = i
l.q = m
h.o = a
m.q = a
assert m.q.q.q.q.q.q.... | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 6 | 3 | 2 | 3 | 0.5 | 3 | 0.5 | 4 | 3 | 6 | 3.6 | 1 | 6 | 6 | 1 |
609 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
g = A("g")
l = B("l")
a = B("a")
j = A("j")
k = A("k")
i = B("i")
g.s = k
l.s = a
a.s = l
j.s = k
k.s = j
i.s = a
assert g.s.s.s.s.s.tx... | k" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
g = A("g")
l = B("l")
a = B("a")
j = A("j")
k = A("k")
i = B("i")
g.s = k
l.s = a
a.s = l
j.s = k
k.s = j
i.s = a
assert g.s.s.s.s.s.tx... | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 5 | 3 | 2 | 3 | 0.5 | 3 | 0.5 | 3 | 2 | 4 | 2.5 | 1 | 5 | 5 | 1 |
610 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.p: A = None
self.txt = txt
e = A("e")
l = B("l")
n = A("n")
e.q = l
l.t = n
l.p = e
n.q = l
assert n.q.t.q.txt == " | l" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.p: A = None
self.txt = txt
e = A("e")
l = B("l")
n = A("n")
e.q = l
l.t = n
l.p = e
n.q = l
assert n.q.t.q.txt == "l" | 3 | 4 | 1.333333 | 0.666667 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.5 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
611 | class A:
def __init__(self, txt: str):
self.z: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.v: B = None
self.txt = txt
j = A("j")
b = B("b")
e = B("e")
m = A("m")
j.z = m
j.o = e
b.t = e
b.v = e
e.t = b
e... | b" | class A:
def __init__(self, txt: str):
self.z: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.v: B = None
self.txt = txt
j = A("j")
b = B("b")
e = B("e")
m = A("m")
j.z = m
j.o = e
b.t = e
b.v = e
e.t = b
e... | 4 | 6 | 1.5 | 0.5 | 2 | 2 | 2 | 2 | 2 | 4 | 3 | 2 | 2 | 0.5 | 2 | 0.333333 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
612 | 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.v: B = None
self.txt = txt
h = A("h")
d = B("d")
f = A("f")
c = A("c")
b = A("b")
i = A("i")
m = B("m")
j = A("j")
g = A("g")
l = A("l")
... | g" | 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.v: B = None
self.txt = txt
h = A("h")
d = B("d")
f = A("f")
c = A("c")
b = A("b")
i = A("i")
m = B("m")
j = A("j")
g = A("g")
l = A("l")
... | 10 | 12 | 1.2 | 0.133333 | 2 | 5 | 2 | 1 | 1.5 | 9 | 2 | 2 | 6 | 0.6 | 6 | 0.5 | 4 | 6 | 6 | 6 | 1 | 9 | 9 | 1 |
613 | class A:
def __init__(self, txt: str):
self.v: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
k = A("k")
j = B("j")
g = B("g")
l = A("l")
a = A("a")
h = A("h")
d = B("d")
e = A("e")
c = B("c")
b = B("b")
... | j" | class A:
def __init__(self, txt: str):
self.v: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
k = A("k")
j = B("j")
g = B("g")
l = A("l")
a = A("a")
h = A("h")
d = B("d")
e = A("e")
c = B("c")
b = B("b")
... | 10 | 15 | 1.5 | 0.166667 | 2 | 5 | 2 | 1 | 1.5 | 10 | 4 | 3 | 6 | 0.6 | 7 | 0.466667 | 5 | 2 | 6 | 3.111111 | 3 | 4 | 2 | 2 |
614 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
a = A("a")
j = B("j")
b = B("b")
e = B("e")
d = B("d")
g = A("g")
c = B("c")
f = A("f")
m = B("m")
h = A("h")
a.o = c
j.y = h
b.y = h
e... | m" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
a = A("a")
j = B("j")
b = B("b")
e = B("e")
d = B("d")
g = A("g")
c = B("c")
f = A("f")
m = B("m")
h = A("h")
a.o = c
j.y = h
b.y = h
e... | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 8 | 4 | 4 | 3 | 0.3 | 3 | 0.3 | 6 | 2 | 6 | 3.333333 | 2 | 4 | 1 | 1 |
615 | class A:
def __init__(self, txt: str):
self.z: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.s: B = None
self.txt = txt
c = A("c")
k = B("k")
a = A("a")
f = B("f")
i = A("i")
c.z = i
c.v = f
k.z = i
k.s = ... | f" | class A:
def __init__(self, txt: str):
self.z: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.s: B = None
self.txt = txt
c = A("c")
k = B("k")
a = A("a")
f = B("f")
i = A("i")
c.z = i
c.v = f
k.z = i
k.s = ... | 5 | 10 | 2 | 0.5 | 2 | 2.5 | 2 | 2 | 2 | 4 | 3 | 2 | 2 | 0.4 | 2 | 0.2 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
616 | class A:
def __init__(self, txt: str):
self.u: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
a = A("a")
j = B("j")
f = B("f")
g = A("g")
k = A("k")
c = B("c")
h = A("h")
e = B("e")
n = A("n")
a.u = g
a.r... | h" | class A:
def __init__(self, txt: str):
self.u: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
a = A("a")
j = B("j")
f = B("f")
g = A("g")
k = A("k")
c = B("c")
h = A("h")
e = B("e")
n = A("n")
a.u = g
a.r... | 9 | 12 | 1.333333 | 0.166667 | 2 | 4.5 | 2 | 1 | 1.5 | 3 | 1 | 1 | 4 | 0.444444 | 3 | 0.25 | 0 | null | null | null | 2 | 2 | 1 | 1 |
617 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
f = A("f")
m = B("m")
c = B("c")
i = B("i")
f.o = m
m.o = i
c.o = i
i.o = c
assert c.o.o.o.txt == " | i" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
f = A("f")
m = B("m")
c = B("c")
i = B("i")
f.o = m
m.o = i
c.o = i
i.o = c
assert c.o.o.o.txt == "i" | 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 |
618 | class A:
def __init__(self, txt: str):
self.y: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
m = A("m")
g = B("g")
k = A("k")
i = A("i")
j = B("j")
f = A("f")
c = A("c")
l = A("l")
m.y = j
m.r = k
g.r = ... | l" | class A:
def __init__(self, txt: str):
self.y: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
m = A("m")
g = B("g")
k = A("k")
i = A("i")
j = B("j")
f = A("f")
c = A("c")
l = A("l")
m.y = j
m.r = k
g.r = ... | 8 | 14 | 1.75 | 0.25 | 2 | 4 | 2 | 1 | 1.5 | 5 | 3 | 2 | 3 | 0.375 | 4 | 0.285714 | 3 | 2 | 5 | 3 | 2 | 3 | 1 | 2 |
619 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
e = A("e")
n = B("n")
m = A("m")
b = A("b")
d = B("d")
h = B("h")
f = A("f")
i = A("i")
j = B("j")
l = B("l")
e.o = b
n.t = d
m.o = f
b... | i" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
e = A("e")
n = B("n")
m = A("m")
b = A("b")
d = B("d")
h = B("h")
f = A("f")
i = A("i")
j = B("j")
l = B("l")
e.o = b
n.t = d
m.o = f
b... | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 4 | 3 | 2 | 2 | 0.2 | 2 | 0.2 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
620 | 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.t: B = None
self.txt = txt
n = A("n")
m = B("m")
g = A("g")
c = B("c")
d = A("d")
a = A("a")
b = A("b")
h = A("h")
f = A("f")
e = A("e")
... | h" | 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.t: B = None
self.txt = txt
n = A("n")
m = B("m")
g = A("g")
c = B("c")
d = A("d")
a = A("a")
b = A("b")
h = A("h")
f = A("f")
e = A("e")
... | 10 | 17 | 1.7 | 0.188889 | 2 | 5 | 2 | 1 | 1.5 | 6 | 1 | 1 | 7 | 0.7 | 6 | 0.352941 | 0 | null | null | null | 2 | 4 | 3 | 1 |
621 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
j = A("j")
k = B("k")
n = B("n")
g = A("g")
i = A("i")
j.s = g
k.w = g
n.w = j
g.s = i
i.s = g
assert g.s.s.s.s.txt == " | g" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
j = A("j")
k = B("k")
n = B("n")
g = A("g")
i = A("i")
j.s = g
k.w = g
n.w = j
g.s = i
i.s = g
assert g.s.s.s.s.txt == "g" | 5 | 5 | 1 | 0.25 | 2 | 2.5 | 1 | 1 | 1 | 4 | 3 | 2 | 2 | 0.4 | 2 | 0.4 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
622 | class A:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: A = None
self.txt = txt
i = A("i")
g = B("g")
l = A("l")
a = B("a")
j = A("j")
n = B("n")
m = B("m")
i.q = m
... | l" | class A:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.s: A = None
self.txt = txt
i = A("i")
g = B("g")
l = A("l")
a = B("a")
j = A("j")
n = B("n")
m = B("m")
i.q = m
... | 7 | 14 | 2 | 0.333333 | 2 | 3.5 | 2 | 2 | 2 | 4 | 2 | 1 | 4 | 0.571429 | 4 | 0.285714 | 1 | 3 | 3 | 3 | 3 | 2 | 2 | 1 |
623 | 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.r: B = None
self.txt = txt
h = A("h")
m = B("m")
n = A("n")
c = A("c")
b = A("b")
d = B("d")
a = A("a")
j = A("j")
k = B("k")
h.x = j
m.q... | h" | 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.r: B = None
self.txt = txt
h = A("h")
m = B("m")
n = A("n")
c = A("c")
b = A("b")
d = B("d")
a = A("a")
j = A("j")
k = B("k")
h.x = j
m.q... | 9 | 11 | 1.222222 | 0.152778 | 2 | 4.5 | 2 | 1 | 1.5 | 6 | 2 | 2 | 4 | 0.444444 | 4 | 0.363636 | 3 | 4 | 4 | 4 | 1 | 6 | 6 | 1 |
624 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
d = A("d")
f = B("f")
h = B("h")
b = A("b")
d.p = f
f.p = d
h.p = b
b.p = f
assert d.p.p.p.txt == " | f" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
d = A("d")
f = B("f")
h = B("h")
b = A("b")
d.p = f
f.p = d
h.p = b
b.p = f
assert d.p.p.p.txt == "f" | 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 |
625 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
h = A("h")
a = B("a")
j = B("j")
l = A("l")
h.o = l
a.s = j
j.s = a
l.o = h
assert a.s.s.s.txt == " | j" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
h = A("h")
a = B("a")
j = B("j")
l = A("l")
h.o = l
a.s = j
j.s = a
l.o = h
assert a.s.s.s.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 |
626 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
e = A("e")
f = B("f")
n = A("n")
e.q = f
f.v = n
n.q = f
assert f.v.q.v.txt == " | n" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
e = A("e")
f = B("f")
n = A("n")
e.q = f
f.v = n
n.q = f
assert f.v.q.v.txt == "n" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 1 | 1 | 1 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
627 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.r: A = None
self.txt = txt
e = A("e")
k = B("k")
g = A("g")
n = A("n")
h = B("h")
l = A("l")
e.t = k
k.s = h
k.r = l
g.t = h
n.t = h
h.s ... | h" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.r: A = None
self.txt = txt
e = A("e")
k = B("k")
g = A("g")
n = A("n")
h = B("h")
l = A("l")
e.t = k
k.s = h
k.r = l
g.t = h
n.t = h
h.s ... | 6 | 8 | 1.333333 | 0.266667 | 2 | 3 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.5 | 3 | 0.375 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
628 | class A:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
n = A("n")
b = B("b")
m = B("m")
h = B("h")
n.u = b
n.q = b
b.z = h
m.z = b
h.z = b
assert b.z.z.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
n = A("n")
b = B("b")
m = B("m")
h = B("h")
n.u = b
n.q = b
b.z = h
m.z = b
h.z = b
assert b.z.z.z.txt == "h" | 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 |
629 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.p: B = None
self.txt = txt
j = A("j")
k = B("k")
n = A("n")
l = A("l")
m = A("m")
f = B("f")
g = B("g")
i = A("i")
j.x = g
k.z = j
k.p = ... | j" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.p: B = None
self.txt = txt
j = A("j")
k = B("k")
n = A("n")
l = A("l")
m = A("m")
f = B("f")
g = B("g")
i = A("i")
j.x = g
k.z = j
k.p = ... | 8 | 11 | 1.375 | 0.196429 | 2 | 4 | 2 | 1 | 1.5 | 3 | 1 | 1 | 4 | 0.5 | 3 | 0.272727 | 0 | null | null | null | 2 | 2 | 1 | 1 |
630 | 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.r: A = None
self.txt = txt
f = A("f")
j = B("j")
k = B("k")
l = A("l")
h = A("h")
g = A("g")
a = A("a")
e = B("e")
f.r = e
f.q = j
j.r = ... | f" | 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.r: A = None
self.txt = txt
f = A("f")
j = B("j")
k = B("k")
l = A("l")
h = A("h")
g = A("g")
a = A("a")
e = B("e")
f.r = e
f.q = j
j.r = ... | 8 | 13 | 1.625 | 0.232143 | 2 | 4 | 2 | 1 | 1.5 | 5 | 3 | 2 | 3 | 0.375 | 4 | 0.307692 | 3 | 2 | 4 | 2.5 | 2 | 4 | 3 | 2 |
631 | 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
l = A("l")
i = B("i")
m = B("m")
n = B("n")
h = A("h")
j = A("j")
k = A("k")
e = A("e")
d = A("d")
b = A("b")
l.x = d
i.w = l
m.w = b
n... | e" | 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
l = A("l")
i = B("i")
m = B("m")
n = B("n")
h = A("h")
j = A("j")
k = A("k")
e = A("e")
d = A("d")
b = A("b")
l.x = d
i.w = l
m.w = b
n... | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 5 | 2 | 1 | 5 | 0.5 | 5 | 0.5 | 1 | 4 | 4 | 4 | 1 | 5 | 5 | 1 |
632 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
e = A("e")
n = B("n")
m = B("m")
k = B("k")
e.o = m
n.q = m
m.q = n
k.q = n
assert k.q.q.q.txt == " | n" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
e = A("e")
n = B("n")
m = B("m")
k = B("k")
e.o = m
n.q = m
m.q = n
k.q = n
assert k.q.q.q.txt == "n" | 4 | 4 | 1 | 0.333333 | 2 | 2 | 1 | 1 | 1 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.75 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
633 | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
f = A("f")
d = B("d")
b = B("b")
h = A("h")
f.u = d
f.z = h
d.s = b
b.s = d
h.u = d
h.z = f
assert h.z.u.s.s.t... | d" | class A:
def __init__(self, txt: str):
self.u: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
f = A("f")
d = B("d")
b = B("b")
h = A("h")
f.u = d
f.z = h
d.s = b
b.s = d
h.u = d
h.z = f
assert h.z.u.s.s.t... | 4 | 6 | 1.5 | 0.5 | 2 | 2 | 2 | 1 | 1.5 | 4 | 2 | 1 | 4 | 1 | 4 | 0.666667 | 1 | 2 | 2 | 2 | 3 | 2 | 2 | 1 |
634 | class A:
def __init__(self, txt: str):
self.t: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.t: B = None
self.txt = txt
d = A("d")
m = B("m")
k = B("k")
e = B("e")
d.t = k
d.u = e
m.v = d
m.t = k
k.v = d
k... | k" | class A:
def __init__(self, txt: str):
self.t: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.t: B = None
self.txt = txt
d = A("d")
m = B("m")
k = B("k")
e = B("e")
d.t = k
d.u = e
m.v = d
m.t = k
k.v = d
k... | 4 | 8 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 2 | 3 | 2 | 2 | 2 | 0.5 | 2 | 0.25 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
635 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
n = A("n")
m = B("m")
k = A("k")
n.o = k
m.x = k
k.o = n
assert m.x.o.o.txt == " | k" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
n = A("n")
m = B("m")
k = A("k")
n.o = k
m.x = k
k.o = n
assert m.x.o.o.txt == "k" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 1 | 1 | 1 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
636 | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
m = A("m")
l = B("l")
e = B("e")
f = B("f")
a = B("a")
m.y = a
m.q = f
l.q = a
e.q = f
f.q = a
a.q = f
assert ... | a" | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
m = A("m")
l = B("l")
e = B("e")
f = B("f")
a = B("a")
m.y = a
m.q = f
l.q = a
e.q = f
f.q = a
a.q = f
assert ... | 5 | 6 | 1.2 | 0.3 | 2 | 2.5 | 2 | 1 | 1.5 | 5 | 3 | 2 | 3 | 0.6 | 3 | 0.5 | 3 | 2 | 4 | 2.5 | 2 | 4 | 4 | 1 |
637 | class A:
def __init__(self, txt: str):
self.w: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.w: A = None
self.txt = txt
c = A("c")
a = B("a")
d = B("d")
l = A("l")
c.w = l
c.q = a
a.z = d
a.w = l
d.z = a
d... | c" | class A:
def __init__(self, txt: str):
self.w: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.w: A = None
self.txt = txt
c = A("c")
a = B("a")
d = B("d")
l = A("l")
c.w = l
c.q = a
a.z = d
a.w = l
d.z = a
d... | 4 | 8 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 2 | 4 | 2 | 1 | 4 | 1 | 4 | 0.5 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
638 | class A:
def __init__(self, txt: str):
self.w: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.txt = txt
a = A("a")
d = B("d")
k = A("k")
j = B("j")
h = B("h")
g = A("g")
m = A("m")
l = A("l"... | j" | class A:
def __init__(self, txt: str):
self.w: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.txt = txt
a = A("a")
d = B("d")
k = A("k")
j = B("j")
h = B("h")
g = A("g")
m = A("m")
l = A("l"... | 10 | 17 | 1.7 | 0.188889 | 2 | 5 | 2 | 2 | 2 | 9 | 4 | 3 | 4 | 0.4 | 5 | 0.294118 | 6 | 2 | 7 | 3.6 | 3 | 6 | 5 | 2 |
639 | class A:
def __init__(self, txt: str):
self.p: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
n = A("n")
m = B("m")
g = B("g")
f = A("f")
n.p = m
n.t = f
m.w = g
g.w = m
f.p = m
f.t = n
assert f.p.w.w.txt... | m" | class A:
def __init__(self, txt: str):
self.p: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
n = A("n")
m = B("m")
g = B("g")
f = A("f")
n.p = m
n.t = f
m.w = g
g.w = m
f.p = m
f.t = n
assert f.p.w.w.txt... | 4 | 6 | 1.5 | 0.5 | 2 | 2 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.5 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
640 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.w: A = None
self.txt = txt
d = A("d")
g = B("g")
c = B("c")
f = A("f")
i = A("i")
e = A("e")
d.y = i
g.q = e
g.w = i
c.q = f
c.w = i
f.y ... | i" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.w: A = None
self.txt = txt
d = A("d")
g = B("g")
c = B("c")
f = A("f")
i = A("i")
e = A("e")
d.y = i
g.q = e
g.w = i
c.q = f
c.w = i
f.y ... | 6 | 8 | 1.333333 | 0.266667 | 2 | 3 | 2 | 1 | 1.5 | 4 | 1 | 1 | 5 | 0.833333 | 4 | 0.5 | 0 | null | null | null | 2 | 3 | 3 | 1 |
641 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
b = A("b")
d = B("d")
e = A("e")
b.s = d
d.x = b
e.s = d
assert e.s.x.s.txt == " | d" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
b = A("b")
d = B("d")
e = A("e")
b.s = d
d.x = b
e.s = d
assert e.s.x.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 | 1 | 1 |
642 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
h = A("h")
m = B("m")
a = B("a")
e = B("e")
k = A("k")
c = B("c")
h.w = k
m.x = k
a.x = h
e.x = h
k.w = h
c.x = h
assert h.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.x: A = None
self.txt = txt
h = A("h")
m = B("m")
a = B("a")
e = B("e")
k = A("k")
c = B("c")
h.w = k
m.x = k
a.x = h
e.x = h
k.w = h
c.x = h
assert h.w.w.w.w.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 |
643 | class A:
def __init__(self, txt: str):
self.t: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.txt = txt
f = A("f")
i = B("i")
h = A("h")
n = B("n")
f.t = h
f.y = i
i.q = n
i.z = h
h.t = f
h... | i" | class A:
def __init__(self, txt: str):
self.t: A = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.txt = txt
f = A("f")
i = B("i")
h = A("h")
n = B("n")
f.t = h
f.y = i
i.q = n
i.z = h
h.t = f
h... | 4 | 8 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 2 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.375 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
644 | class A:
def __init__(self, txt: str):
self.o: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.x: B = None
self.txt = txt
d = A("d")
i = B("i")
e = A("e")
j = A("j")
f = B("f")
k = A("k")
d.o = j
d.t = e
i.u... | j" | class A:
def __init__(self, txt: str):
self.o: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.x: B = None
self.txt = txt
d = A("d")
i = B("i")
e = A("e")
j = A("j")
f = B("f")
k = A("k")
d.o = j
d.t = e
i.u... | 6 | 8 | 1.333333 | 0.266667 | 2 | 3 | 2 | 2 | 2 | 6 | 2 | 2 | 4 | 0.666667 | 5 | 0.625 | 3 | 2 | 2 | 2 | 2 | 3 | 2 | 2 |
645 | 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
n = A("n")
m = B("m")
l = A("l")
c = B("c")
d = B("d")
e = B("e")
b = B("b")
h = B("h")
n.u = l
m.t = n
l.u = n
c.t = l
d.t = n
e.t = l... | n" | 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
n = A("n")
m = B("m")
l = A("l")
c = B("c")
d = B("d")
e = B("e")
b = B("b")
h = B("h")
n.u = l
m.t = n
l.u = n
c.t = l
d.t = n
e.t = l... | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 5 | 3 | 2 | 3 | 0.375 | 3 | 0.375 | 3 | 2 | 4 | 2.5 | 2 | 4 | 4 | 1 |
646 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.o: B = None
self.txt = txt
i = A("i")
a = B("a")
e = A("e")
m = B("m")
i.q = a
a.x = m
a.o = m
e.q = a
m.x = a
m.o = a
assert m.x.o.o.x.t... | m" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.o: B = None
self.txt = txt
i = A("i")
a = B("a")
e = A("e")
m = B("m")
i.q = a
a.x = m
a.o = m
e.q = a
m.x = a
m.o = a
assert m.x.o.o.x.t... | 4 | 4 | 1 | 0.333333 | 2 | 2 | 2 | 1 | 1.5 | 4 | 3 | 1 | 2 | 0.5 | 4 | 1 | 3 | 2 | 4 | 2.5 | 2 | 2 | 2 | 2 |
647 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
j = A("j")
m = B("m")
b = A("b")
i = A("i")
h = A("h")
d = B("d")
n = B("n")
g = A("g")
c = A("c")
l = B("l")
j.v = h
m.t = g
b.v = i
i... | i" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
j = A("j")
m = B("m")
b = A("b")
i = A("i")
h = A("h")
d = B("d")
n = B("n")
g = A("g")
c = A("c")
l = B("l")
j.v = h
m.t = g
b.v = i
i... | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 6 | 4 | 3 | 2 | 0.2 | 2 | 0.2 | 5 | 2 | 6 | 3.111111 | 1 | 6 | 6 | 1 |
648 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
l = A("l")
g = B("g")
h = B("h")
k = A("k")
b = B("b")
f = A("f")
n = B("n")
e = A("e")
a = B("a")
c = B("c")
l.v = k
g.w = n
h.w = g
k... | k" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
l = A("l")
g = B("g")
h = B("h")
k = A("k")
b = B("b")
f = A("f")
n = B("n")
e = A("e")
a = B("a")
c = B("c")
l.v = k
g.w = n
h.w = g
k... | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 4 | 3 | 2 | 2 | 0.2 | 2 | 0.2 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
649 | class A:
def __init__(self, txt: str):
self.p: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
f = A("f")
b = B("b")
h = A("h")
d = B("d")
m = A("m")
j = A("j")
f.p = d
f.v = d
b.x = d
h.p = d
h.v = d
d.x ... | d" | class A:
def __init__(self, txt: str):
self.p: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
f = A("f")
b = B("b")
h = A("h")
d = B("d")
m = A("m")
j = A("j")
f.p = d
f.v = d
b.x = d
h.p = d
h.v = d
d.x ... | 6 | 6 | 1 | 0.2 | 2 | 3 | 2 | 1 | 1.5 | 5 | 3 | 2 | 3 | 0.5 | 3 | 0.5 | 3 | 2 | 4 | 2.5 | 2 | 4 | 4 | 1 |
650 | class A:
def __init__(self, txt: str):
self.p: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
e = A("e")
b = B("b")
n = A("n")
f = B("f")
i = B("i")
h = A("h")
m = A("m")
e.p = h
e.s = h
b.v = i
n.p = e
n... | b" | class A:
def __init__(self, txt: str):
self.p: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
e = A("e")
b = B("b")
n = A("n")
f = B("f")
i = B("i")
h = A("h")
m = A("m")
e.p = h
e.s = h
b.v = i
n.p = e
n... | 7 | 8 | 1.142857 | 0.190476 | 2 | 3.5 | 2 | 1 | 1.5 | 5 | 2 | 2 | 3 | 0.428571 | 3 | 0.375 | 3 | 3 | 3 | 3 | 1 | 5 | 5 | 1 |
651 | class A:
def __init__(self, txt: str):
self.y: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
h = A("h")
f = B("f")
j = B("j")
e = A("e")
h.y = e
h.w = j
f.s = j
j.s = f
e.y = h
e.w = j
assert e.w.s.s.txt... | j" | class A:
def __init__(self, txt: str):
self.y: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
h = A("h")
f = B("f")
j = B("j")
e = A("e")
h.y = e
h.w = j
f.s = j
j.s = f
e.y = h
e.w = j
assert e.w.s.s.txt... | 4 | 6 | 1.5 | 0.5 | 2 | 2 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.5 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
652 | class A:
def __init__(self, txt: str):
self.o: A = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.o: A = None
self.txt = txt
e = A("e")
n = B("n")
i = A("i")
g = A("g")
j = A("j")
k = B("k")
l = B("l")
a = B("a"... | g" | class A:
def __init__(self, txt: str):
self.o: A = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.o: A = None
self.txt = txt
e = A("e")
n = B("n")
i = A("i")
g = A("g")
j = A("j")
k = B("k")
l = B("l")
a = B("a"... | 8 | 15 | 1.875 | 0.267857 | 2 | 4 | 2 | 2 | 2 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.2 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
653 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.o: A = None
self.txt = txt
i = A("i")
a = B("a")
b = A("b")
c = B("c")
i.y = b
a.w = b
a.o = i
b.y = i
c.w = b
c.o = b
assert i.y.y.y.txt... | b" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.o: A = None
self.txt = txt
i = A("i")
a = B("a")
b = A("b")
c = B("c")
i.y = b
a.w = b
a.o = i
b.y = i
c.w = b
c.o = b
assert i.y.y.y.txt... | 4 | 5 | 1.25 | 0.416667 | 2 | 2 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.5 | 2 | 0.4 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
654 | 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.w: A = None
self.txt = txt
j = A("j")
l = B("l")
f = A("f")
b = A("b")
a = A("a")
n = B("n")
m = A("m")
c = A("c")
j.z = m
j.w = n
l.w = ... | c" | 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.w: A = None
self.txt = txt
j = A("j")
l = B("l")
f = A("f")
b = A("b")
a = A("a")
n = B("n")
m = A("m")
c = A("c")
j.z = m
j.w = n
l.w = ... | 8 | 14 | 1.75 | 0.25 | 2 | 4 | 2 | 1 | 1.5 | 7 | 2 | 1 | 7 | 0.875 | 7 | 0.5 | 1 | 5 | 5 | 5 | 2 | 4 | 2 | 1 |
655 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.o: A = None
self.txt = txt
m = A("m")
n = B("n")
h = A("h")
k = B("k")
f = B("f")
g = B("g")
i = A("i")
m.y = n
n.z = k
n.o = h
h.y = k
k... | g" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.o: A = None
self.txt = txt
m = A("m")
n = B("n")
h = A("h")
k = B("k")
f = B("f")
g = B("g")
i = A("i")
m.y = n
n.z = k
n.o = h
h.y = k
k... | 7 | 11 | 1.571429 | 0.261905 | 2 | 3.5 | 2 | 1 | 1.5 | 6 | 2 | 1 | 5 | 0.714286 | 6 | 0.545455 | 2 | 2 | 6 | 4 | 3 | 4 | 4 | 2 |
656 | class A:
def __init__(self, txt: str):
self.p: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
c = A("c")
l = B("l")
d = A("d")
f = B("f")
m = B("m")
g = B("g")
e = B("e")
b = A("b")
c.p = f
c.y = d
l.y = ... | c" | class A:
def __init__(self, txt: str):
self.p: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
c = A("c")
l = B("l")
d = A("d")
f = B("f")
m = B("m")
g = B("g")
e = B("e")
b = A("b")
c.p = f
c.y = d
l.y = ... | 8 | 11 | 1.375 | 0.196429 | 2 | 4 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.272727 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
657 | class A:
def __init__(self, txt: str):
self.v: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.w: B = None
self.txt = txt
b = A("b")
c = B("c")
m = B("m")
e = B("e")
k = B("k")
i = B("i")
b.v = e
b.r = k
c.y... | c" | class A:
def __init__(self, txt: str):
self.v: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.w: B = None
self.txt = txt
b = A("b")
c = B("c")
m = B("m")
e = B("e")
k = B("k")
i = B("i")
b.v = e
b.r = k
c.y... | 6 | 11 | 1.833333 | 0.366667 | 2 | 3 | 2 | 2 | 2 | 5 | 2 | 1 | 4 | 0.666667 | 5 | 0.454545 | 2 | 3 | 4 | 3.5 | 2 | 3 | 2 | 2 |
658 | class A:
def __init__(self, txt: str):
self.o: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.q: B = None
self.txt = txt
c = A("c")
f = B("f")
k = B("k")
d = A("d")
c.o = k
c.y = d
f.x = k
f.q = k
k.x = f
k... | k" | class A:
def __init__(self, txt: str):
self.o: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.q: B = None
self.txt = txt
c = A("c")
f = B("f")
k = B("k")
d = A("d")
c.o = k
c.y = d
f.x = k
f.q = k
k.x = f
k... | 4 | 6 | 1.5 | 0.5 | 2 | 2 | 2 | 2 | 2 | 4 | 3 | 2 | 2 | 0.5 | 2 | 0.333333 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
659 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
b = A("b")
m = B("m")
d = A("d")
b.t = d
m.u = d
d.t = b
assert m.u.t.t.txt == " | d" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
b = A("b")
m = B("m")
d = A("d")
b.t = d
m.u = d
d.t = b
assert m.u.t.t.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 |
660 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
d = A("d")
i = B("i")
f = A("f")
c = A("c")
m = A("m")
d.p = c
i.v = f
f.p = m
c.p = m
m.p = c
assert f.p.p.p.p.p.txt == " | m" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
d = A("d")
i = B("i")
f = A("f")
c = A("c")
m = A("m")
d.p = c
i.v = f
f.p = m
c.p = m
m.p = c
assert f.p.p.p.p.p.txt == "m" | 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 | 1 | 5 | 5 | 1 |
661 | class A:
def __init__(self, txt: str):
self.u: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.t: B = None
self.txt = txt
d = A("d")
i = B("i")
e = A("e")
b = B("b")
d.u = b
d.v = b
i.w = b
i.t = b
e.u = b
e... | b" | class A:
def __init__(self, txt: str):
self.u: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.t: B = None
self.txt = txt
d = A("d")
i = B("i")
e = A("e")
b = B("b")
d.u = b
d.v = b
i.w = b
i.t = b
e.u = b
e... | 4 | 5 | 1.25 | 0.416667 | 2 | 2 | 2 | 2 | 2 | 3 | 2 | 2 | 2 | 0.5 | 2 | 0.4 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
662 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.w: A = None
self.txt = txt
c = A("c")
a = B("a")
k = A("k")
m = B("m")
g = B("g")
f = A("f")
c.r = m
a.q = g
a.w = k
k.r = m
m.q = g
m.w ... | a" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.w: A = None
self.txt = txt
c = A("c")
a = B("a")
k = A("k")
m = B("m")
g = B("g")
f = A("f")
c.r = m
a.q = g
a.w = k
k.r = m
m.q = g
m.w ... | 6 | 9 | 1.5 | 0.3 | 2 | 3 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.5 | 3 | 0.333333 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
663 | 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.s: B = None
self.txt = txt
b = A("b")
c = B("c")
a = A("a")
f = A("f")
i = B("i")
j = B("j")
h = B("h")
k = B("k")
g = B("g")
b.v = h
c.p... | f" | 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.s: B = None
self.txt = txt
b = A("b")
c = B("c")
a = A("a")
f = A("f")
i = B("i")
j = B("j")
h = B("h")
k = B("k")
g = B("g")
b.v = h
c.p... | 9 | 15 | 1.666667 | 0.208333 | 2 | 4.5 | 2 | 1 | 1.5 | 7 | 3 | 2 | 4 | 0.444444 | 5 | 0.333333 | 4 | 2 | 5 | 3.2 | 3 | 3 | 1 | 2 |
664 | class A:
def __init__(self, txt: str):
self.t: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.z: B = None
self.txt = txt
m = A("m")
i = B("i")
k = B("k")
a = B("a")
g = A("g")
l = B("l")
m.t = g
m.p = l
i.v... | i" | class A:
def __init__(self, txt: str):
self.t: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.z: B = None
self.txt = txt
m = A("m")
i = B("i")
k = B("k")
a = B("a")
g = A("g")
l = B("l")
m.t = g
m.p = l
i.v... | 6 | 12 | 2 | 0.4 | 2 | 3 | 2 | 2 | 2 | 6 | 2 | 2 | 4 | 0.666667 | 4 | 0.333333 | 3 | 3 | 3 | 3 | 2 | 5 | 5 | 1 |
665 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
n = A("n")
c = B("c")
f = B("f")
j = A("j")
g = B("g")
d = B("d")
b = B("b")
l = A("l")
n.x = b
c.p = g
f.p = c
j.x = g
g.p = f
d.p = c... | f" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
n = A("n")
c = B("c")
f = B("f")
j = A("j")
g = B("g")
d = B("d")
b = B("b")
l = A("l")
n.x = b
c.p = g
f.p = c
j.x = g
g.p = f
d.p = c... | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 5 | 2 | 2 | 4 | 0.5 | 4 | 0.5 | 2 | 3 | 3 | 3 | 2 | 4 | 4 | 1 |
666 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.v: A = None
self.txt = txt
g = A("g")
f = B("f")
b = B("b")
m = B("m")
k = B("k")
a = A("a")
n = B("n")
g.x = a
f.o = m
f.v = g
b.o = m
b... | k" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.v: A = None
self.txt = txt
g = A("g")
f = B("f")
b = B("b")
m = B("m")
k = B("k")
a = A("a")
n = B("n")
g.x = a
f.o = m
f.v = g
b.o = m
b... | 7 | 12 | 1.714286 | 0.285714 | 2 | 3.5 | 2 | 1 | 1.5 | 3 | 1 | 1 | 4 | 0.571429 | 3 | 0.25 | 0 | null | null | null | 1 | 3 | 3 | 1 |
667 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.t: A = None
self.txt = txt
h = A("h")
c = B("c")
a = A("a")
i = B("i")
h.p = a
c.s = a
c.t = a
a.p = h
i.s = a
i.t = a
assert c.t.p.p.p.t... | h" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.t: A = None
self.txt = txt
h = A("h")
c = B("c")
a = A("a")
i = B("i")
h.p = a
c.s = a
c.t = a
a.p = h
i.s = a
i.t = a
assert c.t.p.p.p.t... | 4 | 4 | 1 | 0.333333 | 2 | 2 | 2 | 1 | 1.5 | 4 | 2 | 2 | 3 | 0.75 | 3 | 0.75 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
668 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
g = B("g")
b = B("b")
d = A("d")
n = B("n")
i = A("i")
l = B("l")
j.w = d
g.y = i
b.y = i
d.w = i
n.y = j
i.w = j
l.y = i
as... | i" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
j = A("j")
g = B("g")
b = B("b")
d = A("d")
n = B("n")
i = A("i")
l = B("l")
j.w = d
g.y = i
b.y = i
d.w = i
n.y = j
i.w = j
l.y = i
as... | 7 | 7 | 1 | 0.166667 | 2 | 3.5 | 1 | 1 | 1 | 7 | 3 | 2 | 4 | 0.571429 | 4 | 0.571429 | 4 | 3 | 6 | 3.6 | 2 | 6 | 6 | 1 |
669 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.r: A = None
self.txt = txt
e = A("e")
l = B("l")
g = A("g")
e.q = g
l.p = e
l.r = e
g.q = e
assert e.q.q.q.txt == " | g" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.r: A = None
self.txt = txt
e = A("e")
l = B("l")
g = A("g")
e.q = g
l.p = e
l.r = e
g.q = e
assert e.q.q.q.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 | 1 | 3 | 3 | 1 |
670 | class A:
def __init__(self, txt: str):
self.r: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
e = A("e")
n = B("n")
m = A("m")
h = A("h")
e.r = h
e.t = n
n.o = h
m.r = h
m.t = n
h.r = e
h.t = n
assert n.o... | e" | class A:
def __init__(self, txt: str):
self.r: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
e = A("e")
n = B("n")
m = A("m")
h = A("h")
e.r = h
e.t = n
n.o = h
m.r = h
m.t = n
h.r = e
h.t = n
assert n.o... | 4 | 7 | 1.75 | 0.583333 | 2 | 2 | 2 | 1 | 1.5 | 4 | 2 | 2 | 3 | 0.75 | 3 | 0.428571 | 2 | 2 | 2 | 2 | 3 | 2 | 1 | 2 |
671 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.r: A = None
self.txt = txt
b = A("b")
c = B("c")
d = A("d")
h = B("h")
k = B("k")
f = A("f")
n = B("n")
g = A("g")
e = A("e")
l = A("l")
... | d" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.r: A = None
self.txt = txt
b = A("b")
c = B("c")
d = A("d")
h = B("h")
k = B("k")
f = A("f")
n = B("n")
g = A("g")
e = A("e")
l = A("l")
... | 10 | 14 | 1.4 | 0.155556 | 2 | 5 | 2 | 1 | 1.5 | 6 | 2 | 2 | 5 | 0.5 | 5 | 0.357143 | 2 | 3 | 3 | 3 | 2 | 5 | 5 | 1 |
672 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
b = A("b")
d = B("d")
k = A("k")
c = A("c")
h = B("h")
b.v = k
d.q = b
k.v = b
c.v = k
h.q = k
assert d.q.v.v.v.v.txt == " | b" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
b = A("b")
d = B("d")
k = A("k")
c = A("c")
h = B("h")
b.v = k
d.q = b
k.v = b
c.v = k
h.q = k
assert d.q.v.v.v.v.txt == "b" | 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 | 4 | 4 | 1 |
673 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.u: A = None
self.txt = txt
n = A("n")
m = B("m")
l = B("l")
d = B("d")
e = A("e")
i = A("i")
j = A("j")
n.r = l
m.x = i
m.u = i
l.x = j
l... | e" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.u: A = None
self.txt = txt
n = A("n")
m = B("m")
l = B("l")
d = B("d")
e = A("e")
i = A("i")
j = A("j")
n.r = l
m.x = i
m.u = i
l.x = j
l... | 7 | 8 | 1.142857 | 0.190476 | 2 | 3.5 | 2 | 1 | 1.5 | 7 | 2 | 2 | 6 | 0.857143 | 6 | 0.75 | 2 | 2 | 2 | 2 | 3 | 3 | 1 | 2 |
674 | class A:
def __init__(self, txt: str):
self.o: B = None
self.p: 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")
a = B("a")
j = B("j")
g = A("g")
i = A("i")
m = A("m")
k = B("k")
b.o = l
b.p... | a" | class A:
def __init__(self, txt: str):
self.o: B = None
self.p: 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")
a = B("a")
j = B("j")
g = A("g")
i = A("i")
m = A("m")
k = B("k")
b.o = l
b.p... | 9 | 14 | 1.555556 | 0.194444 | 2 | 4.5 | 2 | 1 | 1.5 | 8 | 3 | 3 | 3 | 0.333333 | 3 | 0.214286 | 6 | 3 | 6 | 4 | 1 | 8 | 8 | 1 |
675 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.v: B = None
self.txt = txt
j = A("j")
g = B("g")
n = A("n")
b = B("b")
m = B("m")
e = A("e")
k = A("k")
j.u = e
g.s = e
g.v = b
n.u = j
b... | n" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.v: B = None
self.txt = txt
j = A("j")
g = B("g")
n = A("n")
b = B("b")
m = B("m")
e = A("e")
k = A("k")
j.u = e
g.s = e
g.v = b
n.u = j
b... | 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 |
676 | 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.r: B = None
self.txt = txt
f = A("f")
k = B("k")
c = A("c")
m = A("m")
g = A("g")
l = B("l")
f.v = k
k.y = f
k.r = l
c.v = l
m.v = l
g.v ... | f" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.r: B = None
self.txt = txt
f = A("f")
k = B("k")
c = A("c")
m = A("m")
g = A("g")
l = B("l")
f.v = k
k.y = f
k.r = l
c.v = l
m.v = l
g.v ... | 6 | 8 | 1.333333 | 0.266667 | 2 | 3 | 2 | 1 | 1.5 | 4 | 1 | 1 | 5 | 0.833333 | 4 | 0.5 | 0 | null | null | null | 2 | 2 | 1 | 1 |
677 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
l = A("l")
c = B("c")
b = B("b")
l.y = b
c.t = b
b.t = c
assert l.y.t.t.txt == " | b" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
l = A("l")
c = B("c")
b = B("b")
l.y = b
c.t = b
b.t = c
assert l.y.t.t.txt == "b" | 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 |
678 | class A:
def __init__(self, txt: str):
self.s: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.p: B = None
self.txt = txt
k = A("k")
d = B("d")
c = B("c")
f = A("f")
h = B("h")
l = A("l")
j = A("j")
e = B("e"... | h" | class A:
def __init__(self, txt: str):
self.s: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.p: B = None
self.txt = txt
k = A("k")
d = B("d")
c = B("c")
f = A("f")
h = B("h")
l = A("l")
j = A("j")
e = B("e"... | 8 | 13 | 1.625 | 0.232143 | 2 | 4 | 2 | 2 | 2 | 5 | 2 | 1 | 4 | 0.5 | 5 | 0.384615 | 2 | 2 | 5 | 3.5 | 2 | 4 | 3 | 2 |
679 | class A:
def __init__(self, txt: str):
self.o: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
j = A("j")
d = B("d")
c = A("c")
b = B("b")
j.o = c
j.x = c
d.y = b
c.o = j
c.x = j
b.y = d
assert b.y.y.y.y.t... | b" | class A:
def __init__(self, txt: str):
self.o: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
j = A("j")
d = B("d")
c = A("c")
b = B("b")
j.o = c
j.x = c
d.y = b
c.o = j
c.x = j
b.y = d
assert b.y.y.y.y.t... | 4 | 4 | 1 | 0.333333 | 2 | 2 | 2 | 1 | 1.5 | 4 | 3 | 2 | 2 | 0.5 | 2 | 0.5 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
680 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
m = A("m")
f = B("f")
h = B("h")
d = A("d")
n = A("n")
l = B("l")
e = B("e")
b = B("b")
m.w = n
f.w = d
h.w = d
d.w = n
n.w = m
l.w = n... | m" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
m = A("m")
f = B("f")
h = B("h")
d = A("d")
n = A("n")
l = B("l")
e = B("e")
b = B("b")
m.w = n
f.w = d
h.w = d
d.w = n
n.w = m
l.w = n... | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 4 | 3 | 2 | 2 | 0.25 | 2 | 0.25 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
681 | class A:
def __init__(self, txt: str):
self.w: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.v: A = None
self.txt = txt
j = A("j")
e = B("e")
k = A("k")
l = B("l")
h = A("h")
n = B("n")
d = B("d")
a = B("a"... | l" | class A:
def __init__(self, txt: str):
self.w: B = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.v: A = None
self.txt = txt
j = A("j")
e = B("e")
k = A("k")
l = B("l")
h = A("h")
n = B("n")
d = B("d")
a = B("a"... | 8 | 14 | 1.75 | 0.25 | 2 | 4 | 2 | 2 | 2 | 6 | 2 | 2 | 4 | 0.5 | 4 | 0.285714 | 3 | 4 | 4 | 4 | 2 | 3 | 1 | 1 |
682 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
l = A("l")
g = B("g")
b = B("b")
n = B("n")
h = B("h")
k = A("k")
l.u = n
g.s = k
b.s = l
n.s = k
h.s = l
k.u = h
assert k.u.s.u.s.txt ... | k" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
l = A("l")
g = B("g")
b = B("b")
n = B("n")
h = B("h")
k = A("k")
l.u = n
g.s = k
b.s = l
n.s = k
h.s = l
k.u = h
assert k.u.s.u.s.txt ... | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 4 | 2 | 1 | 4 | 0.666667 | 4 | 0.666667 | 1 | 4 | 4 | 4 | 2 | 2 | 1 | 1 |
683 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
f = A("f")
c = B("c")
b = A("b")
e = B("e")
g = B("g")
a = B("a")
d = A("d")
l = B("l")
k = A("k")
j = B("j")
f.r = l
c.z = g
b.r = g
e... | g" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
f = A("f")
c = B("c")
b = A("b")
e = B("e")
g = B("g")
a = B("a")
d = A("d")
l = B("l")
k = A("k")
j = B("j")
f.r = l
c.z = g
b.r = g
e... | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 9 | 4 | 3 | 5 | 0.5 | 5 | 0.5 | 5 | 2 | 6 | 3.111111 | 2 | 8 | 8 | 1 |
684 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.x: B = None
self.txt = txt
j = A("j")
n = B("n")
c = B("c")
i = A("i")
j.w = i
n.v = j
n.x = c
c.v = i
c.x = n
i.w = j
assert i.w.w.w.w.t... | i" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.x: B = None
self.txt = txt
j = A("j")
n = B("n")
c = B("c")
i = A("i")
j.w = i
n.v = j
n.x = c
c.v = i
c.x = n
i.w = j
assert i.w.w.w.w.t... | 4 | 6 | 1.5 | 0.5 | 2 | 2 | 2 | 1 | 1.5 | 4 | 3 | 2 | 2 | 0.5 | 2 | 0.333333 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
685 | class A:
def __init__(self, txt: str):
self.w: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
b = A("b")
i = B("i")
h = A("h")
j = B("j")
n = B("n")
d = A("d")
b.w = j
b.y = i
i.w = j
h.w = i
h.y = n
j.w ... | n" | class A:
def __init__(self, txt: str):
self.w: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
b = A("b")
i = B("i")
h = A("h")
j = B("j")
n = B("n")
d = A("d")
b.w = j
b.y = i
i.w = j
h.w = i
h.y = n
j.w ... | 6 | 9 | 1.5 | 0.3 | 2 | 3 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.333333 | 2 | 0.222222 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
686 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.w: A = None
self.txt = txt
m = A("m")
a = B("a")
h = A("h")
j = A("j")
g = B("g")
e = A("e")
m.w = e
a.z = g
a.w = h
h.w = j
j.w = m
g.z ... | j" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.w: A = None
self.txt = txt
m = A("m")
a = B("a")
h = A("h")
j = A("j")
g = B("g")
e = A("e")
m.w = e
a.z = g
a.w = h
h.w = j
j.w = m
g.z ... | 6 | 8 | 1.333333 | 0.266667 | 2 | 3 | 2 | 1 | 1.5 | 6 | 3 | 2 | 3 | 0.5 | 3 | 0.375 | 4 | 3 | 6 | 3.6 | 1 | 6 | 6 | 1 |
687 | class A:
def __init__(self, txt: str):
self.u: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
i = A("i")
l = B("l")
m = B("m")
a = B("a")
c = A("c")
d = B("d")
i.u = c
i.p = l
l.s = i
m.s = i
a.s = c
c.u ... | i" | class A:
def __init__(self, txt: str):
self.u: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
i = A("i")
l = B("l")
m = B("m")
a = B("a")
c = A("c")
d = B("d")
i.u = c
i.p = l
l.s = i
m.s = i
a.s = c
c.u ... | 6 | 8 | 1.333333 | 0.266667 | 2 | 3 | 2 | 1 | 1.5 | 5 | 2 | 1 | 4 | 0.666667 | 5 | 0.625 | 2 | 2 | 2 | 2 | 3 | 2 | 1 | 2 |
688 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.q: A = None
self.txt = txt
g = A("g")
b = B("b")
n = B("n")
i = A("i")
m = B("m")
g.v = b
b.o = i
b.q = g
n.o = g
n.q = i
i.v = b
m.o = i... | b" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.q: A = None
self.txt = txt
g = A("g")
b = B("b")
n = B("n")
i = A("i")
m = B("m")
g.v = b
b.o = i
b.q = g
n.o = g
n.q = i
i.v = b
m.o = i... | 5 | 8 | 1.6 | 0.4 | 2 | 2.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.375 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
689 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
i = A("i")
m = B("m")
b = B("b")
i.r = b
m.p = b
b.p = m
assert b.p.p.p.txt == " | m" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
i = A("i")
m = B("m")
b = B("b")
i.r = b
m.p = b
b.p = m
assert b.p.p.p.txt == "m" | 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 |
690 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.u: A = None
self.txt = txt
h = A("h")
c = B("c")
l = B("l")
j = A("j")
g = A("g")
d = A("d")
e = A("e")
m = A("m")
n = B("n")
k = A("k")
... | c" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.u: A = None
self.txt = txt
h = A("h")
c = B("c")
l = B("l")
j = A("j")
g = A("g")
d = A("d")
e = A("e")
m = A("m")
n = B("n")
k = A("k")
... | 10 | 13 | 1.3 | 0.144444 | 2 | 5 | 2 | 1 | 1.5 | 8 | 3 | 2 | 5 | 0.5 | 6 | 0.461538 | 4 | 2 | 4 | 2.4 | 3 | 4 | 1 | 2 |
691 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.w: A = None
self.txt = txt
n = A("n")
l = B("l")
j = B("j")
n.x = j
l.v = n
l.w = n
j.v = n
j.w = n
assert n.x.w.x.txt == " | j" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.w: A = None
self.txt = txt
n = A("n")
l = B("l")
j = B("j")
n.x = j
l.v = n
l.w = n
j.v = n
j.w = n
assert n.x.w.x.txt == "j" | 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 |
692 | class A:
def __init__(self, txt: str):
self.s: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
j = A("j")
a = B("a")
d = B("d")
l = B("l")
n = A("n")
f = A("f")
e = B("e")
j.s = a
j.x = l
a.r = j
d.r = f
l... | l" | class A:
def __init__(self, txt: str):
self.s: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
j = A("j")
a = B("a")
d = B("d")
l = B("l")
n = A("n")
f = A("f")
e = B("e")
j.s = a
j.x = l
a.r = j
d.r = f
l... | 7 | 10 | 1.428571 | 0.238095 | 2 | 3.5 | 2 | 1 | 1.5 | 5 | 2 | 2 | 4 | 0.571429 | 4 | 0.4 | 2 | 2 | 2 | 2 | 3 | 2 | 1 | 2 |
693 | class A:
def __init__(self, txt: str):
self.z: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
b = B("b")
l = B("l")
e = B("e")
g = B("g")
f = A("f")
c.z = f
c.o = b
b.s = c
l.s = f
e.s = f
g.s ... | f" | class A:
def __init__(self, txt: str):
self.z: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
b = B("b")
l = B("l")
e = B("e")
g = B("g")
f = A("f")
c.z = f
c.o = b
b.s = c
l.s = f
e.s = f
g.s ... | 6 | 8 | 1.333333 | 0.266667 | 2 | 3 | 2 | 1 | 1.5 | 4 | 2 | 1 | 4 | 0.666667 | 4 | 0.5 | 1 | 2 | 2 | 2 | 3 | 2 | 1 | 1 |
694 | class A:
def __init__(self, txt: str):
self.y: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
n = A("n")
l = B("l")
e = A("e")
b = B("b")
g = B("g")
h = B("h")
a = A("a")
m = B("m")
j = A("j")
n.y = b
n.o... | m" | class A:
def __init__(self, txt: str):
self.y: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
n = A("n")
l = B("l")
e = A("e")
b = B("b")
g = B("g")
h = B("h")
a = A("a")
m = B("m")
j = A("j")
n.y = b
n.o... | 9 | 13 | 1.444444 | 0.180556 | 2 | 4.5 | 2 | 1 | 1.5 | 3 | 1 | 1 | 4 | 0.444444 | 3 | 0.230769 | 0 | null | null | null | 3 | 1 | 1 | 1 |
695 | class A:
def __init__(self, txt: str):
self.t: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
g = A("g")
j = B("j")
l = B("l")
b = B("b")
f = A("f")
a = B("a")
e = B("e")
n = B("n")
g.t = b
g.u = l
j.y = ... | j" | class A:
def __init__(self, txt: str):
self.t: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
g = A("g")
j = B("j")
l = B("l")
b = B("b")
f = A("f")
a = B("a")
e = B("e")
n = B("n")
g.t = b
g.u = l
j.y = ... | 8 | 9 | 1.125 | 0.160714 | 2 | 4 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.333333 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
696 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.t: B = None
self.txt = txt
i = A("i")
n = B("n")
m = A("m")
g = B("g")
i.v = n
n.o = i
n.t = g
m.v = n
g.o = i
g.t = n
assert m.v.t.o.v.t... | n" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.t: B = None
self.txt = txt
i = A("i")
n = B("n")
m = A("m")
g = B("g")
i.v = n
n.o = i
n.t = g
m.v = n
g.o = i
g.t = n
assert m.v.t.o.v.t... | 4 | 6 | 1.5 | 0.5 | 2 | 2 | 2 | 1 | 1.5 | 4 | 2 | 1 | 4 | 1 | 4 | 0.666667 | 1 | 3 | 3 | 3 | 3 | 2 | 1 | 1 |
697 | 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.z: A = None
self.txt = txt
m = A("m")
i = B("i")
b = A("b")
j = B("j")
g = A("g")
c = A("c")
d = A("d")
k = B("k")
m.y = b
i.q = j
i.z = ... | b" | 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.z: A = None
self.txt = txt
m = A("m")
i = B("i")
b = A("b")
j = B("j")
g = A("g")
c = A("c")
d = A("d")
k = B("k")
m.y = b
i.q = j
i.z = ... | 8 | 11 | 1.375 | 0.196429 | 2 | 4 | 2 | 1 | 1.5 | 6 | 2 | 2 | 4 | 0.5 | 4 | 0.363636 | 3 | 3 | 3 | 3 | 1 | 6 | 6 | 1 |
698 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
e = A("e")
c = B("c")
k = A("k")
l = B("l")
a = B("a")
m = B("m")
g = A("g")
e.z = g
c.r = g
k.z = e
l.r = g
a.r = e
m.r = e
g.z = k
as... | g" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
e = A("e")
c = B("c")
k = A("k")
l = B("l")
a = B("a")
m = B("m")
g = A("g")
e.z = g
c.r = g
k.z = e
l.r = g
a.r = e
m.r = e
g.z = k
as... | 7 | 7 | 1 | 0.166667 | 2 | 3.5 | 1 | 1 | 1 | 4 | 2 | 1 | 4 | 0.571429 | 4 | 0.571429 | 1 | 3 | 3 | 3 | 2 | 3 | 3 | 1 |
699 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
m = A("m")
h = B("h")
f = A("f")
j = A("j")
b = B("b")
d = B("d")
l = B("l")
c = A("c")
m.s = f
h.q = d
f.s = m
j.s = f
b.q = d
d.q = b... | d" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
m = A("m")
h = B("h")
f = A("f")
j = A("j")
b = B("b")
d = B("d")
l = B("l")
c = A("c")
m.s = f
h.q = d
f.s = m
j.s = f
b.q = d
d.q = b... | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 4 | 3 | 2 | 2 | 0.25 | 2 | 0.25 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.