description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
index-head | ([1, 6, 9, 3, 11, 1],) | 6 | list(int) -> int |
Prepend '+174' | ('S',) | +174S | list(char) -> list(char) |
rotate-k with k=5 | ([11, 3, 6, 7, 6, 8, 5, 6, 10, 3, 14, 4, 3, 8, 13],) | [14, 4, 3, 8, 13, 11, 3, 6, 7, 6, 8, 5, 6, 10, 3] | list(int) -> list(int) |
Append 'Angeles' | ('469',) | 469Angeles | list(char) -> list(char) |
Append 'Cornell' | ('IL',) | ILCornell | list(char) -> list(char) |
is-mod-k with k=3 | ([33, 33, 3, 21, 9, 6],) | True | list(int) -> bool |
Abbreviate separate words (IIIIII) | ('+81', 'Halpern') | +.H. | list(char) -> list(char) -> list(char) |
is-odds | ([17, 3, 21, 9],) | True | list(int) -> bool |
slice-k-n with k=2 and n=2 | ([6, 16, 14, 2, 4, 13, 11, 11, 12, 4],) | [16, 14] | list(int) -> list(int) |
is-mod-k with k=5 | ([40, 5, 15, 15, 25],) | True | list(int) -> bool |
is-mod-k with k=1 | ([4],) | True | list(int) -> bool |
nth (n=1) word delimited by ' ' | ('29 Ferrari250',) | Ferrari250 | list(char) -> list(char) |
prepend-k with k=0 | ([6, 9, 8, 16, 1, 2],) | [0, 6, 9, 8, 16, 1, 2] | list(int) -> list(int) |
Prepend '177' to first word | ('566 14',) | 177566 | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=2 and n=5 | ([1, 0, 2, 2, 2, 0, 2],) | [3, 2, 4, 4, 4, 2, 4] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=2 and n=3 | ([0, 0, 0, 2, 2],) | [2, 2, 2, 1, 1] | list(int) -> list(int) |
drop-k with k=3 | ([10, 6, 5, 4, 15, 11, 8, 8],) | [4, 15, 11, 8, 8] | list(int) -> list(int) |
nth (n=1) word delimited by ')' | ('Mariel)Carlene)Ducati100)Jeff',) | Carlene | list(char) -> list(char) |
add-k with k=5 | ([5, 14, 10, 15, 6],) | [10, 19, 15, 20, 11] | list(int) -> list(int) |
Extract word delimited by '(' - '(' | ('14(Rowden(Jeanice(Acura125',) | Rowden | list(char) -> list(char) |
Append 'Cornell' | ('101',) | 101Cornell | list(char) -> list(char) |
is-mod-k with k=3 | ([0, 16, 0, 3],) | False | list(int) -> bool |
Append '636' | ('844',) | 844636 | list(char) -> list(char) |
max | ([13, 9, 16, 8],) | 16 | list(int) -> int |
replace-all-with-index-k with k=3 | ([0, 1, 4, 13, 14],) | [4, 4, 4, 4, 4] | list(int) -> list(int) |
drop first word delimited by '(' | ('75(Rice',) | Rice | list(char) -> list(char) |
Append 2 strings (IIIIII) | ('O', '765') | O765 | list(char) -> list(char) -> list(char) |
prepend-index-k with k=5 | ([14, 7, 0, 4, 12, 2, 4, 13, 6],) | [12, 14, 7, 0, 4, 12, 2, 4, 13, 6] | list(int) -> list(int) |
prepend-index-k with k=5 | ([6, 15, 14, 11, 13, 15, 13, 11, 9],) | [13, 6, 15, 14, 11, 13, 15, 13, 11, 9] | list(int) -> list(int) |
count-k with k=5 | ([4, 12, 3, 15, 5, 5],) | 2 | list(int) -> int |
ensure suffix `Andria` | ('Madelaine +189Andria',) | Madelaine +189Andria | list(char) -> list(char) |
nth (n=-1) word delimited by '-' | ('+172-University-College',) | College | list(char) -> list(char) |
is-odds | ([11, 33, 21, 33, 17, 15],) | True | list(int) -> bool |
count-k with k=4 | ([2, 7, 3, 3],) | 0 | list(int) -> int |
drop-k with k=2 | ([2, 12, 4, 8, 13, 5, 2, 6],) | [4, 8, 13, 5, 2, 6] | list(int) -> list(int) |
Replace '-' w/ ',' | ('834-Cruz-+197-Clasen',) | 834,Cruz,+197,Clasen | list(char) -> list(char) |
Take first character and append ' ' | ('Alida',) | A | list(char) -> list(char) |
is-primes | ([5, 11, 12],) | False | list(int) -> bool |
drop first word delimited by ' ' | ('386 Georgina 720 141',) | Georgina 720 141 | list(char) -> list(char) |
mult-k with k=4 | ([3, 5, 7, 4, 4, 6],) | [12, 20, 28, 16, 16, 24] | list(int) -> list(int) |
Replace ' ' w/ '(' | ('Honda250 Casler Edison',) | Honda250(Casler(Edison | list(char) -> list(char) |
Prepend '177' to first word | ('421 Annalisa',) | 177421 | list(char) -> list(char) |
Replace ',' w/ '(' | ('066,+106,Bobo,200',) | 066(+106(Bobo(200 | list(char) -> list(char) |
keep gt 0 | ([3, 2, 0, 0, 2],) | [3, 2, 2] | list(int) -> list(int) |
Append two words delimited by ' ' | ('35', 'Rowden') | 35 Rowden | list(char) -> list(char) -> list(char) |
repeat-k with k=3 | ([4],) | [4, 4, 4] | list(int) -> list(int) |
prepend-k with k=1 | ([4, 16, 10, 8],) | [1, 4, 16, 10, 8] | list(int) -> list(int) |
drop first word delimited by ')' | ('Jeanice)+194)+189)491',) | +194)+189)491 | list(char) -> list(char) |
Prepend 'Hornak' | ('Mackenzie',) | HornakMackenzie | list(char) -> list(char) |
bool-identify-geq-k with k=0 | ([3, 3, 3, 3, 13, 14, 9],) | [True, True, True, True, True, True, True] | list(int) -> list(bool) |
caesar-cipher-k-modulo-n with k=5 and n=2 | ([0, 0, 0, 1],) | [1, 1, 1, 0] | list(int) -> list(int) |
slice-k-n with k=5 and n=2 | ([9, 4, 5, 8, 0, 4, 2, 11],) | [0, 4] | list(int) -> list(int) |
Append two words delimited by ' ' | ('Lain', 'Irwin') | Lain Irwin | list(char) -> list(char) -> list(char) |
has-k with k=0 | ([3, 8, 9],) | False | list(int) -> bool |
sort | ([],) | [] | list(int) -> list(int) |
nth (n=1) word delimited by '(' | ('W(517(+199',) | 517 | list(char) -> list(char) |
Append two words delimited by '.' | ('R', 'Rowden') | R.Rowden | list(char) -> list(char) -> list(char) |
is-mod-k with k=2 | ([22, 0, 0, 10],) | True | list(int) -> bool |
Take first 2 characters | ('Stefany',) | St | list(char) -> list(char) |
First letters of words (III) | ('Lango Babiarz R',) | LBR | list(char) -> list(char) |
prepend-index-k with k=2 | ([0, 13, 3, 1, 12, 6, 11, 9],) | [13, 0, 13, 3, 1, 12, 6, 11, 9] | list(int) -> list(int) |
nth (n=1) word delimited by ',' | ('Tobias,986,FreeHafer,+9',) | 986 | list(char) -> list(char) |
Append two words delimited by ')' | ('Vena', 'Eccleston') | Vena)Eccleston | list(char) -> list(char) -> list(char) |
prepend-k with k=2 | ([13, 1, 0],) | [2, 13, 1, 0] | list(int) -> list(int) |
Take first character and append ' ' | ('Jan',) | J | list(char) -> list(char) |
remove eq 0 | ([3, 6, 4, 2, 6],) | [3, 6, 4, 2, 6] | list(int) -> list(int) |
kth-smallest with k=2 | ([7, 4, 0, 1, 11, 0, 11],) | 0 | list(int) -> int |
remove eq 1 | ([6, 3, 6, 1, 1],) | [6, 3, 6] | list(int) -> list(int) |
prepend-k with k=0 | ([8, 0, 16, 10, 7, 12, 10],) | [0, 8, 0, 16, 10, 7, 12, 10] | list(int) -> list(int) |
repeat-k with k=3 | ([10, 8, 4],) | [10, 8, 4, 10, 8, 4, 10, 8, 4] | list(int) -> list(int) |
append-k with k=2 | ([1, 5, 15],) | [1, 5, 15, 2] | list(int) -> list(int) |
Take first character and append ',' | ('Ramthun',) | R, | list(char) -> list(char) |
nth (n=-1) word delimited by '.' | ('N.Annalisa.Houston',) | Houston | list(char) -> list(char) |
drop first word delimited by '-' | ('62-Temple',) | Temple | list(char) -> list(char) |
Take first character and append ')' | ('83',) | 8) | list(char) -> list(char) |
slice-k-n with k=3 and n=4 | ([8, 10, 5, 12, 3, 8, 0, 16, 8, 2],) | [5, 12, 3, 8] | list(int) -> list(int) |
rotate-k with k=1 | ([12, 0, 2, 3, 8, 4, 12, 4, 15, 7, 13, 4, 4, 9, 16, 7],) | [7, 12, 0, 2, 3, 8, 4, 12, 4, 15, 7, 13, 4, 4, 9, 16] | list(int) -> list(int) |
index-k with k=1 | ([1, 12, 4, 0, 0, 14, 14, 14],) | 1 | list(int) -> int |
nth (n=1) word delimited by '(' | ('W(517(+199',) | 517 | list(char) -> list(char) |
Append two words delimited by ' ' | ('051', '+174') | 051 +174 | list(char) -> list(char) -> list(char) |
count-head-in-tail | ([2, 3, 4],) | 0 | list(int) -> int |
pop | ([14, 16, 1, 3, 10, 0],) | [14, 16, 1, 3, 10] | list(int) -> list(int) |
First letters of words (I) | ('+118 Chism 428 Acura100',) | +C4A | list(char) -> list(char) |
Prepend '177' to first word | ('421 Annalisa',) | 177421 | list(char) -> list(char) |
First letters of words (IIIII) | ('Honda550 +180 Q',) | H+Q | list(char) -> list(char) |
slice-k-n with k=5 and n=1 | ([6, 3, 16, 10, 7, 13, 3, 4],) | [7] | list(int) -> list(int) |
ensure suffix `Ramthun` | ('Bogle Miah Honda250 Trinidad',) | Bogle Miah Honda250 TrinidadRamthun | list(char) -> list(char) |
Prepend '170' to first word | ('of Latimore',) | 170of | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=4 and n=3 | ([1, 0, 0, 2, 0, 1],) | [2, 1, 1, 0, 1, 2] | list(int) -> list(int) |
append-k with k=5 | ([5],) | [5, 5] | list(int) -> list(int) |
kth-smallest with k=1 | ([12, 13],) | 12 | list(int) -> int |
parentheses around a single word (IIIII) | ('York',) | (York) | list(char) -> list(char) |
parentheses around a single word (III) | ('NY',) | (NY) | list(char) -> list(char) |
parentheses around second word | ('856 +138 424 Montiel',) | (+138) | list(char) -> list(char) |
remove-index-k with k=5 | ([11, 16, 6, 0, 0, 8, 12],) | [11, 16, 6, 0, 8, 12] | list(int) -> list(int) |
count-k with k=4 | ([2, 7, 12],) | 0 | list(int) -> int |
bool-identify-k with k=3 | ([2, 13],) | [False, False] | list(int) -> list(bool) |
Extract word delimited by ',' - '.' | ('504,566.20.F',) | 566 | list(char) -> list(char) |
mult-k with k=0 | ([7, 11, 13, 15, 16, 16],) | [0, 0, 0, 0, 0, 0] | list(int) -> list(int) |
prepend-index-k with k=5 | ([3, 9, 3, 9, 3, 11],) | [3, 3, 9, 3, 9, 3, 11] | list(int) -> list(int) |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.