description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
nth (n=0) word delimited by ')' | ('+105)046)Casler',) | +105 | list(char) -> list(char) |
nth (n=-1) word delimited by '.' | ('N.Annalisa.Houston',) | Houston | list(char) -> list(char) |
tail | ([13, 2, 2, 13, 4, 3],) | [2, 2, 13, 4, 3] | list(int) -> list(int) |
keep gt 2 | ([1, 1, 2, 2, 0],) | [] | list(int) -> list(int) |
Abbreviate words separated by '-' | ('Mackenzie-K',) | M.K. | list(char) -> list(char) |
remove-index-k with k=4 | ([15, 1, 4, 12],) | [15, 1, 4] | list(int) -> list(int) |
Prepend '086' to first word | ('18 Miah',) | 08618 | list(char) -> list(char) |
Extract word delimited by ',' - ',' | ('7,Soderstrom,S,A',) | Soderstrom | list(char) -> list(char) |
modulo-k with k=1 | ([1, 4, 12],) | [0, 0, 0] | list(int) -> list(int) |
nth (n=-1) word delimited by '(' | ('684(Ghoston',) | Ghoston | list(char) -> list(char) |
prepend-k with k=2 | ([13],) | [2, 13] | list(int) -> list(int) |
slice-k-n with k=5 and n=3 | ([10, 16, 5, 12, 15, 15, 10, 9, 1, 4, 7, 12, 2, 15, 12, 14],) | [15, 15, 10] | list(int) -> list(int) |
repeat-k with k=5 | ([6, 15, 12, 9],) | [6, 15, 12, 9, 6, 15, 12, 9, 6, 15, 12, 9, 6, 15, 12, 9, 6, 15, 12, 9] | list(int) -> list(int) |
ensure suffix `Columbia` | ('158 Quashie Hage',) | 158 Quashie HageColumbia | list(char) -> list(char) |
slice-k-n with k=2 and n=2 | ([0, 9, 16, 10, 16],) | [9, 16] | list(int) -> list(int) |
slice-k-n with k=1 and n=5 | ([7, 11, 5, 14, 15, 11, 12, 9, 7, 5],) | [7, 11, 5, 14, 15] | list(int) -> list(int) |
is-mod-k with k=4 | ([40, 32, 16, 28],) | True | list(int) -> bool |
Prepend 'Ghoston' to first word | ('125 +118',) | Ghoston125 | list(char) -> list(char) |
First letters of words (II) | ('6 Kimberley 095',) | 6K0 | list(char) -> list(char) |
has-k with k=4 | ([],) | False | list(int) -> bool |
Take first character and append '(' | ('Melodi',) | M( | list(char) -> list(char) |
Append 'Dermody' | ('29',) | 29Dermody | list(char) -> list(char) |
parentheses around word delimited by ',' & ' ' | ('Dr,+104 45',) | Dr,(+104) 45 | list(char) -> list(char) |
take-k with k=1 | ([14, 12, 5, 12, 2, 10],) | [14] | list(int) -> list(int) |
nth (n=-1) word delimited by ',' | ('50,+9',) | +9 | list(char) -> list(char) |
slice-k-n with k=5 and n=4 | ([12, 4, 7, 1, 8, 1, 2, 3, 7, 5],) | [8, 1, 2, 3] | list(int) -> list(int) |
Prepend 'Sergienko' | ('Stefany',) | SergienkoStefany | list(char) -> list(char) |
remove-index-k with k=2 | ([14, 5, 3],) | [14, 3] | list(int) -> list(int) |
ensure suffix `Columbia` | ('Ferrari250 +58 AndrewColumbia',) | Ferrari250 +58 AndrewColumbia | list(char) -> list(char) |
prepend-index-k with k=3 | ([6, 8, 5, 6, 10, 3],) | [5, 6, 8, 5, 6, 10, 3] | list(int) -> list(int) |
Append 2 strings (III) | ('Cambridge', 'Honda550') | CambridgeHonda550 | list(char) -> list(char) -> list(char) |
repeat-k with k=5 | ([15, 7, 7],) | [15, 7, 7, 15, 7, 7, 15, 7, 7, 15, 7, 7, 15, 7, 7] | list(int) -> list(int) |
is-mod-k with k=5 | ([15, 4, 7, 9],) | False | list(int) -> bool |
take-k with k=4 | ([3, 9, 9, 10, 3, 3],) | [3, 9, 9, 10] | list(int) -> list(int) |
remove gt 2 | ([0, 2, 3, 2, 2],) | [0, 2, 2, 2] | list(int) -> list(int) |
modulo-k with k=1 | ([],) | [] | list(int) -> list(int) |
nth (n=-1) word delimited by ',' | ('50,+9',) | +9 | list(char) -> list(char) |
keep squares | ([3, 4, 9, 25, 1, 0, 4],) | [4, 9, 25, 1, 0, 4] | list(int) -> list(int) |
Append 'Angeles' | ('+199',) | +199Angeles | list(char) -> list(char) |
evens | ([1],) | [] | list(int) -> list(int) |
Append '636' | ('Bess',) | Bess636 | list(char) -> list(char) |
+1 maximum list | ([1, 8, 4, 4],) | 9 | list(int) -> int |
First letters of words (IIIIII) | ('43 390 Phillip',) | 43P | list(char) -> list(char) |
parentheses around a single word (IIII) | ('Harvard',) | (Harvard) | list(char) -> list(char) |
Take first character and append ' ' | ('Brescia',) | B | list(char) -> list(char) |
Abbreviate separate words (IIII) | ('+140', 'Partida') | +.P. | list(char) -> list(char) -> list(char) |
parentheses around a single word (IIIII) | ('Halpern',) | (Halpern) | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=5 and n=3 | ([1, 2, 0],) | [0, 1, 2] | list(int) -> list(int) |
mult-k with k=4 | ([1, 6, 12, 1, 7],) | [4, 24, 48, 4, 28] | list(int) -> list(int) |
keep eq 0 | ([1, 3, 2, 3, 1],) | [] | list(int) -> list(int) |
repeat | ([3, 7],) | [7, 7, 7] | list(int) -> list(int) |
slice-k-n with k=5 and n=1 | ([13, 16, 6, 11, 11, 16, 8, 1, 1, 1, 15, 11],) | [11] | list(int) -> list(int) |
remove-index-k with k=3 | ([3, 11, 16, 4, 10, 7],) | [3, 11, 4, 10, 7] | list(int) -> list(int) |
parentheses around a single word (I) | ('Halpern',) | (Halpern) | list(char) -> list(char) |
First letters of words (IIIII) | ('Dr UC K Rowden',) | DUKR | list(char) -> list(char) |
Abbreviate words separated by '.' | ('817.33',) | 8.3. | list(char) -> list(char) |
Abbreviate words separated by ' ' | ('938 Alida',) | 9.A. | list(char) -> list(char) |
ensure suffix `Scalia` | ('Ramthun Beata Chism FreeHaferScalia',) | Ramthun Beata Chism FreeHaferScalia | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=1 and n=4 | ([0, 1, 1, 2, 3],) | [1, 2, 2, 3, 0] | list(int) -> list(int) |
Abbreviate words separated by '-' | ('941-162',) | 9.1. | list(char) -> list(char) |
count-k with k=0 | ([],) | 0 | list(int) -> int |
nth (n=0) word delimited by ',' | ('+115,+106',) | +115 | list(char) -> list(char) |
tail | ([12, 4],) | [4] | list(int) -> list(int) |
Prepend 'UCLA' | ('Sergienko',) | UCLASergienko | list(char) -> list(char) |
pow-k with k=5 | ([0, 10, 4, 11],) | [0, 100000, 1024, 161051] | list(int) -> list(int) |
keep eq 2 | ([0, 5, 0, 5, 5],) | [] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=3 and n=2 | ([],) | [] | list(int) -> list(int) |
mult-k with k=4 | ([1, 6, 12, 1, 7],) | [4, 24, 48, 4, 28] | list(int) -> list(int) |
Drop last 3 characters | ('857',) | null | list(char) -> list(char) |
parentheses around a single word (I) | ('+176',) | (+176) | list(char) -> list(char) |
Prepend 'UCLA' | ('Santa',) | UCLASanta | list(char) -> list(char) |
Extract word delimited by ',' - '.' | ('426,Lain.45,Honda125',) | Lain | list(char) -> list(char) |
First letters of words (I) | ('C 461 +140 Phillip',) | C4+P | list(char) -> list(char) |
bool-identify-is-mod-k with k=3 | ([3, 3, 7, 3, 14],) | [True, True, False, True, False] | list(int) -> list(bool) |
Abbreviate separate words (IIIII) | ('Mulloy', 'V') | M.V. | list(char) -> list(char) -> list(char) |
Take first 3 characters | ('766',) | 766 | list(char) -> list(char) |
Abbreviate words separated by ',' | ('FreeHafer,Park',) | F.P. | list(char) -> list(char) |
remove-index-k with k=4 | ([6, 5, 2, 13, 14, 5, 12, 6, 16, 11, 8],) | [6, 5, 2, 14, 5, 12, 6, 16, 11, 8] | list(int) -> list(int) |
append-k with k=3 | ([6, 15, 6],) | [6, 15, 6, 3] | list(int) -> list(int) |
Abbreviate words separated by '(' | ('Jeanice(Acura',) | J.A. | list(char) -> list(char) |
mult-k with k=5 | ([10, 11, 13, 1, 10],) | [50, 55, 65, 5, 50] | list(int) -> list(int) |
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) |
Replace '-' w/ ',' | ('+138-Irwin-46',) | +138,Irwin,46 | list(char) -> list(char) |
ensure suffix `Scalia` | ('Ducati250 HoustonScalia',) | Ducati250 HoustonScalia | list(char) -> list(char) |
sort-and-deduplicate | ([0, 5, 1, 9],) | [0, 1, 5, 9] | list(int) -> list(int) |
add-k with k=5 | ([13, 8, 10],) | [18, 13, 15] | list(int) -> list(int) |
mult-k with k=4 | ([13, 15, 13],) | [52, 60, 52] | list(int) -> list(int) |
keep eq 2 | ([3, 4, 2, 6, 5],) | [2] | list(int) -> list(int) |
Extract word delimited by ',' - ',' | ('Jeff,Scalia,Gertude,877',) | Scalia | list(char) -> list(char) |
Replace ' ' w/ '(' | ('035 Penn Hornak',) | 035(Penn(Hornak | list(char) -> list(char) |
drop first word delimited by '.' | ('Acura.Urbana',) | Urbana | list(char) -> list(char) |
Extract word delimited by '(' - '(' | ('14(Rowden(Jeanice(Acura125',) | Rowden | list(char) -> list(char) |
kth-smallest with k=3 | ([1, 14, 9, 7, 11, 16],) | 9 | list(int) -> int |
remove-index-k with k=5 | ([15, 3, 7, 0, 4, 7, 13, 6, 12, 4, 11],) | [15, 3, 7, 0, 7, 13, 6, 12, 4, 11] | list(int) -> list(int) |
Append two words delimited by ')' | ('Park', 'Hopkins') | Park)Hopkins | list(char) -> list(char) -> list(char) |
parentheses around second word | ('O Jeanice',) | (Jeanice) | list(char) -> list(char) |
Take first character and append ')' | ('83',) | 8) | list(char) -> list(char) |
Prepend 'UCLA' | ('Sergienko',) | UCLASergienko | list(char) -> list(char) |
nth (n=0) word delimited by '-' | ('+172-Penn-Chilcott-E',) | +172 | list(char) -> list(char) |
First letters of words (IIIIII) | ('43 390 Phillip',) | 43P | list(char) -> list(char) |