description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
Abbreviate words separated by ',' | ('R,+108',) | R.+. | list(char) -> list(char) |
nth (n=-1) word delimited by ')' | ('539)027)42',) | 42 | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=1 and n=3 | ([2, 2, 2, 1],) | [0, 0, 0, 2] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=2 and n=4 | ([0, 3, 3],) | [2, 1, 1] | list(int) -> list(int) |
Append two words delimited by '.' | ('Bradford', 'Beata') | Bradford.Beata | list(char) -> list(char) -> list(char) |
bool-identify-geq-k with k=1 | ([12, 5, 7, 7, 2],) | [True, True, True, True, True] | list(int) -> list(bool) |
Prepend '086' to first word | ('35 Lara',) | 08635 | list(char) -> list(char) |
nth (n=1) word delimited by '(' | ('Andria(736(654',) | 736 | list(char) -> list(char) |
nth (n=1) word delimited by ',' | ('Sergienko,009,Jacquiline,Sergienko',) | 009 | list(char) -> list(char) |
Take first character and append '(' | ('Pennsylvania',) | P( | list(char) -> list(char) |
replace-all-with-index-k with k=1 | ([3, 9, 14, 11, 13, 7, 1, 10],) | [3, 3, 3, 3, 3, 3, 3, 3] | list(int) -> list(int) |
remove gt 0 | ([2, 5, 2, 5, 5],) | [] | list(int) -> list(int) |
is-mod-k with k=4 | ([8],) | True | list(int) -> bool |
parentheses around word delimited by ' ' & '-' | (' Barbara-Mackenzie',) | (Barbara)-Mackenzie | list(char) -> list(char) |
remove-index-k with k=4 | ([16, 13, 8, 3, 15, 0, 4, 2, 11],) | [16, 13, 8, 15, 0, 4, 2, 11] | list(int) -> list(int) |
Prepend 'Hornak' | ('H',) | HornakH | list(char) -> list(char) |
Extract word delimited by ')' - ',' | ('Cambridge)Storrs,449)10',) | Storrs | list(char) -> list(char) |
bool-identify-k with k=5 | ([],) | [] | list(int) -> list(bool) |
bool-identify-geq-k with k=5 | ([],) | [] | list(int) -> list(bool) |
Extract word delimited by ')' - '-' | ('+60)Lain-Ducati100-Bradford',) | Lain | list(char) -> list(char) |
Replace ',' w/ '(' | ('+132,Tobias',) | +132(Tobias | list(char) -> list(char) |
repeat-many | ([2, 4, 4, 1, 5],) | [4, 4, 1, 5, 4, 4, 1, 5] | list(int) -> list(int) |
drop-k with k=2 | ([2, 12, 7, 12],) | [7, 12] | list(int) -> list(int) |
remove eq 1 | ([3, 0, 3, 3, 2],) | [3, 0, 3, 3, 2] | list(int) -> list(int) |
Take first character and append '-' | ('751',) | 7- | list(char) -> list(char) |
parentheses around word delimited by ',' & ',' | ('Bess,994,Montiel',) | Bess,(994),Montiel | list(char) -> list(char) |
bool-identify-k with k=4 | ([4, 4, 4, 4, 4, 4],) | [True, True, True, True, True, True] | list(int) -> list(bool) |
Abbreviate separate words (II) | ('Gertude', 'Dermody') | G.D. | list(char) -> list(char) -> list(char) |
ensure suffix `769` | ('520 T769',) | 520 T769 | list(char) -> list(char) |
append-k with k=5 | ([2, 1, 16, 7, 11, 7],) | [2, 1, 16, 7, 11, 7, 5] | list(int) -> list(int) |
Abbreviate words separated by ')' | ('Coralee)Rowden',) | C.R. | list(char) -> list(char) |
remove eq 1 | ([4, 6, 2, 1, 5],) | [4, 6, 2, 5] | list(int) -> list(int) |
len | ([0],) | 1 | list(int) -> int |
Append two words delimited by ' ' | ('+155', 'Bobo') | +155 Bobo | list(char) -> list(char) -> list(char) |
keep eq 2 | ([1, 0, 2, 5, 5],) | [2] | list(int) -> list(int) |
Append 'Angeles' | ('Celsa',) | CelsaAngeles | list(char) -> list(char) |
bool-identify-geq-k with k=1 | ([],) | [] | list(int) -> list(bool) |
max | ([12, 11, 5, 12, 1, 2],) | 12 | list(int) -> int |
Take first character and append '-' | ('Scalia',) | S- | list(char) -> list(char) |
min | ([1, 2, 3],) | 1 | list(int) -> int |
drop first word delimited by '-' | ('62-Temple',) | Temple | list(char) -> list(char) |
parentheses around word delimited by '.' & ',' | ('.+197,64',) | .(+197),64 | list(char) -> list(char) |
Append '+138' | ('512',) | 512+138 | list(char) -> list(char) |
ensure suffix `Ramthun` | ('Annalisa Latimore ChismRamthun',) | Annalisa Latimore ChismRamthun | list(char) -> list(char) |
Append two words delimited by '(' | ('PA', 'Dermody') | PA(Dermody | list(char) -> list(char) -> list(char) |
Replace '(' w/ '.' | ('75(University',) | 75.University | list(char) -> list(char) |
Take first 2 characters | ('Dermody',) | De | list(char) -> list(char) |
rotate-k with k=1 | ([0, 1, 15, 10, 14, 4, 10, 1, 3, 13],) | [13, 0, 1, 15, 10, 14, 4, 10, 1, 3] | list(int) -> list(int) |
keep squares | ([25, 9, 25, 1, 0, 1, 16],) | [25, 9, 25, 1, 0, 1, 16] | list(int) -> list(int) |
Abbreviate words separated by '(' | ('Jeanice(Acura',) | J.A. | list(char) -> list(char) |
Extract word delimited by '(' - '(' | ('Ducati250(+183(Richert(Park',) | +183 | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=3 and n=5 | ([0, 1, 3, 2, 4],) | [3, 4, 1, 0, 2] | list(int) -> list(int) |
rotate-k with k=2 | ([8, 9, 7, 10, 8, 8, 6, 12],) | [6, 12, 8, 9, 7, 10, 8, 8] | list(int) -> list(int) |
drop first word delimited by '-' | ('Cambridge-+7-+140-29',) | +7-+140-29 | list(char) -> list(char) |
product | ([8, 6, 8, 11, 11, 16],) | 743424 | list(int) -> int |
nth (n=-1) word delimited by ' ' | ('K 358 Jacquiline Columbia',) | Columbia | list(char) -> list(char) |
Take first character and append '-' | ('Scalia',) | S- | list(char) -> list(char) |
index-head | ([3, 1, 3, 4, 2],) | 4 | list(int) -> int |
bool-identify-geq-k with k=2 | ([11, 11, 7, 1],) | [True, True, True, False] | list(int) -> list(bool) |
nth (n=-1) word delimited by '.' | ('+118.Mulloy.56',) | 56 | list(char) -> list(char) |
parentheses around second word | ('856 +138 424 Montiel',) | (+138) | list(char) -> list(char) |
First letters of words (IIIIII) | ('+155 174 Dr Haven',) | +1DH | list(char) -> list(char) |
nth (n=-1) word delimited by '(' | ('684(Ghoston',) | Ghoston | list(char) -> list(char) |
count-k with k=1 | ([16, 6, 8, 13, 14],) | 0 | list(int) -> int |
nth (n=-1) word delimited by ')' | ('+151)50)Withers',) | Withers | list(char) -> list(char) |
replace-all-with-index-k with k=4 | ([0, 4, 2, 5],) | [5, 5, 5, 5] | list(int) -> list(int) |
index-k with k=5 | ([4, 7, 13, 6, 12],) | 12 | list(int) -> int |
nth (n=1) word delimited by ',' | ('Tobias,986,FreeHafer,+9',) | 986 | list(char) -> list(char) |
range +1 maximum list | ([7, 4, 0],) | [0, 1, 2, 3, 4, 5, 6, 7] | list(int) -> list(int) |
index-k with k=3 | ([0, 10, 11, 7, 4],) | 11 | list(int) -> int |
Replace ',' w/ '.' | ('017,Celsa',) | 017.Celsa | list(char) -> list(char) |
Append 'Beata' | ('Eccleston',) | EcclestonBeata | list(char) -> list(char) |
pow-k with k=2 | ([15, 15, 0, 1, 3, 16],) | [225, 225, 0, 1, 9, 256] | list(int) -> list(int) |
parentheses around a single word (II) | ('29',) | (29) | list(char) -> list(char) |
Abbreviate separate words (II) | ('York', 'Madelaine') | Y.M. | list(char) -> list(char) -> list(char) |
len | ([5, 6, 2, 8, 9],) | 5 | list(int) -> int |
append-k with k=4 | ([7, 16, 14, 12, 2],) | [7, 16, 14, 12, 2, 4] | list(int) -> list(int) |
parentheses around first word | ('018 +176 Houston',) | (018) | list(char) -> list(char) |
nth (n=1) word delimited by ')' | ('Mariel)Carlene)Ducati100)Jeff',) | Carlene | list(char) -> list(char) |
index-k with k=5 | ([0, 15, 1, 4, 12, 10, 8, 7, 4, 2, 3, 12],) | 12 | list(int) -> int |
Append two words delimited by '(,' | ('245', '18') | 245(,18 | list(char) -> list(char) -> list(char) |
remove eq 0 | ([1, 5, 1, 1, 2],) | [1, 5, 1, 1, 2] | list(int) -> list(int) |
remove eq 2 | ([2, 5, 5, 4, 6],) | [5, 5, 4, 6] | list(int) -> list(int) |
Take first character and append ',' | ('Covelli',) | C, | list(char) -> list(char) |
modulo-k with k=4 | ([14, 4, 12, 13],) | [2, 0, 0, 1] | list(int) -> list(int) |
parentheses around word delimited by ',' & ',' | ('+174,Bradford,University',) | +174,(Bradford),University | list(char) -> list(char) |
parentheses around word delimited by ' ' & ' ' | ('Honda250 Melodi +9-Kotas',) | Honda250 (Melodi) +9-Kotas | list(char) -> list(char) |
nth (n=1) word delimited by ')' | ('R)+144',) | +144 | list(char) -> list(char) |
append-index-k with k=1 | ([8, 10, 0, 16],) | [8, 10, 0, 16, 8] | list(int) -> list(int) |
Abbreviate words separated by ',' | ('Rice,883',) | R.8. | list(char) -> list(char) |
slice-k-n with k=4 and n=3 | ([6, 1, 15, 0, 10, 9, 3, 13, 1, 12, 15, 3, 14, 1, 6],) | [0, 10, 9] | list(int) -> list(int) |
Drop last 1 characters | ('769',) | 76 | list(char) -> list(char) |
keep gt 3 | ([1, 0, 2, 4, 3],) | [4] | list(int) -> list(int) |
Append two words delimited by ')' | ('Park', 'Hopkins') | Park)Hopkins | list(char) -> list(char) -> list(char) |
Append two words delimited by '..' | ('Vena', '50') | Vena..50 | list(char) -> list(char) -> list(char) |
count-k with k=0 | ([0, 0, 9],) | 2 | list(int) -> int |
Take first 4 characters | ('Reily',) | Reil | list(char) -> list(char) |
append-k with k=1 | ([4, 6],) | [4, 6, 1] | list(int) -> list(int) |
prepend-index-k with k=4 | ([8, 15, 10, 13, 3, 12, 0, 7, 5, 2, 5],) | [13, 8, 15, 10, 13, 3, 12, 0, 7, 5, 2, 5] | list(int) -> list(int) |
drop first word delimited by ',' | ('Rice,Partida,894,40',) | Partida,894,40 | list(char) -> list(char) |
Subsets and Splits