description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
add-k with k=1 | ([],) | [] | list(int) -> list(int) |
modulo-k with k=1 | ([16, 15, 1, 12, 4, 0, 0],) | [0, 0, 0, 0, 0, 0, 0] | list(int) -> list(int) |
Extract word delimited by ',' - ',' | ('+75,FreeHafer,861,Babiarz',) | FreeHafer | list(char) -> list(char) |
Extract word delimited by ',' - ',' | ('Barbara,+86,95,Urbana',) | +86 | list(char) -> list(char) |
First letters of words (I) | ('Andria Richert 652 Penn',) | AR6P | list(char) -> list(char) |
keep primes | ([17, 8, 6, 2, 7, 5, 23],) | [17, 2, 7, 5, 23] | list(int) -> list(int) |
First letters of words (I) | ('81 Heintz Pannell',) | 8HP | list(char) -> list(char) |
Replace ' ' w/ '(' | ('+9 Rowden Reily',) | +9(Rowden(Reily | list(char) -> list(char) |
Append two words delimited by ' -' | ('622', 'Andrew') | 622 -Andrew | list(char) -> list(char) -> list(char) |
keep-mod-head | ([6, 18],) | [18] | list(int) -> list(int) |
pow-k with k=2 | ([],) | [] | list(int) -> list(int) |
slice-k-n with k=5 and n=2 | ([13, 13, 3, 6, 5, 1, 1, 7],) | [5, 1] | list(int) -> list(int) |
prepend-k with k=4 | ([0, 7, 1, 14],) | [4, 0, 7, 1, 14] | list(int) -> list(int) |
parentheses around word delimited by ',' & ' ' | ('29,10 Stefany +158',) | 29,(10) Stefany +158 | list(char) -> list(char) |
Extract word delimited by ',' - ',' | ('Jeff,Scalia,Gertude,877',) | Scalia | list(char) -> list(char) |
Append two words delimited by ' ' | ('Malissa', 'Philadelphia') | Malissa Philadelphia | list(char) -> list(char) -> list(char) |
nth (n=1) word delimited by '.' | ('Ducati125.of.588.843',) | of | list(char) -> list(char) |
modulo-k with k=3 | ([9],) | [0] | list(int) -> list(int) |
kth-smallest with k=2 | ([13, 3, 7],) | 7 | list(int) -> int |
Abbreviate separate words (III) | ('038', 'Hornak') | 0.H. | list(char) -> list(char) -> list(char) |
range +1 maximum list | ([4, 10, 6],) | [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] | list(int) -> list(int) |
slice-k-n with k=3 and n=1 | ([15, 3, 7, 9, 10, 9, 13],) | [7] | list(int) -> list(int) |
dup | ([15],) | [15, 15] | list(int) -> list(int) |
take-k with k=1 | ([8, 0],) | [8] | list(int) -> list(int) |
parentheses around a single word (IIIII) | ('Halpern',) | (Halpern) | list(char) -> list(char) |
Append two words delimited by '(' | ('176', 'C') | 176(C | list(char) -> list(char) -> list(char) |
has-k with k=0 | ([],) | False | list(int) -> bool |
is-odds | ([27, 29, 15, 21, 19],) | True | list(int) -> bool |
keep-mod-k with k=3 | ([4, 3, 7],) | [3] | list(int) -> list(int) |
slice-k-n with k=5 and n=3 | ([11, 6, 1, 2, 7, 9, 11, 10, 5, 8, 2, 16, 4, 0],) | [7, 9, 11] | list(int) -> list(int) |
index-k with k=3 | ([3, 7, 16, 2, 2, 13, 0, 13, 5],) | 16 | list(int) -> int |
parentheses around a single word (IIII) | ('+155',) | (+155) | list(char) -> list(char) |
Extract word delimited by ')' - '-' | ('+60)Lain-Ducati100-Bradford',) | Lain | list(char) -> list(char) |
Append two words delimited by '(,' | ('245', '18') | 245(,18 | list(char) -> list(char) -> list(char) |
Append 2 strings (IIII) | ('Seamons', 'Lakenya') | SeamonsLakenya | list(char) -> list(char) -> list(char) |
Take first 3 characters | ('766',) | 766 | list(char) -> list(char) |
count-k with k=4 | ([2, 7, 12],) | 0 | list(int) -> int |
append-k with k=0 | ([],) | [0] | list(int) -> list(int) |
Abbreviate separate words (III) | ('+174', 'Lain') | +.L. | list(char) -> list(char) -> list(char) |
has-k with k=2 | ([12],) | False | list(int) -> bool |
Append 2 strings (IIII) | ('141', '636') | 141636 | list(char) -> list(char) -> list(char) |
is-squares | ([1, 4],) | True | list(int) -> bool |
bool-identify-geq-k with k=1 | ([1, 5, 1, 5, 6],) | [True, True, True, True, True] | list(int) -> list(bool) |
caesar-cipher-k-modulo-n with k=1 and n=2 | ([1, 0, 1, 1, 1],) | [0, 1, 0, 0, 0] | list(int) -> list(int) |
nth (n=1) word delimited by '(' | ('Andria(736(654',) | 736 | list(char) -> list(char) |
Prepend 'Sergienko' | ('Barbara',) | SergienkoBarbara | list(char) -> list(char) |
evens | ([14],) | [14] | list(int) -> list(int) |
Take first character and append ',' | ('Ramthun',) | R, | list(char) -> list(char) |
nth (n=1) word delimited by ')' | ('UC)+176)Jeanice)+174',) | +176 | list(char) -> list(char) |
remove-index-k with k=2 | ([0, 3, 2, 9, 14, 4, 12, 13],) | [0, 2, 9, 14, 4, 12, 13] | list(int) -> list(int) |
mult-k with k=0 | ([9, 7],) | [0, 0] | list(int) -> list(int) |
repeat | ([2, 1],) | [1, 1] | list(int) -> list(int) |
parentheses around first word | ('018 +176 Houston',) | (018) | list(char) -> list(char) |
nth (n=-1) word delimited by '.' | ('+118.Mulloy.56',) | 56 | list(char) -> list(char) |
Abbreviate separate words (I) | ('+118', '894') | +.8. | list(char) -> list(char) -> list(char) |
nth (n=-1) word delimited by ' ' | ('CA Vena 23 Hopkins',) | Hopkins | list(char) -> list(char) |
prepend-index-k with k=3 | ([5, 10, 5, 16],) | [5, 5, 10, 5, 16] | list(int) -> list(int) |
slice-k-n with k=2 and n=1 | ([3, 0, 3, 0, 11, 2, 1, 0, 8, 1, 15],) | [0] | list(int) -> list(int) |
is-mod-k with k=2 | ([11, 6, 0, 3],) | False | list(int) -> bool |
remove-index-k with k=2 | ([12, 5, 0, 10],) | [12, 0, 10] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=1 and n=3 | ([1, 0, 1, 1, 1],) | [2, 1, 2, 2, 2] | list(int) -> list(int) |
nth (n=-1) word delimited by '.' | ('Latimore.Joaquin.Bobo.G',) | G | list(char) -> list(char) |
last | ([16],) | 16 | list(int) -> int |
Drop last 3 characters | ('Hage',) | H | list(char) -> list(char) |
rotate-k with k=2 | ([10, 13, 9, 13],) | [9, 13, 10, 13] | list(int) -> list(int) |
pow-k with k=5 | ([4, 4, 12, 7, 13, 9],) | [1024, 1024, 248832, 16807, 371293, 59049] | list(int) -> list(int) |
Drop last 5 characters | ('Ferrari250',) | Ferra | list(char) -> list(char) |
slice-k-n with k=1 and n=5 | ([14, 2, 3, 14, 10, 0, 12, 16, 13],) | [14, 2, 3, 14, 10] | list(int) -> list(int) |
Drop last 3 characters | ('012',) | null | list(char) -> list(char) |
drop first word delimited by ')' | ('Jeanice)+194)+189)491',) | +194)+189)491 | list(char) -> list(char) |
Replace '-' w/ ' ' | ('+106-Yale-+130-+141',) | +106 Yale +130 +141 | list(char) -> list(char) |
ensure suffix `568` | ('+47 P568',) | +47 P568 | list(char) -> list(char) |
repeat-k with k=5 | ([11, 13, 11, 3, 1],) | [11, 13, 11, 3, 1, 11, 13, 11, 3, 1, 11, 13, 11, 3, 1, 11, 13, 11, 3, 1, 11, 13, 11, 3, 1] | list(int) -> list(int) |
ensure suffix `Ramthun` | ('Ghoston Bobo Scalia Chism',) | Ghoston Bobo Scalia ChismRamthun | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=4 and n=3 | ([1, 2, 1],) | [2, 0, 2] | list(int) -> list(int) |
prepend-k with k=4 | ([6, 10, 5, 4],) | [4, 6, 10, 5, 4] | list(int) -> list(int) |
fibonacci | (1,) | 1 | int -> int |
kth-largest with k=4 | ([0, 6, 13, 5, 0, 5, 2, 14, 9, 3],) | 6 | list(int) -> int |
Extract word delimited by '-' - ')' | ('York-Mackenzie)Jacquiline)L',) | Mackenzie | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=2 and n=4 | ([1, 2, 1, 3, 1],) | [3, 0, 3, 1, 3] | list(int) -> list(int) |
Extract word delimited by ')' - '-' | ('+60)Lain-Ducati100-Bradford',) | Lain | list(char) -> list(char) |
rotate-k with k=3 | ([4, 13, 10, 0, 1, 2, 6, 4],) | [2, 6, 4, 4, 13, 10, 0, 1] | list(int) -> list(int) |
ensure suffix `997` | ('Hopkins 701 F',) | Hopkins 701 F997 | list(char) -> list(char) |
remove eq 1 | ([6, 3, 2, 2, 6],) | [6, 3, 2, 2, 6] | list(int) -> list(int) |
count-k with k=0 | ([0, 0, 0],) | 3 | list(int) -> int |
index-k with k=1 | ([4, 1, 12, 0, 9, 12],) | 4 | list(int) -> int |
ensure suffix `Ramthun` | ('107 CollegeRamthun',) | 107 CollegeRamthun | list(char) -> list(char) |
parentheses around word delimited by ',' & ' ' | ('Dr,+104 45',) | Dr,(+104) 45 | list(char) -> list(char) |
dup | ([1, 7, 2, 6, 6, 9],) | [1, 1, 7, 7, 2, 2, 6, 6, 6, 6, 9, 9] | list(int) -> list(int) |
parentheses around a single word (III) | ('Ducati',) | (Ducati) | list(char) -> list(char) |
remove-index-k with k=3 | ([10, 5, 9],) | [10, 5] | list(int) -> list(int) |
nth (n=-1) word delimited by ',' | ('50,+9',) | +9 | list(char) -> list(char) |
sort-and-deduplicate | ([0, 6],) | [0, 6] | list(int) -> list(int) |
Abbreviate words separated by ' ' | ('+104 Hayley',) | +.H. | list(char) -> list(char) |
keep gt 2 | ([4, 6, 2, 4, 6],) | [4, 6, 4, 6] | list(int) -> list(int) |
remove-index-k with k=1 | ([16],) | [] | list(int) -> list(int) |
count-k with k=4 | ([],) | 0 | list(int) -> int |
remove gt 3 | ([3, 0, 4, 6, 6],) | [3, 0] | list(int) -> list(int) |
reverse | ([11, 5, 5, 6],) | [6, 5, 5, 11] | list(int) -> list(int) |
Take first 3 characters | ('Vena',) | Ven | list(char) -> list(char) |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.