description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
product | ([6],) | 6 | list(int) -> int |
caesar-cipher-k-modulo-n with k=4 and n=3 | ([1, 2, 2, 1],) | [2, 0, 0, 2] | list(int) -> list(int) |
nth (n=0) word delimited by '(' | ('B(23',) | B | list(char) -> list(char) |
nth (n=-1) word delimited by ' ' | ('K 358 Jacquiline Columbia',) | Columbia | list(char) -> list(char) |
rotate-k with k=3 | ([13, 12, 0, 3, 11, 2, 9, 13, 0, 10, 2, 5, 7, 6, 4, 13, 1],) | [4, 13, 1, 13, 12, 0, 3, 11, 2, 9, 13, 0, 10, 2, 5, 7, 6] | list(int) -> list(int) |
has-k with k=3 | ([3, 15],) | True | list(int) -> bool |
keep-mod-k with k=2 | ([2, 12, 2],) | [2, 12, 2] | list(int) -> list(int) |
add-k with k=4 | ([10, 8],) | [14, 12] | list(int) -> list(int) |
keep gt 2 | ([3, 5, 3, 3, 0],) | [3, 5, 3, 3] | list(int) -> list(int) |
Append two words delimited by '-' | ('Constable', '+197') | Constable-+197 | list(char) -> list(char) -> list(char) |
remove eq 3 | ([1, 5, 6, 0, 0],) | [1, 5, 6, 0, 0] | list(int) -> list(int) |
ensure suffix `Ramthun` | ('Annalisa Latimore ChismRamthun',) | Annalisa Latimore ChismRamthun | list(char) -> list(char) |
Append '636' | ('844',) | 844636 | list(char) -> list(char) |
Drop last 5 characters | ('Mcgaughey',) | Mcga | list(char) -> list(char) |
append-k with k=4 | ([13],) | [13, 4] | list(int) -> list(int) |
bool-identify-k with k=2 | ([13, 10, 9],) | [False, False, False] | list(int) -> list(bool) |
caesar-cipher-k-modulo-n with k=1 and n=3 | ([],) | [] | list(int) -> list(int) |
Take first 2 characters | ('Stefany',) | St | list(char) -> list(char) |
Extract word delimited by ')' - ',' | ('963)Kathlyn,Melodi,Spagnoli',) | Kathlyn | list(char) -> list(char) |
ensure suffix `Scalia` | ('Ducati250 HoustonScalia',) | Ducati250 HoustonScalia | list(char) -> list(char) |
mult-k with k=5 | ([12],) | [60] | list(int) -> list(int) |
First letters of words (II) | ('365 Aylward',) | 3A | list(char) -> list(char) |
Prepend 'Ghoston' to first word | ('FreeHafer 47',) | GhostonFreeHafer | list(char) -> list(char) |
Append two words delimited by '(,' | ('Ducati100', '+176') | Ducati100(,+176 | list(char) -> list(char) -> list(char) |
kth-largest with k=5 | ([9, 15, 0, 1, 8, 6, 2, 11, 4, 11],) | 8 | list(int) -> int |
Abbreviate words separated by '(' | ('G(Partida',) | G.P. | list(char) -> list(char) |
Abbreviate words separated by ' ' | ('Annalisa College',) | A.C. | list(char) -> list(char) |
Drop last 3 characters | ('857',) | null | list(char) -> list(char) |
Prepend '177' to first word | ('566 14',) | 177566 | list(char) -> list(char) |
keep squares | ([16, 9, 6, 1, 8, 1, 7],) | [16, 9, 1, 1] | list(int) -> list(int) |
Append '+138' | ('Cornell',) | Cornell+138 | list(char) -> list(char) |
ensure suffix `Andria` | ('+68 +161 Heintz York',) | +68 +161 Heintz YorkAndria | list(char) -> list(char) |
take-k with k=4 | ([12, 3, 13, 16, 6, 4, 12, 2, 16, 12],) | [12, 3, 13, 16] | list(int) -> list(int) |
Drop last 2 characters | ('562',) | 5 | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=3 and n=4 | ([1, 2, 3, 3, 0, 1],) | [0, 1, 2, 2, 3, 0] | list(int) -> list(int) |
Drop last 1 characters | ('290',) | 29 | list(char) -> list(char) |
parentheses around a single word (II) | ('29',) | (29) | list(char) -> list(char) |
parentheses around word delimited by ',' & ' ' | (',Samuel Stefany.+185',) | ,(Samuel) Stefany.+185 | list(char) -> list(char) |
slice-k-n with k=5 and n=2 | ([5, 3, 5, 12, 1, 7, 15, 12, 6, 1, 8, 15, 5, 2, 16],) | [1, 7] | list(int) -> list(int) |
Abbreviate words separated by ' ' | ('+104 Hayley',) | +.H. | list(char) -> list(char) |
parentheses around word delimited by ',' & ',' | ('Bess,994,Montiel',) | Bess,(994),Montiel | list(char) -> list(char) |
Append 2 strings (II) | ('+163', '+141') | +163+141 | list(char) -> list(char) -> list(char) |
keep primes | ([6, 6, 0, 37, 11, 37, 29],) | [37, 11, 37, 29] | list(int) -> list(int) |
kth-largest with k=5 | ([10, 1, 4, 3, 5, 6, 0],) | 3 | list(int) -> int |
slice-k-n with k=3 and n=4 | ([15, 10, 1, 10, 15, 13, 5, 4, 3, 12, 0, 5, 1, 9, 4],) | [1, 10, 15, 13] | list(int) -> list(int) |
repeat-k with k=5 | ([15, 5, 8],) | [15, 5, 8, 15, 5, 8, 15, 5, 8, 15, 5, 8, 15, 5, 8] | list(int) -> list(int) |
Extract word delimited by ')' - ',' | ('963)Kathlyn,Melodi,Spagnoli',) | Kathlyn | list(char) -> list(char) |
Extract word delimited by ')' - '-' | ('+144)060-Soderstrom)68',) | 060 | list(char) -> list(char) |
nth (n=1) word delimited by ')' | ('Partida)FreeHafer)+130)D',) | FreeHafer | list(char) -> list(char) |
evens | ([],) | [] | list(int) -> list(int) |
append-index-k with k=2 | ([3, 15],) | [3, 15, 15] | list(int) -> list(int) |
kth-largest with k=3 | ([9, 12, 12, 2, 16, 1, 3, 4, 16],) | 12 | list(int) -> int |
repeat-k with k=2 | ([11],) | [11, 11] | list(int) -> list(int) |
nth (n=-1) word delimited by '.' | ('Latimore.Joaquin.Bobo.G',) | G | list(char) -> list(char) |
Prepend '+167' to first word | ('Madelaine Carlene',) | +167Madelaine | list(char) -> list(char) |
remove-index-k with k=4 | ([5, 6, 2, 15, 9, 1, 6],) | [5, 6, 2, 9, 1, 6] | list(int) -> list(int) |
Append two words delimited by '(' | ('Q', 'Ducati250') | Q(Ducati250 | list(char) -> list(char) -> list(char) |
mult-k with k=4 | ([9],) | [36] | list(int) -> list(int) |
keep-mod-head | ([7, 3, 9],) | [] | list(int) -> list(int) |
index-k with k=2 | ([11, 7, 12, 5],) | 7 | list(int) -> int |
Take first 5 characters | ('Desiree',) | Desir | list(char) -> list(char) |
drop first word delimited by '.' | ('Jenee.21.80.Soderstrom',) | 21.80.Soderstrom | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=1 and n=5 | ([4, 3, 2, 4, 2],) | [0, 4, 3, 0, 3] | list(int) -> list(int) |
Abbreviate words separated by '(' | ('G(Partida',) | G.P. | list(char) -> list(char) |