description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
prepend-k with k=4 | ([7, 11, 8, 13],) | [4, 7, 11, 8, 13] | list(int) -> list(int) |
Append two words delimited by ' ' | ('Acura', 'Vena') | Acura Vena | list(char) -> list(char) -> list(char) |
First letters of words (IIIII) | ('Dr UC K Rowden',) | DUKR | list(char) -> list(char) |
Prepend '086' to first word | ('18 Miah',) | 08618 | list(char) -> list(char) |
Prepend 'Carlene' to first word | ('43 927',) | Carlene43 | list(char) -> list(char) |
modulo-k with k=4 | ([16, 12],) | [0, 0] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=1 and n=3 | ([1, 1, 0, 0, 1, 0, 0],) | [2, 2, 1, 1, 2, 1, 1] | list(int) -> list(int) |
max | ([16, 10, 4, 9, 3],) | 16 | list(int) -> int |
count-k with k=5 | ([],) | 0 | list(int) -> int |
slice-k-n with k=4 and n=3 | ([1, 8, 7, 8, 4, 3, 6, 1, 10, 8, 5, 0, 4, 12, 15],) | [8, 4, 3] | list(int) -> list(int) |
index-head | ([1, 1],) | 1 | list(int) -> int |
nth (n=-1) word delimited by ',' | ('144,Honda550,Hopkins',) | Hopkins | list(char) -> list(char) |
remove empty lists | ([[True, True, False], [True, False, False], [True, True, True], []],) | [[True, True, False], [True, False, False], [True, True, True]] | list(list(bool)) -> list(list(bool)) |
slice-k-n with k=4 and n=3 | ([13, 5, 14, 11, 1, 3, 12, 7, 14, 10, 15, 10, 2],) | [11, 1, 3] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=3 and n=2 | ([],) | [] | list(int) -> list(int) |
Prepend 'Sergienko' | ('F',) | SergienkoF | list(char) -> list(char) |
is-primes | ([71, 13],) | True | list(int) -> bool |
parentheses around second word | ('California 86',) | (86) | list(char) -> list(char) |
remove empty lists | ([[], [True, False, True], [True], [False, False, False]],) | [[True, False, True], [True], [False, False, False]] | list(list(bool)) -> list(list(bool)) |
First letters of words (IIIII) | ('751 Drexel L J',) | 7DLJ | list(char) -> list(char) |
replace-all-with-index-k with k=3 | ([2, 2, 16, 14, 9, 11, 11],) | [16, 16, 16, 16, 16, 16, 16] | list(int) -> list(int) |
slice-k-n with k=5 and n=1 | ([8, 3, 7, 9, 3, 8, 10, 9],) | [3] | list(int) -> list(int) |
ensure suffix `Ramthun` | ('107 CollegeRamthun',) | 107 CollegeRamthun | list(char) -> list(char) |
count-k with k=3 | ([10, 0, 15, 9, 13],) | 0 | list(int) -> int |
caesar-cipher-k-modulo-n with k=5 and n=3 | ([2],) | [1] | list(int) -> list(int) |
Append two words delimited by ',' | ('Acura100', '705') | Acura100,705 | list(char) -> list(char) -> list(char) |
bool-identify-geq-k with k=2 | ([14, 2, 10, 5, 6],) | [True, True, True, True, True] | list(int) -> list(bool) |
Take first character and append '(' | ('Pennsylvania',) | P( | list(char) -> list(char) |
Prepend 'Sergienko' | ('F',) | SergienkoF | list(char) -> list(char) |
index-k with k=2 | ([15, 3, 9, 14, 0, 2, 5],) | 3 | list(int) -> int |
prepend-k with k=5 | ([16],) | [5, 16] | list(int) -> list(int) |
is-evens | ([24, 10, 30, 4, 14],) | True | list(int) -> bool |
caesar-cipher-k-modulo-n with k=3 and n=4 | ([3, 0, 3, 3, 3],) | [2, 3, 2, 2, 2] | list(int) -> list(int) |
nth (n=-1) word delimited by '-' | ('21-of',) | of | list(char) -> list(char) |
is-mod-k with k=5 | ([15, 16, 9, 6],) | False | list(int) -> bool |
min | ([7, 9, 7, 7, 8, 1],) | 1 | list(int) -> int |
Drop last 1 characters | ('Latimore',) | Latimor | list(char) -> list(char) |
Append two words delimited by '. ' | ('Haven', '575') | Haven. 575 | list(char) -> list(char) -> list(char) |
nth (n=1) word delimited by ' ' | ('University Sergienko',) | Sergienko | list(char) -> list(char) |
replace-all-with-index-k with k=3 | ([5, 15, 7, 9, 9, 5, 10, 5],) | [7, 7, 7, 7, 7, 7, 7, 7] | list(int) -> list(int) |
Take first character and append '-' | ('+158',) | +- | list(char) -> list(char) |
append-k with k=3 | ([1],) | [1, 3] | list(int) -> list(int) |
Prepend 'UCLA' | ('Ferrari',) | UCLAFerrari | list(char) -> list(char) |
Append 'Angeles' | ('Spell',) | SpellAngeles | list(char) -> list(char) |
First letters of words (IIII) | ('Ducati250 Lashanda N Barbara',) | DLNB | list(char) -> list(char) |
add-k with k=4 | ([3, 2, 8, 8, 7, 0, 9],) | [7, 6, 12, 12, 11, 4, 13] | list(int) -> list(int) |
repeat-k with k=4 | ([6, 5],) | [6, 5, 6, 5, 6, 5, 6, 5] | list(int) -> list(int) |
nth (n=0) word delimited by '(' | ('C(98',) | C | list(char) -> list(char) |
Replace ',' w/ '.' | ('Reily,Madelaine',) | Reily.Madelaine | list(char) -> list(char) |
is-mod-k with k=2 | ([22, 10, 14, 12, 16],) | True | list(int) -> bool |
slice-k-n with k=3 and n=1 | ([12, 5, 11, 0, 2, 6, 2, 10, 16],) | [11] | list(int) -> list(int) |
nth (n=1) word delimited by '(' | ('W(517(+199',) | 517 | list(char) -> list(char) |
parentheses around word delimited by '.' & ',' | ('.DPhiladelphia,+132 G',) | .(DPhiladelphia),+132 G | list(char) -> list(char) |
parentheses around a single word (IIIII) | ('Acura',) | (Acura) | list(char) -> list(char) |
has-k with k=3 | ([3, 15],) | True | list(int) -> bool |
Extract word delimited by ',' - ',' | ('Barbara,+86,95,Urbana',) | +86 | list(char) -> list(char) |
Take first character and append ',' | ('Ramthun',) | R, | list(char) -> list(char) |
is-mod-k with k=1 | ([6, 11, 0, 11, 7, 9],) | True | list(int) -> bool |
Replace '(' w/ ' ' | ('Nancy(Houston',) | Nancy Houston | list(char) -> list(char) |
mult-k with k=4 | ([4, 14],) | [16, 56] | list(int) -> list(int) |
Take first character and append ',' | ('Ramthun',) | R, | list(char) -> list(char) |
kth-largest with k=5 | ([7, 2, 7, 14, 6, 0, 2, 14, 2, 16, 16],) | 7 | list(int) -> int |
Append 'Dermody' | ('+5',) | +5Dermody | list(char) -> list(char) |
count-k with k=1 | ([6, 1, 1, 1],) | 3 | list(int) -> int |
remove-mod-k with k=4 | ([0, 12],) | [] | list(int) -> list(int) |
len | ([],) | 0 | list(int) -> int |
Append two words delimited by ')' | ('42', '959') | 42)959 | list(char) -> list(char) -> list(char) |
Append 'Angeles' | ('Spell',) | SpellAngeles | list(char) -> list(char) |
Prepend 'Jani' | ('25',) | Jani25 | list(char) -> list(char) |
Prepend '+167' to first word | ('172 Hayley',) | +167172 | list(char) -> list(char) |
has-k with k=0 | ([4, 9, 6, 11],) | False | list(int) -> bool |
First letters of words (III) | ('000 Dermody +196',) | 0D+ | list(char) -> list(char) |
count-k with k=3 | ([5, 16, 12],) | 0 | list(int) -> int |
Abbreviate separate words (II) | ('York', 'Madelaine') | Y.M. | list(char) -> list(char) -> list(char) |
Take first 2 characters | ('334',) | 33 | list(char) -> list(char) |
First letters of words (IIIII) | ('46 439',) | 44 | list(char) -> list(char) |
index-k with k=1 | ([13, 14, 7, 10, 9, 7],) | 13 | list(int) -> int |
is-mod-k with k=1 | ([2, 13, 3],) | True | list(int) -> bool |
Drop last 4 characters | ('Andria',) | An | list(char) -> list(char) |
keep-mod-head | ([8, 24, 32],) | [24, 32] | list(int) -> list(int) |
slice-k-n with k=4 and n=5 | ([1, 12, 7, 12, 0, 14, 12, 14, 5, 12, 15, 12, 1, 12, 6],) | [12, 0, 14, 12, 14] | list(int) -> list(int) |
count-k with k=5 | ([11, 12, 7],) | 0 | list(int) -> int |
slice-k-n with k=2 and n=1 | ([16, 1, 14, 11, 16, 4],) | [1] | list(int) -> list(int) |
Abbreviate words separated by '-' | ('Cruz-150',) | C.1. | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=3 and n=5 | ([],) | [] | list(int) -> list(int) |
Replace '(' w/ '.' | ('155(Edison(CA(29',) | 155.Edison.CA.29 | list(char) -> list(char) |
bool-identify-k with k=1 | ([1, 1, 1, 4, 1, 1],) | [True, True, True, False, True, True] | list(int) -> list(bool) |
Prepend 'Jani' | ('Honda550',) | JaniHonda550 | list(char) -> list(char) |
kth-smallest with k=5 | ([1, 3, 13, 12, 5, 8, 13, 0, 13, 3],) | 5 | list(int) -> int |
Replace ',' w/ '(' | ('+132,Tobias',) | +132(Tobias | list(char) -> list(char) |
parentheses around word delimited by ' ' & ' ' | ('Spagnoli Marquess Gertude',) | Spagnoli (Marquess) Gertude | list(char) -> list(char) |
kth-smallest with k=1 | ([13, 0, 3, 2, 9, 14],) | 0 | list(int) -> int |
prepend-index-k with k=2 | ([10, 7, 8, 16, 16, 14, 8, 6, 2],) | [7, 10, 7, 8, 16, 16, 14, 8, 6, 2] | list(int) -> list(int) |
Append 'Dermody' | ('+5',) | +5Dermody | list(char) -> list(char) |
keep primes | ([19, 11, 17, 23, 8, 4, 0],) | [19, 11, 17, 23] | list(int) -> list(int) |
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) |
Prepend '177' to first word | ('Jacqualine +180',) | 177Jacqualine | list(char) -> list(char) |
has-k with k=1 | ([6, 0, 3, 16],) | False | list(int) -> bool |
drop first word delimited by ' ' | ('Bess Berkeley',) | Berkeley | list(char) -> list(char) |
Append 'Beata' | ('Eccleston',) | EcclestonBeata | list(char) -> list(char) |