description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
ensure suffix `Andria` | ('+13 20 +7',) | +13 20 +7Andria | list(char) -> list(char) |
bool-identify-k with k=4 | ([13, 4, 0, 1, 4],) | [False, True, False, False, True] | list(int) -> list(bool) |
Take first 4 characters | ('Ducati250',) | Duca | list(char) -> list(char) |
Append 'Cornell' | ('101',) | 101Cornell | list(char) -> list(char) |
Append two words delimited by ' ' | ('2', '+151') | 2 +151 | list(char) -> list(char) -> list(char) |
Replace '-' w/ ',' | ('2-FreeHafer-+188',) | 2,FreeHafer,+188 | list(char) -> list(char) |
Prepend 'Jani' | ('Andria',) | JaniAndria | list(char) -> list(char) |
replace-all-with-index-k with k=3 | ([8, 5, 9, 6, 6, 10],) | [9, 9, 9, 9, 9, 9] | list(int) -> list(int) |
Abbreviate words separated by ')' | ('83)56',) | 8.5. | list(char) -> list(char) |
remove eq 3 | ([1, 5, 5, 5, 3],) | [1, 5, 5, 5] | list(int) -> list(int) |
remove-index-k with k=4 | ([4, 0, 6, 0],) | [4, 0, 6] | list(int) -> list(int) |
Extract word delimited by '(' - '(' | ('Montiel(Temple(Heintz(Teddy',) | Temple | list(char) -> list(char) |
repeat | ([1, 2],) | [2] | list(int) -> list(int) |
Prepend 'Carlene' to first word | ('Gertude +198',) | CarleneGertude | list(char) -> list(char) |
Append two words delimited by '-' | ('119', 'Harvard') | 119-Harvard | list(char) -> list(char) -> list(char) |
Append two words delimited by ',' | ('Pennsylvania', '+198') | Pennsylvania,+198 | list(char) -> list(char) -> list(char) |
First letters of words (I) | ('81 Heintz Pannell',) | 8HP | list(char) -> list(char) |
mult-k with k=0 | ([5, 10, 15],) | [0, 0, 0] | list(int) -> list(int) |
keep-mod-k with k=2 | ([],) | [] | list(int) -> list(int) |
Abbreviate separate words (I) | ('62', 'Ramthun') | 6.R. | list(char) -> list(char) -> list(char) |
rotate-k with k=4 | ([12, 6, 15, 12, 9, 14, 7, 9, 7, 7, 8, 1],) | [7, 7, 8, 1, 12, 6, 15, 12, 9, 14, 7, 9] | list(int) -> list(int) |
nth (n=0) word delimited by '(' | ('Lango(Desiree',) | Lango | list(char) -> list(char) |
Abbreviate words separated by '.' | ('Cambridge.6',) | C.6. | list(char) -> list(char) |
has-k with k=1 | ([14, 8, 1, 1, 1, 1],) | True | list(int) -> bool |
Prepend 'UCLA' | ('Santa',) | UCLASanta | 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) |
index-head | ([4, 2, 6, 10, 8, 12],) | 8 | list(int) -> int |
Append two words delimited by '.' | ('+2', 'Jacquiline') | +2.Jacquiline | list(char) -> list(char) -> list(char) |
parentheses around word delimited by ',' & ',' | ('+174,Bradford,University',) | +174,(Bradford),University | list(char) -> list(char) |
drop first word delimited by '(' | ('75(Rice',) | Rice | list(char) -> list(char) |
rotate-k with k=2 | ([2, 12, 6, 9],) | [6, 9, 2, 12] | list(int) -> list(int) |
pow-k with k=2 | ([15],) | [225] | list(int) -> list(int) |
Append 'Dermody' | ('085',) | 085Dermody | list(char) -> list(char) |
kth-smallest with k=2 | ([0, 9, 6, 7, 15],) | 6 | list(int) -> int |
slice-k-n with k=4 and n=2 | ([12, 3, 6, 9, 13, 11, 0, 10, 5, 15, 4, 6, 6],) | [9, 13] | list(int) -> list(int) |
Abbreviate words separated by ',' | ('R,+108',) | R.+. | list(char) -> list(char) |
bool-identify-k with k=4 | ([4, 4, 4, 4, 4],) | [True, True, True, True, True] | list(int) -> list(bool) |
keep gt 2 | ([3, 3, 0, 2, 1],) | [3, 3] | list(int) -> list(int) |
bool-identify-k with k=0 | ([0, 0, 0],) | [True, True, True] | list(int) -> list(bool) |
Append 'Beata' | ('092',) | 092Beata | list(char) -> list(char) |
Replace ' ' w/ '(' | ('Honda250 Casler Edison',) | Honda250(Casler(Edison | list(char) -> list(char) |
take-k with k=2 | ([3, 5, 1, 15, 2, 14, 14, 1, 11],) | [3, 5] | list(int) -> list(int) |
Replace '-' w/ ' ' | ('Jacqualine-62',) | Jacqualine 62 | list(char) -> list(char) |
nth (n=1) word delimited by ')' | ('Partida)FreeHafer)+130)D',) | FreeHafer | list(char) -> list(char) |
kth-largest with k=4 | ([0, 3, 6, 10, 4, 3, 1],) | 3 | list(int) -> int |
count-k with k=3 | ([12],) | 0 | list(int) -> int |
caesar-cipher-k-modulo-n with k=1 and n=4 | ([1, 2, 1, 3, 1],) | [2, 3, 2, 0, 2] | list(int) -> list(int) |
remove gt 0 | ([6, 5, 3, 5, 4],) | [] | list(int) -> list(int) |
Prepend '170' to first word | ('Malissa W',) | 170Malissa | list(char) -> list(char) |
Extract word delimited by '-' - ')' | ('NY-Philadelphia)Ferrari-PA',) | Philadelphia | list(char) -> list(char) |
count-k with k=2 | ([2, 2],) | 2 | list(int) -> int |
Append two words delimited by '..' | ('Vena', '50') | Vena..50 | list(char) -> list(char) -> list(char) |
parentheses around a single word (III) | ('Lain',) | (Lain) | list(char) -> list(char) |
remove-mod-k with k=3 | ([13, 9, 6, 15, 14, 11, 13],) | [13, 14, 11, 13] | list(int) -> list(int) |
remove-index-k with k=2 | ([6, 8],) | [6] | list(int) -> list(int) |
drop first word delimited by '(' | ('Ducati(969(+144(Olague',) | 969(+144(Olague | list(char) -> list(char) |
mult-k with k=3 | ([1, 2, 7, 5, 4, 0, 13],) | [3, 6, 21, 15, 12, 0, 39] | list(int) -> list(int) |
remove-mod-k with k=2 | ([6, 0],) | [] | list(int) -> list(int) |
Extract word delimited by ')' - ',' | ('+104)+58,Ramthun,Bobo',) | +58 | list(char) -> list(char) |
prepend-k with k=4 | ([1, 14, 7, 14, 10],) | [4, 1, 14, 7, 14, 10] | list(int) -> list(int) |
parentheses around word delimited by '.' & ',' | ('.DPhiladelphia,+132 G',) | .(DPhiladelphia),+132 G | list(char) -> list(char) |
Extract word delimited by ')' - '-' | ('+60)Lain-Ducati100-Bradford',) | Lain | list(char) -> list(char) |
replace-all-with-index-k with k=4 | ([9, 11, 5, 6, 10, 0, 15, 6],) | [6, 6, 6, 6, 6, 6, 6, 6] | list(int) -> list(int) |
pow-k with k=3 | ([],) | [] | list(int) -> list(int) |
slice-k-n with k=4 and n=1 | ([4, 8, 10, 12, 12, 3, 13, 4, 7, 10, 10],) | [12] | list(int) -> list(int) |
parentheses around a single word (III) | ('Lain',) | (Lain) | list(char) -> list(char) |
Extract word delimited by ',' - ',' | ('7,Soderstrom,S,A',) | Soderstrom | list(char) -> list(char) |
slice-k-n with k=3 and n=2 | ([10, 13, 7, 13, 2, 8],) | [7, 13] | list(int) -> list(int) |
Drop last 4 characters | ('Andria',) | An | list(char) -> list(char) |
Abbreviate separate words (II) | ('Gertude', 'Dermody') | G.D. | list(char) -> list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=5 and n=3 | ([2, 0],) | [1, 2] | list(int) -> list(int) |
Abbreviate separate words (IIIII) | ('Ducati125', '46') | D.4. | list(char) -> list(char) -> list(char) |
Prepend 'Spell' | ('358',) | Spell358 | list(char) -> list(char) |
nth (n=-1) word delimited by ' ' | ('CA Vena 23 Hopkins',) | Hopkins | list(char) -> list(char) |
sum | ([15],) | 15 | list(int) -> int |
sort | ([],) | [] | list(int) -> list(int) |
nth (n=1) word delimited by ')' | ('Mariel)Carlene)Ducati100)Jeff',) | Carlene | list(char) -> list(char) |
Prepend '+174' | ('Jurgens',) | +174Jurgens | list(char) -> list(char) |
pow-k with k=4 | ([],) | [] | list(int) -> list(int) |
remove-index-k with k=3 | ([7, 1, 2, 14, 10],) | [7, 1, 14, 10] | list(int) -> list(int) |
Replace ',' w/ '(' | ('Nancy,334,611,+172',) | Nancy(334(611(+172 | list(char) -> list(char) |
ensure suffix `Columbia` | ('647 Seamons 40 Teddy',) | 647 Seamons 40 TeddyColumbia | list(char) -> list(char) |
pow-k with k=2 | ([2, 7],) | [4, 49] | list(int) -> list(int) |
ensure suffix `568` | ('+23 10 IL 844',) | +23 10 IL 844568 | list(char) -> list(char) |
Replace ' ' w/ '(' | ('Honda250 Casler Edison',) | Honda250(Casler(Edison | list(char) -> list(char) |
slice-k-n with k=1 and n=2 | ([13, 13, 8, 0, 5, 14, 0, 2],) | [13, 13] | list(int) -> list(int) |
First letters of words (IIIII) | ('46 439',) | 44 | list(char) -> list(char) |
First letters of words (II) | ('Celsa Latimore',) | CL | list(char) -> list(char) |
remove eq 1 | ([5, 6, 6, 6, 0],) | [5, 6, 6, 6, 0] | list(int) -> list(int) |
nth (n=1) word delimited by '.' | ('H.+7.Cortes.+169',) | +7 | list(char) -> list(char) |
kth-smallest with k=1 | ([13],) | 13 | list(int) -> int |
rotate-k with k=4 | ([10, 8, 6, 7, 15, 2, 9, 16, 16, 4, 0, 3, 4, 9, 2],) | [3, 4, 9, 2, 10, 8, 6, 7, 15, 2, 9, 16, 16, 4, 0] | list(int) -> list(int) |
slice-k-n with k=2 and n=5 | ([11, 10, 12, 11, 11, 0, 5, 1, 8, 0],) | [10, 12, 11, 11, 0] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=1 and n=4 | ([],) | [] | list(int) -> list(int) |
modulo-k with k=5 | ([7, 4, 0, 1, 11],) | [2, 4, 0, 1, 1] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=3 and n=4 | ([],) | [] | list(int) -> list(int) |
add-k with k=1 | ([9, 1, 13, 10, 13],) | [10, 2, 14, 11, 14] | list(int) -> list(int) |
slice-k-n with k=4 and n=3 | ([12, 12, 13, 16, 8, 14, 6, 13],) | [16, 8, 14] | list(int) -> list(int) |
Append 2 strings (III) | ('25', '176') | 25176 | list(char) -> list(char) -> list(char) |
slice-k-n with k=4 and n=1 | ([9, 16, 10, 5, 14, 0, 1, 4],) | [5] | list(int) -> list(int) |