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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
700 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
n = A("n")
h = B("h")
f = A("f")
m = A("m")
n.q = f
h.w = f
f.q = n
m.q = f
assert f.q.q.q.txt == " | n" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
n = A("n")
h = B("h")
f = A("f")
m = A("m")
n.q = f
h.w = f
f.q = n
m.q = f
assert f.q.q.q.txt == "n" | 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 |
701 | class A:
def __init__(self, txt: str):
self.p: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.v: A = None
self.txt = txt
l = A("l")
g = B("g")
k = A("k")
l.p = k
l.r = k
g.x = l
g.v = k
k.p = l
k.r = l
asse... | l" | class A:
def __init__(self, txt: str):
self.p: A = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.v: A = None
self.txt = txt
l = A("l")
g = B("g")
k = A("k")
l.p = k
l.r = k
g.x = l
g.v = k
k.p = l
k.r = l
asse... | 3 | 4 | 1.333333 | 0.666667 | 2 | 1.5 | 2 | 2 | 2 | 3 | 2 | 1 | 2 | 0.666667 | 3 | 0.75 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
702 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: B = None
self.txt = txt
m = A("m")
c = B("c")
k = B("k")
b = B("b")
f = A("f")
d = B("d")
a = B("a")
g = B("g")
j = B("j")
m.z = f
c.w... | f" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.q: B = None
self.txt = txt
m = A("m")
c = B("c")
k = B("k")
b = B("b")
f = A("f")
d = B("d")
a = B("a")
g = B("g")
j = B("j")
m.z = f
c.w... | 9 | 14 | 1.555556 | 0.194444 | 2 | 4.5 | 2 | 1 | 1.5 | 7 | 4 | 4 | 2 | 0.222222 | 2 | 0.142857 | 6 | 2 | 6 | 3.333333 | 1 | 7 | 7 | 1 |
703 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
c = A("c")
a = B("a")
n = A("n")
e = B("e")
c.p = a
a.w = n
n.p = a
e.w = c
assert e.w.p.w.p.txt == " | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
c = A("c")
a = B("a")
n = A("n")
e = B("e")
c.p = a
a.w = n
n.p = a
e.w = c
assert e.w.p.w.p.txt == "a" | 4 | 4 | 1 | 0.333333 | 2 | 2 | 1 | 1 | 1 | 4 | 2 | 1 | 4 | 1 | 4 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
704 | class A:
def __init__(self, txt: str):
self.x: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
g = A("g")
d = B("d")
f = A("f")
j = B("j")
n = A("n")
h = A("h")
i = B("i")
m = A("m")
g.x = j
g.o = i
d.p = ... | j" | class A:
def __init__(self, txt: str):
self.x: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
g = A("g")
d = B("d")
f = A("f")
j = B("j")
n = A("n")
h = A("h")
i = B("i")
m = A("m")
g.x = j
g.o = i
d.p = ... | 8 | 9 | 1.125 | 0.160714 | 2 | 4 | 2 | 1 | 1.5 | 7 | 4 | 3 | 2 | 0.25 | 3 | 0.333333 | 6 | 2 | 6 | 3.333333 | 3 | 3 | 1 | 2 |
705 | class A:
def __init__(self, txt: str):
self.p: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
d = A("d")
i = B("i")
n = B("n")
a = A("a")
f = B("f")
l = A("l")
g = A("g")
k = B("k")
b = B("b")
d.p = a
d.y... | i" | class A:
def __init__(self, txt: str):
self.p: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
d = A("d")
i = B("i")
n = B("n")
a = A("a")
f = B("f")
l = A("l")
g = A("g")
k = B("k")
b = B("b")
d.p = a
d.y... | 9 | 13 | 1.444444 | 0.180556 | 2 | 4.5 | 2 | 1 | 1.5 | 7 | 4 | 3 | 3 | 0.333333 | 3 | 0.230769 | 5 | 2 | 6 | 3.111111 | 1 | 7 | 7 | 1 |
706 | class A:
def __init__(self, txt: str):
self.s: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
j = A("j")
f = B("f")
a = A("a")
b = A("b")
e = B("e")
j.s = e
j.y = f
f.u = j
a.s = f
a.y = e
b.s = e
b.y = f... | a" | class A:
def __init__(self, txt: str):
self.s: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
j = A("j")
f = B("f")
a = A("a")
b = A("b")
e = B("e")
j.s = e
j.y = f
f.u = j
a.s = f
a.y = e
b.s = e
b.y = f... | 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 |
707 | 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.t: A = None
self.txt = txt
k = A("k")
l = B("l")
n = B("n")
k.u = n
k.q = n
l.t = k
n.t = k
assert l.t.q.t.txt == " | k" | 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.t: A = None
self.txt = txt
k = A("k")
l = B("l")
n = B("n")
k.u = n
k.q = n
l.t = k
n.t = k
assert l.t.q.t.txt == "k" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
708 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.t: B = None
self.txt = txt
m = A("m")
g = B("g")
a = B("a")
j = B("j")
c = A("c")
d = A("d")
m.v = c
g.u = d
g.t = j
a.u = m
a.t = j
j.u ... | m" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.t: B = None
self.txt = txt
m = A("m")
g = B("g")
a = B("a")
j = B("j")
c = A("c")
d = A("d")
m.v = c
g.u = d
g.t = j
a.u = m
a.t = j
j.u ... | 6 | 9 | 1.5 | 0.3 | 2 | 3 | 2 | 1 | 1.5 | 6 | 2 | 2 | 4 | 0.666667 | 5 | 0.555556 | 3 | 2 | 2 | 2 | 3 | 3 | 3 | 2 |
709 | class A:
def __init__(self, txt: str):
self.r: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.o: A = None
self.txt = txt
n = A("n")
l = B("l")
d = A("d")
f = A("f")
h = B("h")
c = A("c")
j = A("j")
i = A("i"... | f" | class A:
def __init__(self, txt: str):
self.r: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.o: A = None
self.txt = txt
n = A("n")
l = B("l")
d = A("d")
f = A("f")
h = B("h")
c = A("c")
j = A("j")
i = A("i"... | 9 | 18 | 2 | 0.25 | 2 | 4.5 | 2 | 2 | 2 | 6 | 2 | 1 | 6 | 0.666667 | 6 | 0.333333 | 1 | 6 | 6 | 6 | 3 | 4 | 4 | 1 |
710 | class A:
def __init__(self, txt: str):
self.u: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.u: B = None
self.txt = txt
i = A("i")
e = B("e")
j = A("j")
n = A("n")
g = B("g")
i.u = n
i.w = g
e.y = g
e.u = ... | e" | class A:
def __init__(self, txt: str):
self.u: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.u: B = None
self.txt = txt
i = A("i")
e = B("e")
j = A("j")
n = A("n")
g = B("g")
i.u = n
i.w = g
e.y = g
e.u = ... | 5 | 8 | 1.6 | 0.4 | 2 | 2.5 | 2 | 2 | 2 | 4 | 2 | 1 | 4 | 0.8 | 4 | 0.5 | 1 | 2 | 2 | 2 | 3 | 2 | 1 | 1 |
711 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.o: A = None
self.txt = txt
j = A("j")
m = B("m")
h = B("h")
g = A("g")
d = A("d")
f = B("f")
n = B("n")
j.r = g
m.w = h
m.o = d
h.w = n
h... | g" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.o: A = None
self.txt = txt
j = A("j")
m = B("m")
h = B("h")
g = A("g")
d = A("d")
f = B("f")
n = B("n")
j.r = g
m.w = h
m.o = d
h.w = n
h... | 7 | 11 | 1.571429 | 0.261905 | 2 | 3.5 | 2 | 1 | 1.5 | 4 | 2 | 1 | 4 | 0.571429 | 4 | 0.363636 | 1 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
712 | class A:
def __init__(self, txt: str):
self.s: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
i = A("i")
g = B("g")
f = A("f")
i.s = f
i.v = g
g.x = i
f.s = i
f.v = g
assert i.v.x.s.txt == " | f" | class A:
def __init__(self, txt: str):
self.s: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
i = A("i")
g = B("g")
f = A("f")
i.s = f
i.v = g
g.x = i
f.s = i
f.v = g
assert i.v.x.s.txt == "f" | 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 | 3 | 1 | 1 | 2 |
713 | class A:
def __init__(self, txt: str):
self.s: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
e = A("e")
g = B("g")
k = B("k")
h = A("h")
d = B("d")
e.s = k
e.z = h
g.y = h
k.y = h
h.s = k
h.z = e
d.y = e... | e" | class A:
def __init__(self, txt: str):
self.s: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
e = A("e")
g = B("g")
k = B("k")
h = A("h")
d = B("d")
e.s = k
e.z = h
g.y = h
k.y = h
h.s = k
h.z = e
d.y = e... | 5 | 7 | 1.4 | 0.35 | 2 | 2.5 | 2 | 1 | 1.5 | 4 | 2 | 1 | 4 | 0.8 | 4 | 0.571429 | 1 | 2 | 2 | 2 | 3 | 2 | 1 | 2 |
714 | class A:
def __init__(self, txt: str):
self.y: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.p: B = None
self.txt = txt
d = A("d")
l = B("l")
m = A("m")
a = B("a")
d.y = m
d.q = l
l.w = m
l.p = a
m.y = d
m... | l" | class A:
def __init__(self, txt: str):
self.y: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.p: B = None
self.txt = txt
d = A("d")
l = B("l")
m = A("m")
a = B("a")
d.y = m
d.q = l
l.w = m
l.p = a
m.y = d
m... | 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 |
715 | class A:
def __init__(self, txt: str):
self.r: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.q: B = None
self.txt = txt
d = A("d")
a = B("a")
i = B("i")
g = A("g")
d.r = g
d.u = a
a.r = i
a.q = i
i.r = a
i... | a" | class A:
def __init__(self, txt: str):
self.r: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.q: B = None
self.txt = txt
d = A("d")
a = B("a")
i = B("i")
g = A("g")
d.r = g
d.u = a
a.r = i
a.q = i
i.r = a
i... | 4 | 6 | 1.5 | 0.5 | 2 | 2 | 2 | 2 | 2 | 4 | 2 | 1 | 4 | 1 | 4 | 0.666667 | 1 | 2 | 2 | 2 | 2 | 3 | 2 | 1 |
716 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.t: A = None
self.txt = txt
g = A("g")
d = B("d")
b = A("b")
a = A("a")
n = A("n")
e = B("e")
i = A("i")
m = A("m")
l = B("l")
g.o = b
d.o... | g" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.t: A = None
self.txt = txt
g = A("g")
d = B("d")
b = A("b")
a = A("a")
n = A("n")
e = B("e")
i = A("i")
m = A("m")
l = B("l")
g.o = b
d.o... | 9 | 12 | 1.333333 | 0.166667 | 2 | 4.5 | 2 | 1 | 1.5 | 4 | 1 | 1 | 5 | 0.555556 | 4 | 0.333333 | 0 | null | null | null | 1 | 4 | 4 | 1 |
717 | class A:
def __init__(self, txt: str):
self.u: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
g = A("g")
l = B("l")
e = A("e")
a = A("a")
f = B("f")
i = B("i")
g.u = a
g.x = e
l.w = f
e.u = a
e.x = a
a.u ... | i" | class A:
def __init__(self, txt: str):
self.u: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
g = A("g")
l = B("l")
e = A("e")
a = A("a")
f = B("f")
i = B("i")
g.u = a
g.x = e
l.w = f
e.u = a
e.x = a
a.u ... | 6 | 7 | 1.166667 | 0.233333 | 2 | 3 | 2 | 1 | 1.5 | 5 | 2 | 2 | 3 | 0.5 | 3 | 0.428571 | 3 | 3 | 3 | 3 | 1 | 5 | 5 | 1 |
718 | class A:
def __init__(self, txt: str):
self.t: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
n = A("n")
d = B("d")
k = A("k")
a = B("a")
b = B("b")
e = A("e")
g = A("g")
l = A("l")
j = A("j")
n.t = a
n.y... | l" | class A:
def __init__(self, txt: str):
self.t: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
n = A("n")
d = B("d")
k = A("k")
a = B("a")
b = B("b")
e = A("e")
g = A("g")
l = A("l")
j = A("j")
n.t = a
n.y... | 9 | 15 | 1.666667 | 0.208333 | 2 | 4.5 | 2 | 1 | 1.5 | 3 | 1 | 1 | 4 | 0.444444 | 3 | 0.2 | 0 | null | null | null | 2 | 2 | 1 | 1 |
719 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
k = B("k")
c = A("c")
h = A("h")
j = A("j")
n = B("n")
b = B("b")
l = B("l")
d.w = n
k.z = c
c.w = n
h.w = n
j.w = k
n.z = c... | c" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
d = A("d")
k = B("k")
c = A("c")
h = A("h")
j = A("j")
n = B("n")
b = B("b")
l = B("l")
d.w = n
k.z = c
c.w = n
h.w = n
j.w = k
n.z = c... | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 3 | 2 | 2 | 2 | 0.25 | 2 | 0.25 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
720 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.z: A = None
self.txt = txt
b = A("b")
m = B("m")
k = B("k")
b.r = m
m.u = k
m.z = b
k.u = m
k.z = b
assert k.z.r.u.txt == " | k" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.z: A = None
self.txt = txt
b = A("b")
m = B("m")
k = B("k")
b.r = m
m.u = k
m.z = b
k.u = m
k.z = b
assert k.z.r.u.txt == "k" | 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 |
721 | class A:
def __init__(self, txt: str):
self.q: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
g = A("g")
a = B("a")
e = A("e")
f = A("f")
c = B("c")
m = A("m")
g.q = m
g.v = f
a.r = f
e.q = f
e.v = m
f.q ... | f" | class A:
def __init__(self, txt: str):
self.q: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
g = A("g")
a = B("a")
e = A("e")
f = A("f")
c = B("c")
m = A("m")
g.q = m
g.v = f
a.r = f
e.q = f
e.v = m
f.q ... | 6 | 10 | 1.666667 | 0.333333 | 2 | 3 | 2 | 1 | 1.5 | 5 | 3 | 2 | 3 | 0.5 | 3 | 0.3 | 3 | 2 | 4 | 2.5 | 2 | 4 | 4 | 1 |
722 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.t: A = None
self.txt = txt
f = A("f")
n = B("n")
i = B("i")
k = A("k")
f.r = k
n.q = i
n.t = f
i.q = n
i.t = k
k.r = f
assert i.q.t.r.r.t... | f" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.t: A = None
self.txt = txt
f = A("f")
n = B("n")
i = B("i")
k = A("k")
f.r = k
n.q = i
n.t = f
i.q = n
i.t = k
k.r = f
assert i.q.t.r.r.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 |
723 | class A:
def __init__(self, txt: str):
self.x: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.y: A = None
self.txt = txt
j = A("j")
c = B("c")
k = A("k")
j.x = c
j.t = k
c.x = k
c.y = j
k.x = c
k.t = j
asse... | k" | class A:
def __init__(self, txt: str):
self.x: B = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.y: A = None
self.txt = txt
j = A("j")
c = B("c")
k = A("k")
j.x = c
j.t = k
c.x = k
c.y = j
k.x = c
k.t = j
asse... | 3 | 6 | 2 | 1 | 2 | 1.5 | 2 | 2 | 2 | 3 | 2 | 1 | 3 | 1 | 3 | 0.5 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
724 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
e = A("e")
l = B("l")
j = A("j")
i = A("i")
d = B("d")
m = A("m")
g = B("g")
e.o = g
l.p = i
j.o = d
i.o = g
d.p = m
m.o = l
g.p = e
as... | e" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
e = A("e")
l = B("l")
j = A("j")
i = A("i")
d = B("d")
m = A("m")
g = B("g")
e.o = g
l.p = i
j.o = d
i.o = g
d.p = m
m.o = l
g.p = e
as... | 7 | 7 | 1 | 0.166667 | 2 | 3.5 | 1 | 1 | 1 | 3 | 1 | 1 | 4 | 0.571429 | 3 | 0.428571 | 0 | null | null | null | 2 | 2 | 1 | 1 |
725 | class A:
def __init__(self, txt: str):
self.o: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
c = A("c")
e = B("e")
m = A("m")
c.o = m
c.x = e
e.v = m
m.o = c
m.x = e
assert c.o.x.v.txt == " | m" | class A:
def __init__(self, txt: str):
self.o: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
c = A("c")
e = B("e")
m = A("m")
c.o = m
c.x = e
e.v = m
m.o = c
m.x = e
assert c.o.x.v.txt == "m" | 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 | 3 | 1 | 1 | 1 |
726 | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.p: A = None
self.txt = txt
a = A("a")
i = B("i")
g = A("g")
a.q = i
a.x = i
i.z = g
i.p = g
g.q = i
g.x = i
asse... | i" | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.p: A = None
self.txt = txt
a = A("a")
i = B("i")
g = A("g")
a.q = i
a.x = i
i.z = g
i.p = g
g.q = i
g.x = i
asse... | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 2 | 2 | 2 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 |
727 | class A:
def __init__(self, txt: str):
self.x: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.o: A = None
self.txt = txt
n = A("n")
g = B("g")
b = A("b")
j = A("j")
d = B("d")
m = B("m")
e = A("e")
i = B("i"... | c" | class A:
def __init__(self, txt: str):
self.x: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.o: A = None
self.txt = txt
n = A("n")
g = B("g")
b = A("b")
j = A("j")
d = B("d")
m = B("m")
e = A("e")
i = B("i"... | 10 | 17 | 1.7 | 0.188889 | 2 | 5 | 2 | 2 | 2 | 4 | 1 | 1 | 5 | 0.5 | 4 | 0.235294 | 0 | null | null | null | 3 | 2 | 2 | 1 |
728 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
l = A("l")
i = B("i")
g = A("g")
d = B("d")
j = B("j")
e = B("e")
f = A("f")
l.w = j
i.s = j
g.w = d
d.s = i
j.s = i
e.s = d
f.w = j
as... | i" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
l = A("l")
i = B("i")
g = A("g")
d = B("d")
j = B("j")
e = B("e")
f = A("f")
l.w = j
i.s = j
g.w = d
d.s = i
j.s = i
e.s = d
f.w = j
as... | 7 | 7 | 1 | 0.166667 | 2 | 3.5 | 1 | 1 | 1 | 6 | 4 | 3 | 2 | 0.285714 | 2 | 0.285714 | 5 | 2 | 6 | 3.111111 | 1 | 6 | 6 | 1 |
729 | class A:
def __init__(self, txt: str):
self.x: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
m = A("m")
k = B("k")
j = B("j")
l = B("l")
d = A("d")
e = A("e")
n = B("n")
c = B("c")
h = B("h")
m.x = e
m.p... | h" | class A:
def __init__(self, txt: str):
self.x: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
m = A("m")
k = B("k")
j = B("j")
l = B("l")
d = A("d")
e = A("e")
n = B("n")
c = B("c")
h = B("h")
m.x = e
m.p... | 9 | 12 | 1.333333 | 0.166667 | 2 | 4.5 | 2 | 1 | 1.5 | 8 | 5 | 4 | 2 | 0.222222 | 2 | 0.166667 | 7 | 2 | 8 | 3.75 | 1 | 8 | 8 | 1 |
730 | class A:
def __init__(self, txt: str):
self.y: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
j = A("j")
g = B("g")
b = B("b")
a = B("a")
n = B("n")
m = A("m")
f = A("f")
h = A("h")
i = A("i")
j.y = m
j.u... | f" | class A:
def __init__(self, txt: str):
self.y: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
j = A("j")
g = B("g")
b = B("b")
a = B("a")
n = B("n")
m = A("m")
f = A("f")
h = A("h")
i = A("i")
j.y = m
j.u... | 9 | 12 | 1.333333 | 0.166667 | 2 | 4.5 | 2 | 1 | 1.5 | 5 | 2 | 1 | 4 | 0.444444 | 5 | 0.416667 | 2 | 2 | 4 | 3 | 2 | 4 | 4 | 2 |
731 | 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.txt = txt
j = A("j")
l = B("l")
c = A("c")
n = B("n")
f = A("f")
g = A("g")
a = B("a")
m = A("m")
j.q = l
l.t = f
c.q = n
n.t = m
f.q = a
g.q = n... | f" | 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.txt = txt
j = A("j")
l = B("l")
c = A("c")
n = B("n")
f = A("f")
g = A("g")
a = B("a")
m = A("m")
j.q = l
l.t = f
c.q = n
n.t = m
f.q = a
g.q = n... | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 6 | 2 | 1 | 6 | 0.75 | 6 | 0.75 | 1 | 2 | 2 | 2 | 2 | 3 | 1 | 1 |
732 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.v: A = None
self.txt = txt
g = A("g")
h = B("h")
l = B("l")
g.s = h
h.r = g
h.v = g
l.r = g
l.v = g
assert g.s.v.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.r: A = None
self.v: A = None
self.txt = txt
g = A("g")
h = B("h")
l = B("l")
g.s = h
h.r = g
h.v = g
l.r = g
l.v = g
assert g.s.v.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 |
733 | 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
i = A("i")
k = B("k")
c = A("c")
b = B("b")
h = B("h")
e = A("e")
g = B("g")
i.p = e
k.w = i
c.p = i
b.w = c
h.w = e
e.p = c
g.w = c
as... | i" | 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
i = A("i")
k = B("k")
c = A("c")
b = B("b")
h = B("h")
e = A("e")
g = B("g")
i.p = e
k.w = i
c.p = i
b.w = c
h.w = e
e.p = c
g.w = c
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 |
734 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.p: A = None
self.txt = txt
m = A("m")
k = B("k")
i = B("i")
b = A("b")
f = B("f")
l = A("l")
j = B("j")
m.z = f
k.r = b
k.p = b
i.r = m
i... | f" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.p: A = None
self.txt = txt
m = A("m")
k = B("k")
i = B("i")
b = A("b")
f = B("f")
l = A("l")
j = B("j")
m.z = f
k.r = b
k.p = b
i.r = m
i... | 7 | 9 | 1.285714 | 0.214286 | 2 | 3.5 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.285714 | 2 | 0.222222 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
735 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.u: A = None
self.txt = txt
h = A("h")
n = B("n")
l = B("l")
b = A("b")
d = A("d")
a = B("a")
h.z = a
n.q = a
n.u = h
l.q = a
l.u = h
b.z ... | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.u: A = None
self.txt = txt
h = A("h")
n = B("n")
l = B("l")
b = A("b")
d = A("d")
a = B("a")
h.z = a
n.q = a
n.u = h
l.q = a
l.u = h
b.z ... | 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 | 2 | 2 | 1 | 1 |
736 | class A:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
n = A("n")
l = B("l")
i = B("i")
b = A("b")
n.o = i
n.w = b
l.r = n
i.r = n
b.o = i
b.w = n
assert n.w.w.w.txt... | b" | class A:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
n = A("n")
l = B("l")
i = B("i")
b = A("b")
n.o = i
n.w = b
l.r = n
i.r = n
b.o = i
b.w = n
assert n.w.w.w.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 |
737 | 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
n = A("n")
i = B("i")
h = B("h")
k = A("k")
c = B("c")
d = A("d")
l = B("l")
n.p = d
i.v = n
h.v = d
k.p = d
c.v = n
d.p = k
l.v = n
as... | k" | 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
n = A("n")
i = B("i")
h = B("h")
k = A("k")
c = B("c")
d = A("d")
l = B("l")
n.p = d
i.v = n
h.v = d
k.p = d
c.v = n
d.p = k
l.v = n
as... | 7 | 7 | 1 | 0.166667 | 2 | 3.5 | 1 | 1 | 1 | 4 | 2 | 2 | 3 | 0.428571 | 3 | 0.428571 | 2 | 2 | 2 | 2 | 1 | 4 | 4 | 1 |
738 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
k = A("k")
n = B("n")
l = A("l")
h = B("h")
c = B("c")
i = A("i")
m = B("m")
k.u = i
n.v = m
l.u = k
h.v = n
c.v = m
i.u = l
m.v = c
as... | i" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
k = A("k")
n = B("n")
l = A("l")
h = B("h")
c = B("c")
i = A("i")
m = B("m")
k.u = i
n.v = m
l.u = k
h.v = n
c.v = m
i.u = l
m.v = c
as... | 7 | 7 | 1 | 0.166667 | 2 | 3.5 | 1 | 1 | 1 | 5 | 2 | 2 | 3 | 0.428571 | 3 | 0.428571 | 3 | 3 | 3 | 3 | 1 | 5 | 5 | 1 |
739 | class A:
def __init__(self, txt: str):
self.o: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
c = A("c")
f = B("f")
a = B("a")
g = B("g")
c.o = f
c.s = a
f.r = c
a.r = c
g.r = c
assert f.r.s.r.txt == " | c" | class A:
def __init__(self, txt: str):
self.o: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
c = A("c")
f = B("f")
a = B("a")
g = B("g")
c.o = f
c.s = a
f.r = c
a.r = c
g.r = c
assert f.r.s.r.txt == "c" | 4 | 5 | 1.25 | 0.416667 | 2 | 2 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.6 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
740 | class A:
def __init__(self, txt: str):
self.p: B = None
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
d = A("d")
i = B("i")
a = B("a")
f = A("f")
j = A("j")
h = B("h")
d.p = h
d.q = j
i.p... | f" | class A:
def __init__(self, txt: str):
self.p: B = None
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
d = A("d")
i = B("i")
a = B("a")
f = A("f")
j = A("j")
h = B("h")
d.p = h
d.q = j
i.p... | 6 | 11 | 1.833333 | 0.366667 | 2 | 3 | 2 | 2 | 2 | 6 | 2 | 2 | 5 | 0.833333 | 5 | 0.454545 | 2 | 4 | 4 | 4 | 3 | 3 | 1 | 2 |
741 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.z: A = None
self.txt = txt
h = A("h")
a = B("a")
g = B("g")
f = A("f")
h.p = f
a.u = f
a.z = f
g.u = h
g.z = f
f.p = h
assert a.z.p.p.txt... | f" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.z: A = None
self.txt = txt
h = A("h")
a = B("a")
g = B("g")
f = A("f")
h.p = f
a.u = f
a.z = f
g.u = h
g.z = f
f.p = h
assert a.z.p.p.txt... | 4 | 5 | 1.25 | 0.416667 | 2 | 2 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.6 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
742 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.x: B = None
self.txt = txt
g = A("g")
b = B("b")
e = B("e")
i = A("i")
m = B("m")
g.o = i
b.y = i
b.x = e
e.y = g
e.x = b
i.o = g
m.y = g... | i" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.x: B = None
self.txt = txt
g = A("g")
b = B("b")
e = B("e")
i = A("i")
m = B("m")
g.o = i
b.y = i
b.x = e
e.y = g
e.x = b
i.o = g
m.y = g... | 5 | 8 | 1.6 | 0.4 | 2 | 2.5 | 2 | 1 | 1.5 | 5 | 2 | 2 | 4 | 0.8 | 4 | 0.5 | 2 | 2 | 2 | 2 | 3 | 3 | 3 | 1 |
743 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
i = A("i")
n = B("n")
l = B("l")
i.t = l
n.o = i
l.o = i
assert n.o.t.o.txt == " | i" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
i = A("i")
n = B("n")
l = B("l")
i.t = l
n.o = i
l.o = i
assert n.o.t.o.txt == "i" | 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 |
744 | class A:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
c = A("c")
g = B("g")
e = B("e")
i = B("i")
h = A("h")
d = B("d")
j = B("j")
m = A("m")
c.o = g
c.w = m
g.o = ... | i" | class A:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
c = A("c")
g = B("g")
e = B("e")
i = B("i")
h = A("h")
d = B("d")
j = B("j")
m = A("m")
c.o = g
c.w = m
g.o = ... | 8 | 11 | 1.375 | 0.196429 | 2 | 4 | 2 | 1 | 1.5 | 7 | 2 | 2 | 6 | 0.75 | 6 | 0.545455 | 2 | 2 | 2 | 2 | 2 | 4 | 4 | 2 |
745 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.w: B = None
self.txt = txt
k = A("k")
j = B("j")
e = B("e")
g = B("g")
k.r = g
j.v = e
j.w = e
e.v = g
e.w = j
g.v = e
g.w = e
assert j.w... | e" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.w: B = None
self.txt = txt
k = A("k")
j = B("j")
e = B("e")
g = B("g")
k.r = g
j.v = e
j.w = e
e.v = g
e.w = j
g.v = e
g.w = e
assert j.w... | 4 | 5 | 1.25 | 0.416667 | 2 | 2 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.6 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
746 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
e = A("e")
j = B("j")
h = A("h")
b = A("b")
g = B("g")
f = A("f")
d = A("d")
n = B("n")
c = B("c")
i = A("i")
e.w = b
j.t = e
h.w = d
b... | h" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
e = A("e")
j = B("j")
h = A("h")
b = A("b")
g = B("g")
f = A("f")
d = A("d")
n = B("n")
c = B("c")
i = A("i")
e.w = b
j.t = e
h.w = d
b... | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 10 | 4 | 4 | 3 | 0.3 | 3 | 0.3 | 8 | 3 | 9 | 4.8 | 1 | 10 | 10 | 1 |
747 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
k = A("k")
l = B("l")
c = B("c")
m = A("m")
d = A("d")
b = A("b")
i = A("i")
k.q = b
l.z = k
c.z = k
m.q = i
d.q = m
b.q = i
i.q = k
as... | b" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
k = A("k")
l = B("l")
c = B("c")
m = A("m")
d = A("d")
b = A("b")
i = A("i")
k.q = b
l.z = k
c.z = k
m.q = i
d.q = m
b.q = i
i.q = k
as... | 7 | 7 | 1 | 0.166667 | 2 | 3.5 | 1 | 1 | 1 | 3 | 1 | 1 | 4 | 0.571429 | 3 | 0.428571 | 0 | null | null | null | 1 | 3 | 3 | 1 |
748 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
f = A("f")
k = B("k")
h = B("h")
f.v = k
k.s = h
h.s = k
assert h.s.s.s.txt == " | k" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
f = A("f")
k = B("k")
h = B("h")
f.v = k
k.s = h
h.s = k
assert h.s.s.s.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 | 1 | 3 | 3 | 1 |
749 | class A:
def __init__(self, txt: str):
self.t: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: A = None
self.txt = txt
j = A("j")
b = B("b")
d = A("d")
j.t = b
j.z = b
b.p = d
b.v = d
d.t = b
d.z = b
asse... | b" | class A:
def __init__(self, txt: str):
self.t: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: A = None
self.txt = txt
j = A("j")
b = B("b")
d = A("d")
j.t = b
j.z = b
b.p = d
b.v = d
d.t = b
d.z = b
asse... | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 2 | 2 | 2 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 |
750 | class A:
def __init__(self, txt: str):
self.r: B = 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
k = A("k")
i = B("i")
g = A("g")
n = A("n")
j = B("j")
k.r = i
k.x = i
i.t = k
i.w = ... | i" | class A:
def __init__(self, txt: str):
self.r: B = 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
k = A("k")
i = B("i")
g = A("g")
n = A("n")
j = B("j")
k.r = i
k.x = i
i.t = k
i.w = ... | 5 | 7 | 1.4 | 0.35 | 2 | 2.5 | 2 | 2 | 2 | 3 | 2 | 2 | 2 | 0.4 | 2 | 0.285714 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
751 | class A:
def __init__(self, txt: str):
self.r: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
c = B("c")
i = B("i")
j = A("j")
f = A("f")
a.r = c
a.y = i
c.x = i
i.x = c
j.r = c
j.y = c
f.r = i... | c" | class A:
def __init__(self, txt: str):
self.r: B = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
c = B("c")
i = B("i")
j = A("j")
f = A("f")
a.r = c
a.y = i
c.x = i
i.x = c
j.r = c
j.y = c
f.r = i... | 5 | 6 | 1.2 | 0.3 | 2 | 2.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.5 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
752 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.u: B = None
self.txt = txt
j = A("j")
c = B("c")
a = A("a")
g = A("g")
n = A("n")
l = A("l")
f = B("f")
j.u = c
c.t = f
c.u = f
a.u = f
g... | f" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.u: B = None
self.txt = txt
j = A("j")
c = B("c")
a = A("a")
g = A("g")
n = A("n")
l = A("l")
f = B("f")
j.u = c
c.t = f
c.u = f
a.u = f
g... | 7 | 7 | 1 | 0.166667 | 2 | 3.5 | 2 | 1 | 1.5 | 5 | 3 | 1 | 3 | 0.428571 | 5 | 0.714286 | 3 | 2 | 4 | 2.5 | 2 | 3 | 2 | 2 |
753 | 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.t: B = None
self.txt = txt
l = A("l")
m = B("m")
e = A("e")
d = A("d")
c = A("c")
j = A("j")
i = B("i")
l.u = d
m.p = i
m.t = i
e.u = l
d... | e" | 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.t: B = None
self.txt = txt
l = A("l")
m = B("m")
e = A("e")
d = A("d")
c = A("c")
j = A("j")
i = B("i")
l.u = d
m.p = i
m.t = i
e.u = l
d... | 7 | 7 | 1 | 0.166667 | 2 | 3.5 | 2 | 1 | 1.5 | 4 | 2 | 1 | 4 | 0.571429 | 4 | 0.571429 | 1 | 3 | 3 | 3 | 1 | 4 | 4 | 1 |
754 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
h = A("h")
d = B("d")
b = B("b")
j = A("j")
f = A("f")
m = B("m")
h.y = j
d.s = b
b.s = d
j.y = f
f.y = j
m.s = b
assert f.y.y.y.y.y.y.... | f" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
h = A("h")
d = B("d")
b = B("b")
j = A("j")
f = A("f")
m = B("m")
h.y = j
d.s = b
b.s = d
j.y = f
f.y = j
m.s = b
assert f.y.y.y.y.y.y.... | 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 |
755 | class A:
def __init__(self, txt: str):
self.v: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
h = A("h")
m = B("m")
b = A("b")
l = A("l")
e = A("e")
g = B("g")
k = A("k")
h.v = g
h.u = k
m.z = k
b.v = g
b... | h" | class A:
def __init__(self, txt: str):
self.v: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
h = A("h")
m = B("m")
b = A("b")
l = A("l")
e = A("e")
g = B("g")
k = A("k")
h.v = g
h.u = k
m.z = k
b.v = g
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 |
756 | class A:
def __init__(self, txt: str):
self.s: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
g = A("g")
i = B("i")
k = A("k")
e = B("e")
f = B("f")
g.s = k
g.w = f
i.w = f
k.s = g
k.w = f
e.w = f
f.w = i... | f" | class A:
def __init__(self, txt: str):
self.s: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
g = A("g")
i = B("i")
k = A("k")
e = B("e")
f = B("f")
g.s = k
g.w = f
i.w = f
k.s = g
k.w = f
e.w = f
f.w = i... | 5 | 7 | 1.4 | 0.35 | 2 | 2.5 | 2 | 1 | 1.5 | 4 | 3 | 2 | 2 | 0.4 | 2 | 0.285714 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
757 | class A:
def __init__(self, txt: str):
self.o: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
d = A("d")
e = B("e")
a = B("a")
b = B("b")
c = B("c")
d.o = c
d.t = c
e.r = d
a.r = d
b.r = d
c.r = d
assert ... | c" | class A:
def __init__(self, txt: str):
self.o: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
d = A("d")
e = B("e")
a = B("a")
b = B("b")
c = B("c")
d.o = c
d.t = c
e.r = d
a.r = d
b.r = d
c.r = d
assert ... | 5 | 5 | 1 | 0.25 | 2 | 2.5 | 2 | 1 | 1.5 | 4 | 2 | 2 | 3 | 0.6 | 3 | 0.6 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
758 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.v: A = None
self.txt = txt
c = A("c")
e = B("e")
a = A("a")
n = B("n")
f = B("f")
i = B("i")
m = A("m")
d = A("d")
b = B("b")
l = A("l")
... | a" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.v: A = None
self.txt = txt
c = A("c")
e = B("e")
a = A("a")
n = B("n")
f = B("f")
i = B("i")
m = A("m")
d = A("d")
b = B("b")
l = A("l")
... | 10 | 14 | 1.4 | 0.155556 | 2 | 5 | 2 | 1 | 1.5 | 8 | 3 | 3 | 4 | 0.4 | 4 | 0.285714 | 5 | 3 | 6 | 3.857143 | 2 | 7 | 7 | 1 |
759 | 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.q: A = None
self.txt = txt
b = A("b")
j = B("j")
c = A("c")
f = B("f")
h = B("h")
b.v = c
j.z = f
j.q = b
c.v = b
f.z = j
f.q = c
h.z = f... | c" | 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.q: A = None
self.txt = txt
b = A("b")
j = B("j")
c = A("c")
f = B("f")
h = B("h")
b.v = c
j.z = f
j.q = b
c.v = b
f.z = j
f.q = c
h.z = f... | 5 | 8 | 1.6 | 0.4 | 2 | 2.5 | 2 | 1 | 1.5 | 4 | 2 | 2 | 3 | 0.6 | 3 | 0.375 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
760 | 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.p: A = None
self.txt = txt
b = A("b")
m = B("m")
d = A("d")
j = B("j")
b.o = d
m.s = j
m.p = d
d.o = b
j.s = m
j.p = d
assert d.o.o.o.txt... | b" | 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.p: A = None
self.txt = txt
b = A("b")
m = B("m")
d = A("d")
j = B("j")
b.o = d
m.s = j
m.p = d
d.o = b
j.s = m
j.p = d
assert d.o.o.o.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 |
761 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.x: A = None
self.txt = txt
l = A("l")
m = B("m")
a = B("a")
g = B("g")
e = A("e")
c = A("c")
f = A("f")
l.q = a
m.y = f
m.x = f
a.y = e
a... | f" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.x: A = None
self.txt = txt
l = A("l")
m = B("m")
a = B("a")
g = B("g")
e = A("e")
c = A("c")
f = A("f")
l.q = a
m.y = f
m.x = f
a.y = e
a... | 7 | 9 | 1.285714 | 0.214286 | 2 | 3.5 | 2 | 1 | 1.5 | 4 | 3 | 2 | 2 | 0.285714 | 2 | 0.222222 | 3 | 2 | 4 | 2.5 | 2 | 2 | 1 | 1 |
762 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.z: A = None
self.txt = txt
e = A("e")
m = B("m")
i = B("i")
g = A("g")
a = A("a")
l = A("l")
n = A("n")
c = A("c")
b = A("b")
k = B("k")
... | a" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.z: A = None
self.txt = txt
e = A("e")
m = B("m")
i = B("i")
g = A("g")
a = A("a")
l = A("l")
n = A("n")
c = A("c")
b = A("b")
k = B("k")
... | 10 | 11 | 1.1 | 0.122222 | 2 | 5 | 2 | 1 | 1.5 | 3 | 1 | 1 | 4 | 0.4 | 3 | 0.272727 | 0 | null | null | null | 2 | 2 | 1 | 1 |
763 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
f = A("f")
j = B("j")
l = B("l")
e = B("e")
c = A("c")
i = A("i")
d = B("d")
f.z = c
j.x = i
l.x = f
e.x = c
c.z = i
i.z = f
d.x = i
as... | i" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
f = A("f")
j = B("j")
l = B("l")
e = B("e")
c = A("c")
i = A("i")
d = B("d")
f.z = c
j.x = i
l.x = f
e.x = c
c.z = i
i.z = f
d.x = 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 |
764 | 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.p: A = None
self.txt = txt
k = A("k")
g = B("g")
i = B("i")
j = B("j")
f = B("f")
a = A("a")
l = A("l")
b = B("b")
k.t = a
k.y = i
g.p = ... | 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.p: A = None
self.txt = txt
k = A("k")
g = B("g")
i = B("i")
j = B("j")
f = B("f")
a = A("a")
l = A("l")
b = B("b")
k.t = a
k.y = i
g.p = ... | 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 | 3 | 3 | 2 | 1 |
765 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
g = A("g")
c = B("c")
h = B("h")
g.o = c
c.p = g
h.p = g
assert h.p.o.p.txt == " | g" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
g = A("g")
c = B("c")
h = B("h")
g.o = c
c.p = g
h.p = g
assert h.p.o.p.txt == "g" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 1 | 1 | 1 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
766 | 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.t: B = None
self.txt = txt
e = A("e")
l = B("l")
k = A("k")
h = B("h")
a = B("a")
i = B("i")
n = A("n")
c = A("c")
f = A("f")
b = A("b")
... | l" | 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.t: B = None
self.txt = txt
e = A("e")
l = B("l")
k = A("k")
h = B("h")
a = B("a")
i = B("i")
n = A("n")
c = A("c")
f = A("f")
b = A("b")
... | 10 | 13 | 1.3 | 0.144444 | 2 | 5 | 2 | 1 | 1.5 | 9 | 5 | 3 | 3 | 0.3 | 5 | 0.384615 | 7 | 2 | 8 | 4 | 2 | 5 | 2 | 2 |
767 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
i = A("i")
f = B("f")
l = B("l")
h = A("h")
m = B("m")
g = B("g")
a = A("a")
b = A("b")
i.y = f
f.z = h
l.z = b
h.y = f
m.z = h
g.z = h... | f" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
i = A("i")
f = B("f")
l = B("l")
h = A("h")
m = B("m")
g = B("g")
a = A("a")
b = A("b")
i.y = f
f.z = h
l.z = b
h.y = f
m.z = h
g.z = h... | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 8 | 3 | 3 | 5 | 0.625 | 5 | 0.625 | 4 | 2 | 4 | 2.666667 | 2 | 4 | 1 | 1 |
768 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.p: A = None
self.txt = txt
l = A("l")
a = B("a")
b = A("b")
e = A("e")
k = B("k")
f = B("f")
j = B("j")
i = B("i")
l.v = b
a.q = i
a.p = ... | e" | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.p: A = None
self.txt = txt
l = A("l")
a = B("a")
b = A("b")
e = A("e")
k = B("k")
f = B("f")
j = B("j")
i = B("i")
l.v = b
a.q = i
a.p = ... | 8 | 13 | 1.625 | 0.232143 | 2 | 4 | 2 | 1 | 1.5 | 6 | 3 | 3 | 3 | 0.375 | 3 | 0.230769 | 4 | 2 | 4 | 2.666667 | 1 | 6 | 6 | 1 |
769 | class A:
def __init__(self, txt: str):
self.x: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
i = A("i")
b = B("b")
c = A("c")
e = A("e")
g = B("g")
a = A("a")
i.x = a
i.w = g
b.z = g
c.x = e
c.w = g
e.x ... | b" | class A:
def __init__(self, txt: str):
self.x: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
i = A("i")
b = B("b")
c = A("c")
e = A("e")
g = B("g")
a = A("a")
i.x = a
i.w = g
b.z = g
c.x = e
c.w = g
e.x ... | 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 | 3 | 1 | 1 | 1 |
770 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.x: A = None
self.txt = txt
f = A("f")
a = B("a")
k = B("k")
f.o = k
a.v = f
a.x = f
k.v = f
k.x = f
assert k.x.o.x.txt == " | f" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.x: A = None
self.txt = txt
f = A("f")
a = B("a")
k = B("k")
f.o = k
a.v = f
a.x = f
k.v = f
k.x = f
assert k.x.o.x.txt == "f" | 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 |
771 | class A:
def __init__(self, txt: str):
self.y: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
f = A("f")
m = B("m")
a = A("a")
b = A("b")
k = A("k")
g = A("g")
l = B("l")
d = A("d")
j = A("j")
i = B("i")
... | k" | class A:
def __init__(self, txt: str):
self.y: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
f = A("f")
m = B("m")
a = A("a")
b = A("b")
k = A("k")
g = A("g")
l = B("l")
d = A("d")
j = A("j")
i = B("i")
... | 10 | 17 | 1.7 | 0.188889 | 2 | 5 | 2 | 1 | 1.5 | 8 | 4 | 4 | 3 | 0.3 | 3 | 0.176471 | 6 | 2 | 6 | 3.333333 | 1 | 8 | 8 | 1 |
772 | class A:
def __init__(self, txt: str):
self.p: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
a = B("a")
f = B("f")
e.p = a
e.o = f
a.w = f
f.w = a
assert e.p.w.w.txt == " | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
e = A("e")
a = B("a")
f = B("f")
e.p = a
e.o = f
a.w = f
f.w = a
assert e.p.w.w.txt == "a" | 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 |
773 | class A:
def __init__(self, txt: str):
self.x: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
d = A("d")
l = B("l")
m = B("m")
c = A("c")
k = A("k")
d.x = m
d.r = c
l.s = m
m.s = l
c.x = m
c.r = d
k.x = l... | l" | class A:
def __init__(self, txt: str):
self.x: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
d = A("d")
l = B("l")
m = B("m")
c = A("c")
k = A("k")
d.x = m
d.r = c
l.s = m
m.s = l
c.x = m
c.r = d
k.x = l... | 5 | 8 | 1.6 | 0.4 | 2 | 2.5 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.4 | 2 | 0.25 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
774 | class A:
def __init__(self, txt: str):
self.z: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.r: A = None
self.txt = txt
m = A("m")
h = B("h")
i = B("i")
k = B("k")
a = A("a")
g = A("g")
b = B("b")
e = A("e"... | a" | class A:
def __init__(self, txt: str):
self.z: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.r: A = None
self.txt = txt
m = A("m")
h = B("h")
i = B("i")
k = B("k")
a = A("a")
g = A("g")
b = B("b")
e = A("e"... | 10 | 18 | 1.8 | 0.2 | 2 | 5 | 2 | 2 | 2 | 6 | 2 | 1 | 5 | 0.5 | 6 | 0.333333 | 2 | 2 | 4 | 3 | 3 | 3 | 2 | 2 |
775 | class A:
def __init__(self, txt: str):
self.q: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
j = A("j")
k = B("k")
l = B("l")
e = A("e")
f = A("f")
g = B("g")
i = A("i")
c = A("c")
d = A("d")
a = A("a")
... | l" | class A:
def __init__(self, txt: str):
self.q: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
j = A("j")
k = B("k")
l = B("l")
e = A("e")
f = A("f")
g = B("g")
i = A("i")
c = A("c")
d = A("d")
a = A("a")
... | 10 | 17 | 1.7 | 0.188889 | 2 | 5 | 2 | 1 | 1.5 | 4 | 2 | 2 | 3 | 0.3 | 3 | 0.176471 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
776 | class A:
def __init__(self, txt: str):
self.y: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.u: B = None
self.txt = txt
d = A("d")
h = B("h")
e = A("e")
l = B("l")
d.y = e
d.t = h
h.p = e
h.u = l
e.y = d
e... | e" | class A:
def __init__(self, txt: str):
self.y: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.u: B = None
self.txt = txt
d = A("d")
h = B("h")
e = A("e")
l = B("l")
d.y = e
d.t = h
h.p = e
h.u = l
e.y = d
e... | 4 | 8 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 2 | 4 | 2 | 1 | 4 | 1 | 4 | 0.5 | 1 | 4 | 4 | 4 | 2 | 2 | 1 | 1 |
777 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
b = A("b")
l = B("l")
i = A("i")
e = B("e")
m = A("m")
b.y = e
l.q = i
i.y = l
e.q = m
m.y = l
assert l.q.y.q.txt == " | i" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
b = A("b")
l = B("l")
i = A("i")
e = B("e")
m = A("m")
b.y = e
l.q = i
i.y = l
e.q = m
m.y = l
assert l.q.y.q.txt == "i" | 5 | 5 | 1 | 0.25 | 2 | 2.5 | 1 | 1 | 1 | 3 | 2 | 2 | 2 | 0.4 | 2 | 0.4 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
778 | class A:
def __init__(self, txt: str):
self.s: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
e = A("e")
b = B("b")
c = A("c")
j = A("j")
a = A("a")
d = B("d")
h = A("h")
f = B("f")
k = A("k")
e.s = k
e.z... | d" | class A:
def __init__(self, txt: str):
self.s: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
e = A("e")
b = B("b")
c = A("c")
j = A("j")
a = A("a")
d = B("d")
h = A("h")
f = B("f")
k = A("k")
e.s = k
e.z... | 9 | 15 | 1.666667 | 0.208333 | 2 | 4.5 | 2 | 1 | 1.5 | 9 | 4 | 3 | 4 | 0.444444 | 5 | 0.333333 | 6 | 2 | 6 | 3 | 3 | 6 | 6 | 2 |
779 | class A:
def __init__(self, txt: str):
self.r: B = None
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
h = A("h")
n = B("n")
j = B("j")
a = A("a")
f = A("f")
b = B("b")
e = A("e")
g = B("g"... | f" | class A:
def __init__(self, txt: str):
self.r: B = None
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
h = A("h")
n = B("n")
j = B("j")
a = A("a")
f = A("f")
b = B("b")
e = A("e")
g = B("g"... | 9 | 18 | 2 | 0.25 | 2 | 4.5 | 2 | 2 | 2 | 3 | 2 | 1 | 3 | 0.333333 | 3 | 0.166667 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
780 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.v: A = None
self.txt = txt
g = A("g")
b = B("b")
d = A("d")
c = B("c")
k = A("k")
m = B("m")
h = B("h")
n = B("n")
g.x = m
b.x = d
b.v = ... | d" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.v: A = None
self.txt = txt
g = A("g")
b = B("b")
d = A("d")
c = B("c")
k = A("k")
m = B("m")
h = B("h")
n = B("n")
g.x = m
b.x = d
b.v = ... | 8 | 11 | 1.375 | 0.196429 | 2 | 4 | 2 | 1 | 1.5 | 8 | 2 | 2 | 6 | 0.75 | 7 | 0.636364 | 3 | 4 | 6 | 5.333333 | 2 | 5 | 3 | 2 |
781 | class A:
def __init__(self, txt: str):
self.w: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
d = A("d")
a = B("a")
f = A("f")
g = A("g")
d.w = g
d.x = f
a.w = g
f.w = d
f.x = d
g.w = f
g.x = d
assert f.x... | d" | class A:
def __init__(self, txt: str):
self.w: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
d = A("d")
a = B("a")
f = A("f")
g = A("g")
d.w = g
d.x = f
a.w = g
f.w = d
f.x = d
g.w = f
g.x = d
assert f.x... | 4 | 6 | 1.5 | 0.5 | 2 | 2 | 2 | 1 | 1.5 | 4 | 2 | 2 | 3 | 0.75 | 3 | 0.5 | 2 | 3 | 3 | 3 | 2 | 2 | 2 | 1 |
782 | class A:
def __init__(self, txt: str):
self.y: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.s: A = None
self.txt = txt
d = A("d")
j = B("j")
l = A("l")
f = B("f")
c = B("c")
d.y = l
d.q = f
j.q = d
j.s = ... | d" | class A:
def __init__(self, txt: str):
self.y: A = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.s: A = None
self.txt = txt
d = A("d")
j = B("j")
l = A("l")
f = B("f")
c = B("c")
d.y = l
d.q = f
j.q = d
j.s = ... | 5 | 9 | 1.8 | 0.45 | 2 | 2.5 | 2 | 2 | 2 | 5 | 3 | 2 | 3 | 0.6 | 3 | 0.333333 | 3 | 2 | 4 | 2.5 | 3 | 2 | 1 | 2 |
783 | class A:
def __init__(self, txt: str):
self.p: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.p: B = None
self.txt = txt
h = A("h")
c = B("c")
a = B("a")
h.p = a
h.z = a
c.u = h
c.p = a
a.u = h
a.p = c
asse... | h" | class A:
def __init__(self, txt: str):
self.p: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.p: B = None
self.txt = txt
h = A("h")
c = B("c")
a = B("a")
h.p = a
h.z = a
c.u = h
c.p = a
a.u = h
a.p = c
asse... | 3 | 5 | 1.666667 | 0.833333 | 2 | 1.5 | 2 | 2 | 2 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.4 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
784 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
b = A("b")
j = B("j")
a = B("a")
b.w = a
j.s = b
a.s = b
assert a.s.w.s.txt == " | b" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
b = A("b")
j = B("j")
a = B("a")
b.w = a
j.s = b
a.s = b
assert a.s.w.s.txt == "b" | 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 |
785 | class A:
def __init__(self, txt: str):
self.p: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
l = A("l")
m = B("m")
a = A("a")
g = A("g")
l.p = a
l.q = a
m.q = l
a.p = l
a.q = g
g.p = a
g.q = a
assert m.q... | a" | class A:
def __init__(self, txt: str):
self.p: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
l = A("l")
m = B("m")
a = A("a")
g = A("g")
l.p = a
l.q = a
m.q = l
a.p = l
a.q = g
g.p = a
g.q = a
assert m.q... | 4 | 5 | 1.25 | 0.416667 | 2 | 2 | 2 | 1 | 1.5 | 4 | 2 | 1 | 3 | 0.75 | 4 | 0.8 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
786 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
l = A("l")
i = B("i")
b = B("b")
n = A("n")
c = A("c")
d = B("d")
e = A("e")
k = B("k")
l.u = b
i.w = k
b.w = d
n.u = b
c.u = b
d.w = i... | k" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
l = A("l")
i = B("i")
b = B("b")
n = A("n")
c = A("c")
d = B("d")
e = A("e")
k = B("k")
l.u = b
i.w = k
b.w = d
n.u = b
c.u = b
d.w = i... | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 4 | 1 | 1 | 5 | 0.625 | 4 | 0.5 | 0 | null | null | null | 2 | 3 | 3 | 1 |
787 | class A:
def __init__(self, txt: str):
self.s: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
e = A("e")
j = B("j")
h = A("h")
b = B("b")
f = A("f")
g = A("g")
l = B("l")
e.s = f
e.u = h
j.t = h
h.s = f
h... | e" | class A:
def __init__(self, txt: str):
self.s: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
e = A("e")
j = B("j")
h = A("h")
b = B("b")
f = A("f")
g = A("g")
l = B("l")
e.s = f
e.u = h
j.t = h
h.s = f
h... | 7 | 11 | 1.571429 | 0.261905 | 2 | 3.5 | 2 | 1 | 1.5 | 5 | 2 | 2 | 4 | 0.571429 | 4 | 0.363636 | 2 | 2 | 2 | 2 | 3 | 2 | 1 | 1 |
788 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
b = A("b")
i = B("i")
f = A("f")
d = B("d")
n = A("n")
j = A("j")
b.s = n
i.w = d
f.s = j
d.w = i
n.s = j
j.s = n
assert i.w.w.w.w.w.w.... | i" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
b = A("b")
i = B("i")
f = A("f")
d = B("d")
n = A("n")
j = A("j")
b.s = n
i.w = d
f.s = j
d.w = i
n.s = j
j.s = n
assert i.w.w.w.w.w.w.... | 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 |
789 | class A:
def __init__(self, txt: str):
self.r: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.s: B = None
self.txt = txt
k = A("k")
c = B("c")
i = A("i")
m = A("m")
l = B("l")
h = A("h")
b = A("b")
g = B("g"... | a" | class A:
def __init__(self, txt: str):
self.r: A = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.s: B = None
self.txt = txt
k = A("k")
c = B("c")
i = A("i")
m = A("m")
l = B("l")
h = A("h")
b = A("b")
g = B("g"... | 10 | 18 | 1.8 | 0.2 | 2 | 5 | 2 | 2 | 2 | 3 | 2 | 1 | 3 | 0.3 | 3 | 0.166667 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
790 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
g = A("g")
b = B("b")
m = B("m")
l = B("l")
e = B("e")
n = B("n")
h = A("h")
c = B("c")
f = B("f")
d = B("d")
g.p = h
b.y = g
m.y = g
l... | g" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
g = A("g")
b = B("b")
m = B("m")
l = B("l")
e = B("e")
n = B("n")
h = A("h")
c = B("c")
f = B("f")
d = B("d")
g.p = h
b.y = g
m.y = g
l... | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 5 | 3 | 2 | 3 | 0.3 | 3 | 0.3 | 3 | 2 | 4 | 2.5 | 2 | 4 | 4 | 1 |
791 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
j = A("j")
l = B("l")
k = A("k")
g = B("g")
m = B("m")
j.v = m
l.s = g
k.v = m
g.s = m
m.s = l
assert g.s.s.s.s.s.txt == " | l" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
j = A("j")
l = B("l")
k = A("k")
g = B("g")
m = B("m")
j.v = m
l.s = g
k.v = m
g.s = m
m.s = l
assert g.s.s.s.s.s.txt == "l" | 5 | 5 | 1 | 0.25 | 2 | 2.5 | 1 | 1 | 1 | 5 | 2 | 2 | 3 | 0.6 | 3 | 0.6 | 3 | 3 | 3 | 3 | 1 | 5 | 5 | 1 |
792 | 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.txt = txt
e = A("e")
a = B("a")
n = A("n")
f = A("f")
g = B("g")
h = A("h")
m = B("m")
l = A("l")
e.z = m
a.x = e
n.z = g
f.z = a
g.x = e
h.z = g... | l" | 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.txt = txt
e = A("e")
a = B("a")
n = A("n")
f = A("f")
g = B("g")
h = A("h")
m = B("m")
l = A("l")
e.z = m
a.x = e
n.z = g
f.z = a
g.x = e
h.z = g... | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 4 | 1 | 1 | 5 | 0.625 | 4 | 0.5 | 0 | null | null | null | 2 | 2 | 1 | 1 |
793 | class A:
def __init__(self, txt: str):
self.v: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.q: A = None
self.txt = txt
h = A("h")
n = B("n")
b = B("b")
f = A("f")
j = B("j")
k = B("k")
g = A("g")
c = A("c"... | f" | class A:
def __init__(self, txt: str):
self.v: B = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.q: A = None
self.txt = txt
h = A("h")
n = B("n")
b = B("b")
f = A("f")
j = B("j")
k = B("k")
g = A("g")
c = A("c"... | 10 | 20 | 2 | 0.222222 | 2 | 5 | 2 | 2 | 2 | 5 | 2 | 2 | 4 | 0.4 | 4 | 0.2 | 2 | 4 | 4 | 4 | 1 | 5 | 5 | 1 |
794 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.txt = txt
g = A("g")
h = B("h")
e = B("e")
m = B("m")
f = B("f")
l = A("l")
c = A("c")
j = B("j")
i = B("i")
k = A("k")
... | f" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.txt = txt
g = A("g")
h = B("h")
e = B("e")
m = B("m")
f = B("f")
l = A("l")
c = A("c")
j = B("j")
i = B("i")
k = A("k")
... | 10 | 15 | 1.5 | 0.166667 | 2 | 5 | 2 | 1 | 1.5 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.266667 | 1 | 3 | 3 | 3 | 3 | 2 | 1 | 1 |
795 | 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
c = A("c")
a = B("a")
k = A("k")
l = A("l")
j = B("j")
e = B("e")
b = B("b")
d = A("d")
h = B("h")
i = A("i")
c.x = k
a.x = k
k.x = d
l... | k" | 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
c = A("c")
a = B("a")
k = A("k")
l = A("l")
j = B("j")
e = B("e")
b = B("b")
d = A("d")
h = B("h")
i = A("i")
c.x = k
a.x = k
k.x = d
l... | 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 |
796 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
i = A("i")
d = B("d")
b = A("b")
e = B("e")
f = B("f")
n = A("n")
l = A("l")
g = B("g")
k = B("k")
i.q = n
d.q = g
b.q = l
e.q = g
f.q ... | n" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
i = A("i")
d = B("d")
b = A("b")
e = B("e")
f = B("f")
n = A("n")
l = A("l")
g = B("g")
k = B("k")
i.q = n
d.q = g
b.q = l
e.q = g
f.q ... | 9 | 9 | 1 | 0.125 | 2 | 4.5 | 1 | 1 | 1 | 6 | 3 | 2 | 4 | 0.444444 | 4 | 0.444444 | 3 | 2 | 4 | 2.5 | 1 | 6 | 6 | 1 |
797 | 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.y: B = None
self.txt = txt
k = A("k")
j = B("j")
g = B("g")
c = A("c")
f = B("f")
a = B("a")
i = B("i")
k.p = c
j.t = k
j.y = f
g.t = c
g... | c" | 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.y: B = None
self.txt = txt
k = A("k")
j = B("j")
g = B("g")
c = A("c")
f = B("f")
a = B("a")
i = B("i")
k.p = c
j.t = k
j.y = f
g.t = c
g... | 7 | 12 | 1.714286 | 0.285714 | 2 | 3.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.428571 | 3 | 0.25 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
798 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
k = B("k")
m = A("m")
f.v = k
k.q = m
m.v = k
assert m.v.q.v.txt == " | k" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
k = B("k")
m = A("m")
f.v = k
k.q = m
m.v = k
assert m.v.q.v.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 |
799 | 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.txt = txt
a = A("a")
i = B("i")
c = B("c")
k = B("k")
n = A("n")
j = B("j")
a.q = i
i.x = k
c.x = i
k.x = i
n.q = j
j.x = c
assert n.q.x.x.x.x.tx... | i" | 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.txt = txt
a = A("a")
i = B("i")
c = B("c")
k = B("k")
n = A("n")
j = B("j")
a.q = i
i.x = k
c.x = i
k.x = i
n.q = j
j.x = c
assert n.q.x.x.x.x.tx... | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 5 | 2 | 1 | 5 | 0.833333 | 5 | 0.833333 | 1 | 2 | 2 | 2 | 2 | 4 | 4 | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.