start
stringlengths
5
368
code
stringlengths
5
143
end
stringlengths
5
527
h = 630; i = 3144
i = abs(h)
h = 630; i = 630
d = [1, 2, 2]; o = 2
d.append(o)
d = [1, 2, 2, 2]; o = 2
l = 2; x = [9, 6, 4, 3]
x.append(l)
l = 2; x = [9, 6, 4, 3, 2]
a = [1, 4, 5, 3, 2]; i = 3; x = {(1): [0], (4): [1], (5): [2]}
x[a[i]] = [i]
a = [1, 4, 5, 3, 2]; i = 3; x = {1: [0], 4: [1], 5: [2], 3: [3]}
a = [[1, 3, 4], [2, 2, 3], [1, 2, 4]]; i = 2; j = 1; t = 46
t += a[i][j]
a = [[1, 3, 4], [2, 2, 3], [1, 2, 4]]; i = 2; j = 1; t = 48
x = [0, 0, 1, 2, 1]
g = set(x)
g = {0, 1, 2}; x = [0, 0, 1, 2, 1]
r = [0, 1, 2, 3, 4, 5, 0, 0, 0, 0, 0, 0, 0]; u = 6; w = 6
r[w] = u
r = [0, 1, 2, 3, 4, 5, 6, 0, 0, 0, 0, 0, 0]; u = 6; w = 6
w = 1
w += 2
w = 3
s = ['l', 'u']
s = ''.join(s)
s = 'lu'
c = 1; j = 2; r = 0; s = 0
o = 4 * s + (8 + 12 * c) * r + (1 + c * (12 + 16 * c)) * j
c = 1; j = 2; o = 58; r = 0; s = 0
q = deque([4, 2, 0])
z = q.popleft()
q = deque([2, 0]); z = 4
j = '(([a-zA-Z0-9])\\2{1,})'; p = '(([a-zA-Z0-9])\\2{1,})'
j = p
j = '(([a-zA-Z0-9])\\2{1,})'; p = '(([a-zA-Z0-9])\\2{1,})'
i = 2; s = 2
s = 2 ** i
i = 2; s = 4
b = 6044629098073145873530880
b <<= 1
b = 12089258196146291747061760
b = 19
b = b + 1
b = 20
d = {'afiil': 1, 'afilu': 1, 'ahilu': 1, 'hiklu': 1, 'hklqu': 1}; h = 'hkqqu'
d[h] = d.setdefault(h, 0) + 1
d = {'afiil': 1, 'afilu': 1, 'ahilu': 1, 'hiklu': 1, 'hklqu': 1, 'hkqqu': 1}; h = 'hkqqu'
y = []
v = y.append
v = <built-in method append of list object at 0x7f1c77acbdc0>; y = []
i = 2; j = 3; k = 5
i = j = k = 0
i = 0; j = 0; k = 0
c = [set(), set(), {2}, set()]; i = 3; j = 3
c[j].add(i)
c = [set(), set(), {2}, {3}]; i = 3; j = 3
o = ' 1 2'
o = list(map(int, o.split()))
o = [1, 2]
i = 1; s = '123'; x = 3
x = int(s[i])
i = 1; s = '123'; x = 2
s = {2, 3, 4, 5, 6, 7, 8, 9}; z = ['remove', '9']
s.remove(int(z[1]))
s = {2, 3, 4, 5, 6, 7, 8}; z = ['remove', '9']
a = -470; b = -20; h = 50
h = b - a
a = -470; b = -20; h = 450
d = [1, 2, 3, 4, 5, 4, 3, 2, 1, 3, 4]; h = [1, 1, 1, 1, 1]; i = 5
h[d[i] - 1] += 1
d = [1, 2, 3, 4, 5, 4, 3, 2, 1, 3, 4]; h = [1, 1, 1, 2, 1]; i = 5
c = ['discard', '6']; s = {3, 4, 5, 6}
s.discard(int(c[1]))
c = ['discard', '6']; s = {3, 4, 5}
g = 2; j = 2; z = [[2, 1], [1, 1], [2, 3], [3, 3]]
z.append([g + 1, j])
g = 2; j = 2; z = [[2, 1], [1, 1], [2, 3], [3, 3], [3, 2]]
g = 30; h = {(10): 3, (20): 2}
h[g] = h.get(g, 0) + 1
g = 30; h = {10: 3, 20: 2, 30: 1}
i = 2; k = 2; q = '99100'
k = len(str(int(q[:i]) + 1))
i = 2; k = 3; q = '99100'
b = 100; x = 3
b = x
b = 3; x = 3
a = set(); q = 2; v = [1, 2, 3, 3]
a.add(v[q])
a = {3}; q = 2; v = [1, 2, 3, 3]
a = ['BANANA', 'FRIES', '12']
a[-1] = int(a[-1])
a = ['BANANA', 'FRIES', 12]
m = [(1, 0), (0, 1), (2, 1), (1, 2), (0, 2), (2, 0), (2, 2)]; x = 1; y = 1
x, y = m.pop()
m = [(1, 0), (0, 1), (2, 1), (1, 2), (0, 2), (2, 0)]; x = 2; y = 2
r = 1.200000000000001e-65
r /= 10
r = 1.200000000000001e-66
a = '01b0'; k = 0
k = a.find('10', k)
a = '01b0'; k = -1
i = 6; o = [1, 2, 1, 2, 1, 2, 1, 1, 1, 1]
o[i] = o[i - 1] + 1
i = 6; o = [1, 2, 1, 2, 1, 2, 3, 1, 1, 1]
h = [2, 2, 2, 2, 2, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; u = [2, 2, 2, 2, 2, 1, 1]; x = 7
u.append(h[x])
h = [2, 2, 2, 2, 2, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; u = [2, 2, 2, 2, 2, 1, 1, 1]; x = 7
s = 51539607552; u = [3, 6, 12, 24, 48, 96, 805306368, 1610612736, 3221225472, 6442450944, 12884901888, 25769803776]
u.append(s)
s = 51539607552; u = [3, 6, 12, 24, 48, 96, 805306368, 1610612736, 3221225472, 6442450944, 12884901888, 25769803776, 51539607552]
a = 8; b = 159; c = 88; k = 5
k -= bin((a | b) ^ c).count('1')
a = 8; b = 159; c = 88; k = 0
b = 304250263527210; k = 13; p = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71 ]
b *= p[k]
b = 13082761331670030; k = 13; p = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71]
b = [0, 1, 3, 0, 4, 1, 7, 0, 8, 1, 11, 0, 12, 1, 15, 0, 16, 1, 19, 0, 20, 1, 23, 0, 24, 1, 27]; x = 27
b.append(b[-1] ^ x)
b = [0, 1, 3, 0, 4, 1, 7, 0, 8, 1, 11, 0, 12, 1, 15, 0, 16, 1, 19, 0, 20, 1, 23, 0, 24, 1, 27, 0]; x = 27
a = 10; b = 100; i = [2, 3, 4]; n = 4; q = 0
i.append(q * a + (n - q - 1) * b)
a = 10; b = 100; i = [2, 3, 4, 300]; n = 4; q = 0
i = 10; t = ['I', 'came', 'from', 'the', 'moon.', 'He', 'went', 'She', 'went', 'to', 'the', 'drawing', 'room.']; w = ['other', 'room.', 'she']
w.append(t[i].lower())
i = 10; t = ['I', 'came', 'from', 'the', 'moon.', 'He', 'went', 'She', 'went', 'to', 'the', 'drawing', 'room.']; w = ['other', 'room.', 'she', 'the']
a = [0, 1, 2]; i = 2; j = 3; l = ['.....', '.x.x.', '.....', '.....']
a.append(-1 if l[i][j] == 'x' else a[j - 1] + 1)
a = [0, 1, 2, 3]; i = 2; j = 3; l = ['.....', '.x.x.', '.....', '.....']
a = 216, 0; i = 0; q = 96
q, i = a
a = (216, 0); i = 0; q = 216
a = 10; c = 10; r = [100]
r.append(c + a)
a = 10; c = 10; r = [100, 20]
l = 2; z = 2
l = l % z + l // z
l = 1; z = 2
h = [0, 1, 2]; i = 5; u = [1, 2, 3, 4, 5]; x = 5; z = 3
x = max(x, u[z] * (i - h[-1] - 1))
h = [0, 1, 2]; i = 5; u = [1, 2, 3, 4, 5]; x = 8; z = 3
a = [1, 5, 10, 12, 111, 200, 1000]; i = 3; j = 16
j += a[i]
a = [1, 5, 10, 12, 111, 200, 1000]; i = 3; j = 28
c = '4 1\n0 2\n\n\n\n'; f = 1.0; i = 6.0
c = i - f
c = 5.0; f = 1.0; i = 6.0
b = 'aaaaaa'; i = 0; j = 0
f = b[i:j + 1]
b = 'aaaaaa'; f = 'a'; i = 0; j = 0
d = [2, 1, 3, 1, 2]; h = 1
h = len(d)
d = [2, 1, 3, 1, 2]; h = 5
b = 6; p = 12
p = b
b = 6; p = 6
q = [1, 2]
del q[0]
q = [2]
f = ['a', 'b', 'd', 'c']; i = 3; j = 3
i = j = len(f) - 1
f = ['a', 'b', 'd', 'c']; i = 3; j = 3
a = '0b1010'
a = a[::-1]
a = '0101b0'
i = 3; v = [-1, -1, 0, -1]; x = 2
v[i] = v[x] + 6
i = 3; v = [-1, -1, 0, 6]; x = 2
a = 1; b = 0; c = 2
c = max(a, b)
a = 1; b = 0; c = 1
i = 2; j = 0
j = i - 1
i = 2; j = 1
a = 1; q = ['3', '2']
a = int(q[0])
a = 3; q = ['3', '2']
k = 6; o = {'i': 2, 'f': 1, 'a': 1, 'l': 1, 'u': 1}; p = 0; u = 'ifailuhkqq'
o[u[p + k]] = 1
k = 6; o = {'i': 2, 'f': 1, 'a': 1, 'l': 1, 'u': 1, 'h': 1}; p = 0; u = 'ifailuhkqq'
j = '11111111111111100001110'
j += '1'
j = '111111111111111000011101'
t = 9
t = t - 1
t = 8
a = 750025724
a = a * a % 1000000007
a = 723954102
j = 0; x = [[2]]
q = list(x[j])
j = 0; q = [2]; x = [[2]]
j = [0, -1, -1, -1, -1, -1, -1, -1, -1, -1]; k = 9; o = 1
j = [(0) for o in range(k + 1)]
j = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; k = 9; o = 1
j = 1; x = 1
j += x
j = 2; x = 1
b = {(1): 100, (2): 200}; w = [100, 200, 100, 500, 100, 600]; y = 3
b[y] = w[y - 1]
b = {1: 100, 2: 200, 3: 100}; w = [100, 200, 100, 500, 100, 600]; y = 3
a = 2
v.append(a)
a = 2; v = [2]
a = 3; c = 5; h = 8
h = a + c
a = 3; c = 5; h = 8
f = 14
f += 1
f = 15
j = 1; k = 1; t = [67, 17]
t = j + k
j = 1; k = 1; t = 2
x = 1; z = 3
t = abs(x - z)
t = 2; x = 1; z = 3
b = 4; c = ['h', '', '', '']; o = 1; v = 'a'
c[o % b] += v
b = 4; c = ['h', 'a', '', '']; o = 1; v = 'a'
d = {'a': 2, 'b': 1, 'c': 1, 'd': 1, 'e': 1, 'f': 1, 'g': 1}; i = 7; s = 'abcdefgabcdefg'
d[s[i]] -= 1
d = {'a': 1, 'b': 1, 'c': 1, 'd': 1, 'e': 1, 'f': 1, 'g': 1}; i = 7; s = 'abcdefgabcdefg'
h = '0000000000000000000000100'
h = '0' + h
h = '00000000000000000000000100'
r = 10
r += 1
r = 11
b = ['Malika', '52', '56', '60']; h = 'Arjun'
h = str(b.pop(0))
b = ['52', '56', '60']; h = 'Malika'
a = 10; c = 100; r = [20, 110]
r.append(c + a)
a = 10; c = 100; r = [20, 110, 110]
a = 2; b = 10; i = 7; j = 1280
j += a ^ b << i
a = 2; b = 10; i = 7; j = 2562
m = 0; w = 'bb'
m = len(w) - 2
m = 0; w = 'bb'
u = ['{', '[']; x = '{'
u.append(x)
u = ['{', '[', '{']; x = '{'
d = deque([1, 2, 3]); y = ['appendleft', '4']
d.appendleft(int(y[1]))
d = deque([4, 1, 2, 3]); y = ['appendleft', '4']
i = 3; w = {(2): 1, (4): 2}; y = [2, 2, 4, 3]
w[y[i]] = i
i = 3; w = {2: 1, 4: 2, 3: 3}; y = [2, 2, 4, 3]
s = 'aaab'
b = list(s)
b = ['a', 'a', 'a', 'b']; s = 'aaab'
i = 1; j = [(-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1)]; l = 2; r = 3
j[i] = l, r
i = 1; j = [(-1, -1), (2, 3), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1)]; l = 2; r = 3
f = 3; h = 5; r = 1
f = h - r
f = 4; h = 5; r = 1
b = 1; i = 3; k = 2
r = k * i + b
b = 1; i = 3; k = 2; r = 7
q = ['Krishna', '67', '68', '69']
g[q[0]] = [float(q[1]), float(q[2]), float(q[3])]
g = {'Krishna': [67.0, 68.0, 69.0]}; q = ['Krishna', '67', '68', '69']
a = [9, 90, 99, 900, 909, 990, 999, 9000, 999009, 999090, 999099, 999900, 999909, 999990, 999999, 9000000]; e = 65
a.append(int(bin(e)[2:]) * 9)
a = [9, 90, 99, 900, 909, 990, 999, 9000, 999009, 999090, 999099, 999900, 999909, 999990, 999999, 9000000, 9000009]; e = 65
e = {'c': 1}
s.append(e)
e = {'c': 1}; s = [{'c': 1}]
j = '101'; o = 1; s = '010203'; w = 3; z = 3
w, z, j = o, o, s[:o]
j = '0'; o = 1; s = '010203'; w = 1; z = 1
n = 0.25
n /= 2
n = 0.125
b = 1; l = 2; m = [9, 1, 9, 2]; w = [[1, 1, 1, 2], [1, 9, 1, 2], [1, 8, 9, 2], [1, 2, 3, 4]]
m.append(w[b][l])
b = 1; l = 2; m = [9, 1, 9, 2, 1]; w = [[1, 1, 1, 2], [1, 9, 1, 2], [1, 8, 9, 2], [1, 2, 3, 4]]
r = [4, 5, 2, 3, -4, -3, -5]
r.sort()
r = [-5, -4, -3, 2, 3, 4, 5]
x = 4
x >>= 1
x = 2
a = 10; c = {(1): 1, (2): 2, (3): 2, (4): 3, (5): 3, (6): 4, (7): 4, (8): 4, (9): 5}; i = 8
c[a] = c[i] + 1
a = 10; c = {1: 1, 2: 2, 3: 2, 4: 3, 5: 3, 6: 4, 7: 4, 8: 4, 9: 5, 10: 5}; i = 8
f = 1; k = {'c': 2, 'd': 2, 'cd': 3, 'ccd': 1, 'cdd': 1, 'ccdd': 1}; u = 'd'
f += (k[u] - 1) * k[u] // 2
f = 2; k = {'c': 2, 'd': 2, 'cd': 3, 'ccd': 1, 'cdd': 1, 'ccdd': 1}; u = 'd'
w = {}; x = [['.', '.', '.', '.', '.', '.'], ['.', '.', '.', '.', '.', '.'], ['.', '.', '.', 'O', '.', '.'], ['.', '.', '.', '.', '.', '.'], ['O', 'O', '.', '.', '.', '.'], ['O', 'O', '.', '.', '.', '.']]; y = []
w[id(x)] = y
w = {139760243665568: []}; x = [['.', '.', '.', '.', '.', '.'], ['.', '.', '.', '.', '.', '.'], ['.', '.', '.', 'O', '.', '.'], ['.', '.', '.', '.', '.', '.'], ['O', 'O', '.', '.', '.', '.'], ['O', 'O', '.', '.', '.', '.']]; y = []
p = 1.7999999999999997e-17
p /= 10
p = 1.7999999999999997e-18
k = 'b'; x = 'babfab'
x = x.replace(k, '')
k = 'b'; x = 'afa'