start
stringlengths 5
368
| code
stringlengths 5
143
| end
stringlengths 5
527
|
---|---|---|
b = 95; q = [70, 25]; v = [70, 25] | v = [b] + q[2:] | b = 95; q = [70, 25]; v = [95] |
d = ['a']; i = 3; n = 'aaabbbb\n' | d.append(n[i]) | d = ['a', 'b']; i = 3; n = 'aaabbbb\n' |
i = 'dowhatwemustbecausewecan'; j = 19; x = 'whatwemustbecause' | x += i[j] | i = 'dowhatwemustbecausewecan'; j = 19; x = 'whatwemustbecausew' |
o = ( '1 1 3 3 6 8 9 9 10 12 13 16 16 18 20 21 21 22 23... 69 69 70 70 73 73 74 75 75 76 78 78 79 79 80 81 ' ); x = 81 | o += str(x) + ' ' | o = '1 1 3 3 6 8 9 9 10 12 13 16 16 18 20 21 21 22 23... 69 69 70 70 73 73 74 75 75 76 78 78 79 79 80 81 81 '; x = 81 |
b = 0; q = [[1, 1, 0, 0], [0, 1, 1, 0], [0, 0, 1, 0], [1, 0, 0, 0]]; z = 0 | q[z][b] = -1 | b = 0; q = [[-1, 1, 0, 0], [0, 1, 1, 0], [0, 0, 1, 0], [1, 0, 0, 0]]; z = 0 |
l = '5 4 4 2 2 8' | y = l.split() | l = '5 4 4 2 2 8'; y = ['5', '4', '4', '2', '2', '8'] |
n = 999; s = 3 | s = len(str(n + 1)) | n = 999; s = 4 |
e = 1; j = 0; l = [1, 2, 2, 3, 2] | l[j + 1] = e | e = 1; j = 0; l = [1, 1, 2, 3, 2] |
k = 'aaabccddd'; m = 2; z = [] | z.append(k[m]) | k = 'aaabccddd'; m = 2; z = ['a'] |
x = 4; y = 8 | y = x + 2 | x = 4; y = 6 |
e = 1; f = 'd'; o = 'cd' | f += o[:e] | e = 1; f = 'dc'; o = 'cd' |
l = '0000000000000' | l += '0' | l = '00000000000000' |
i = 4; x = 7 | x = max(x + i, i, x) | i = 4; x = 11 |
c = 1; g = 2; m = 2 | g = g % m + c | c = 1; g = 1; m = 2 |
n = '1' | l += [int(n)] | l = [1]; n = '1' |
f = [50, 13, 2]; i = 0; t = 110 | t ^= f[i] | f = [50, 13, 2]; i = 0; t = 92 |
c = 'A'; x = {'G': 1, 'A': 3, 'T': 0} | x[c] -= 1 | c = 'A'; x = {'G': 1, 'A': 2, 'T': 0} |
l = [2, 5, None, 3, 4]; r = 3 | l[r] = None | l = [2, 5, None, None, 4]; r = 3 |
c = 'b'; i = 3; r = 'bebeeeb' | c = r[i] | c = 'e'; i = 3; r = 'bebeeeb' |
j = 'h%x'; w = ['Tsi'] | w.append(j) | j = 'h%x'; w = ['Tsi', 'h%x'] |
a = [2, 1, 3]; h = 3; i = 0 | h = a[i] | a = [2, 1, 3]; h = 2; i = 0 |
g = [0, 1, 1, 2]; i = 4 | g.append(g[i - 1] + g[i - 2]) | g = [0, 1, 1, 2, 3]; i = 4 |
k = 9223372036854775807; n = 10, 13, 3; x = 0 | k = n[x] ^ n[x + 1] | k = 7; n = (10, 13, 3); x = 0 |
d = 0.3125; k = 0.3125; q = 1 | d = (k + 1 - q) / 2 + q - 1 | d = 0.15625; k = 0.3125; q = 1 |
i = 3; q = [1, 2, 3, 5, 4] | q[i] = q[i + 1] | i = 3; q = [1, 2, 3, 4, 4] |
i = 3 | i = s | i = -57; s = -57 |
m = ['{', '{', '[', '[', '(', '(']; q = '(' | q = m.pop() | m = ['{', '{', '[', '[', '(']; q = '(' |
r = [91, 94, 97]; v = [72.0, 67.0, 92.0, 95.0, 59.0, 58.0, 95.0] | v.append(float(r[1])) | r = [91, 94, 97]; v = [72.0, 67.0, 92.0, 95.0, 59.0, 58.0, 95.0, 94.0] |
a = 7; l = [1, 1, 1, 1, 2, 3, 4, 4]; u = 2 | l[a] = l[a] + l[a - u * u] | a = 7; l = [1, 1, 1, 1, 2, 3, 4, 5]; u = 2 |
s = {}; x = ['+', 22]; y = [] | s[id(x)] = y | s = {139760243790064: []}; x = ['+', 22]; y = [] |
i = 4; o = [0, 0, 1, 2, 1, 0]; s = 2 | o[i] = s | i = 4; o = [0, 0, 1, 2, 2, 0]; s = 2 |
a = [67, 17]; x = 49 | x = a[0] | a = [67, 17]; x = 67 |
x = [26]; y = 91 | x.append(y) | x = [26, 91]; y = 91 |
j = 42 | j += i | i = -5; j = 37 |
x = [0, 2]; z = 4 | x.append(z) | x = [0, 2, 4]; z = 4 |
k = 3; y = 4 | y = y - k | k = 3; y = 1 |
e = [0, 1, 1, 2, 2, 3, 3]; i = 4 | e.append(i) | e = [0, 1, 1, 2, 2, 3, 3, 4]; i = 4 |
i = 9; k = 9 | k = i + 1 | i = 9; k = 10 |
f = 4; l = [4, 4] | l.append(f) | f = 4; l = [4, 4, 4] |
i = '['; q = ['{', '{', '['] | q.append(i) | i = '['; q = ['{', '{', '[', '['] |
d = 4; r = 2; u = 3 | d += abs(u - r) | d = 5; r = 2; u = 3 |
a = [3, 3, 3]; c = [[3, 6, 9], [0, 3, 6], [0, 0, 0]]; i = 2; j = 2 | c[i][j] = a[i] | a = [3, 3, 3]; c = [[3, 6, 9], [0, 3, 6], [0, 0, 3]]; i = 2; j = 2 |
d = [2, 6, 30, 210, 2310]; r = 30030 | d.append(r) | d = [2, 6, 30, 210, 2310, 30030]; r = 30030 |
a = [6, 5, 2]; i = 2; t = 11 | t = t + a[i] | a = [6, 5, 2]; i = 2; t = 13 |
s = 1.7999999999999995e-41 | s = s / 10 | s = 1.7999999999999995e-42 |
l = 4; q = 'xy'; s = 'xaxbbbxx' | q = s[:l] | l = 4; q = 'xaxb'; s = 'xaxbbbxx' |
y = 1000 | y += 1 | y = 1001 |
j = 3; n = [1, 3, 3, 1] | n[j] = n[j] + n[j - 1] | j = 3; n = [1, 3, 3, 4] |
n = 1.0000000000000004e-79 | n /= 10 | n = 1.0000000000000005e-80 |
p = [2, 2, 3] | r = p[0] | p = [2, 2, 3]; r = 2 |
i = 3; j = [21, 23, 25, 6, 8]; p = 1; s = 2 | j[i] += 10 * s + 1 * p | i = 3; j = [21, 23, 25, 27, 8]; p = 1; s = 2 |
c = [1, 3, 5, 7, 9]; j = 1; o = 1 | o = c[j] | c = [1, 3, 5, 7, 9]; j = 1; o = 3 |
m = '9'; w = '5' | w, m = int(w), int(m) | m = 9; w = 5 |
m = [1, 1]; u = 2 | u = int(len(m) / 2) | m = [1, 1]; u = 1 |
q = {'e', 'w'}; x = 'p' | q.add(x.lower()) | q = {'e', 'p', 'w'}; x = 'p' |
b = [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; j = 2 | b[j] += 1 | b = [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; j = 2 |
j = 4, 20; n = 1; r = 24; s = [-1, 0, 24, -1, -1] | r = s[n] + j[1] | j = (4, 20); n = 1; r = 20; s = [-1, 0, 24, -1, -1] |
y = [89.0, 90.0, 78.0, 93.0, 80.0] | z.append(y) | y = [89.0, 90.0, 78.0, 93.0, 80.0]; z = [[89.0, 90.0, 78.0, 93.0, 80.0]] |
c = 2 | c //= 2 | c = 1 |
i = 3; l = [1, 2, 3, 4]; t = 6; u = 6 | t = u + l[i] | i = 3; l = [1, 2, 3, 4]; t = 10; u = 6 |
c = 28; v = 16 | v = c | c = 28; v = 28 |
i = 4; x = [2, 3, 6, 6, '5'] | x[i] = int(x[i]) | i = 4; x = [2, 3, 6, 6, 5] |
d = 2 | d += 1 | d = 3 |
c = ['', 'abc', '']; s = 'xy' | s = c.pop() | c = ['', 'abc']; s = '' |
q = [2, 1, 5, 3, 4] | t = sorted(q) | q = [2, 1, 5, 3, 4]; t = [1, 2, 3, 4, 5] |
o = ( '1 1 3 3 6 8 9 9 10 12 13 16 16 18 20 21 21 22 23... 40 40 41 42 43 44 44 46 46 48 50 53 56 56 57 59 ' ); x = 60 | o += str(x) + ' ' | o = '1 1 3 3 6 8 9 9 10 12 13 16 16 18 20 21 21 22 23... 40 40 41 42 43 44 44 46 46 48 50 53 56 56 57 59 60 '; x = 60 |
g = 2; i = 1; o = [] | o.append(i ** g) | g = 2; i = 1; o = [1] |
q = 60; y = 31 | q += y | q = 91; y = 31 |
i = 0; p = 1; s = [1, 2, 3, 4, 3, 3, 2, 1] | s[i] = s[i] - p | i = 0; p = 1; s = [0, 2, 3, 4, 3, 3, 2, 1] |
i = 'coconuts'; p = {'ive': 1, 'got': 1, 'a': 1, 'lovely': 1, 'bunch': 1, 'of': 1} | p[i] = 1 | i = 'coconuts'; p = {'ive': 1, 'got': 1, 'a': 1, 'lovely': 1, 'bunch': 1, 'of': 1, 'coconuts': 1} |
i = 4; l = ['because', 'can', 'do', 'must', 'we', 'what']; t = 'wemustbecausewecan'; v = 0 | v = t.find(l[i]) | i = 4; l = ['because', 'can', 'do', 'must', 'we', 'what']; t = 'wemustbecausewecan'; v = 0 |
a = [9, 90, 99, 900, 909, 990, 999, 9000, 9009, 9090, 9099, 9900]; e = 13 | a.append(int(bin(e)[2:]) * 9) | a = [9, 90, 99, 900, 909, 990, 999, 9000, 9009, 9090, 9099, 9900, 9909]; e = 13 |
a = 2; i = 3; m = 5; y = 0 | e = a * 1.0j + y - (i * 1.0j + m) | a = 2; e = (-5-1j); i = 3; m = 5; y = 0 |
d = 1.2000000000000002e-15 | d = d / 10 | d = 1.2000000000000003e-16 |
l = 1; v = 1 | l -= v | l = 0; v = 1 |
j = '+-++++++++'; t = ['+-++++++++', '+-++++++++', '+-------++', '+-++++++++'] | t.append(j) | j = '+-++++++++'; t = ['+-++++++++', '+-++++++++', '+-------++', '+-++++++++', '+-++++++++'] |
k = 9; r = ( 'In the third category he included those Brothers..., breathless from his gallop and his excitement. ' ); s = 'In the th' | s += r[k] | k = 9; r = 'In the third category he included those Brothers..., breathless from his gallop and his excitement. '; s = 'In the thi' |
d = [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; i = 'c' | d[ord(i) - 97] += 1 | d = [2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; i = 'c' |
b = {(32): ['31415926535897932384626433832795'], (1): ['1', '3'], (2): ['10']}; e = 1; s = '3' | b[e].append(s) | b = {32: ['31415926535897932384626433832795'], 1: ['1', '3', '3'], 2: ['10']}; e = 1; s = '3' |
f = ['1', '3', '4', '5', '6', '2']; j = 5 | f[j] = f[j - 1] | f = ['1', '3', '4', '5', '6', '6']; j = 5 |
a = [0, 1, 1, 2]; i = 2 | a.append(i) | a = [0, 1, 1, 2, 2]; i = 2 |
k = 13; s = 'aaabbbbaaaaaa' | k = len(s) | k = 13; s = 'aaabbbbaaaaaa' |
c = 'd'; i = {'a': 1, 'b': 1, 'c': 1}; w = {'c': 1, 'd': 1, 'e': 1}; z = {'c': 0} | z[c] = abs(w[c] - i.get(c, 0)) | c = 'd'; i = {'a': 1, 'b': 1, 'c': 1}; w = {'c': 1, 'd': 1, 'e': 1}; z = {'c': 0, 'd': 1} |
i = 10; s = [1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880] | s.append(s[i - 1] * i) | i = 10; s = [1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 3628800] |
i = [0, 9, 9, 27, 0]; j = 4; q = [0, 9, 18, 27, 0]; u = [10, 1, 10, 1, 10] | i[j] = q[j - 1] + abs(u[j - 1] - 1) | i = [0, 9, 9, 27, 27]; j = 4; q = [0, 9, 18, 27, 0]; u = [10, 1, 10, 1, 10] |
f = [3, 4, 5]; j = 6 | f.append(j) | f = [3, 4, 5, 6]; j = 6 |
b = '24' | b = float(b) | b = 24.0 |
k = 'ab' | s = k | k = 'ab'; s = 'ab' |
j = 5; k = 5; x = 0 | x = max(j, k) % min(j, k) | j = 5; k = 5; x = 0 |
g = {'', 'dba', 'bac', 'dbac', 'ba', 'b', 'db', 'd'}; n = 2; p = 3; q = 'dbac' | g.add(q[n:p]) | g = {'', 'ba', 'd', 'bac', 'b', 'dba', 'a', 'db', 'dbac'}; n = 2; p = 3; q = 'dbac' |
i = 22; w = {'016', '23', '56', '008', '024', '125', '24', '27', '056', '012', '136', '046', '088', '8', '00', ...} | w.add(''.join(sorted([str(8 * i % 10), str(int(8 * i / 10) % 10), str(int(8 * i / 100) % 10)]))) | i = 22; w = {'046', '088', '056', '27', '008', '24', '136', '125', '56', '23', '8', Ellipsis, '167', '016', '00', '024', '012'} |
j = ['4', '3'] | k = int(j[1]) | j = ['4', '3']; k = 3 |
i = ['1', 'be']; m = [(0, '-'), (6, '-'), (0, '-'), (6, '-'), (4, '-'), (0, '-'), (4, 'that' ), (3, 'be'), (0, 'to')] | m.append((int(i[0]), i[1])) | i = ['1', 'be']; m = [(0, '-'), (6, '-'), (0, '-'), (6, '-'), (4, '-'), (0, '-'), (4, 'that'), (3, 'be'), (0, 'to'), (1, 'be')] |
i = 1; j = 2; p = 1; s = '010203' | p = int(s[j:j + i]) | i = 1; j = 2; p = 0; s = '010203' |
f = 'ifailuhkqq'; i = 1; j = 8; s = 'failuh' | s = f[i:j] | f = 'ifailuhkqq'; i = 1; j = 8; s = 'failuhk' |
c = [1, 1, 1]; x = 2 | x = c[0] | c = [1, 1, 1]; x = 1 |
f = [0, 1, 6, 4, 3, 9, 2, 8, 7, 5, 10]; i = 7; k = [1, 1, 6, 2, 6, 10, 9]; p = 11 | k.append(k[-1] * f[i] % p) | f = [0, 1, 6, 4, 3, 9, 2, 8, 7, 5, 10]; i = 7; k = [1, 1, 6, 2, 6, 10, 9, 6]; p = 11 |
e = '1'; h = ['3', '2'] | e = h[0] | e = '3'; h = ['3', '2'] |
r = '2'; s = {'1': 1, '2': 1, '3': 1, '6': 1, '5': 1, '4': 2} | s[r] = s[r] + 1 | r = '2'; s = {'1': 1, '2': 2, '3': 1, '6': 1, '5': 1, '4': 2} |
c = ( 'In the third category he included those Brothers..., breathless from his gallop and his excitement. ' ); k = 78; p = ( 'In the third category he included those Brothers (the majority) who saw nothin' ) | p += c[k] | c = 'In the third category he included those Brothers..., breathless from his gallop and his excitement. '; k = 78; p = 'In the third category he included those Brothers (the majority) who saw nothinp' |
Subsets and Splits