description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
drop-k with k=3 | ([4, 1, 11, 2, 3, 15, 2, 0, 12],) | [2, 3, 15, 2, 0, 12] | list(int) -> list(int) |
parentheses around a single word (IIII) | ('Harvard',) | (Harvard) | list(char) -> list(char) |
parentheses around word delimited by ' ' & '-' | ('+151 Annalisa-Phillip-Pennsylvania',) | +151 (Annalisa)-Phillip-Pennsylvania | list(char) -> list(char) |
drop-k with k=5 | ([7, 13, 16, 12, 4, 5],) | [5] | list(int) -> list(int) |
nth (n=1) word delimited by '(' | ('Phialdelphia(+176(741(Ducati250',) | +176 | list(char) -> list(char) |
Abbreviate separate words (IIII) | ('M', '145') | M.1. | list(char) -> list(char) -> list(char) |
keep primes | ([3, 6, 3, 37, 4, 3, 3],) | [3, 3, 37, 3, 3] | list(int) -> list(int) |
Abbreviate words separated by ',' | ('R,+108',) | R.+. | list(char) -> list(char) |
slice-k-n with k=2 and n=3 | ([1, 5, 3, 6, 16, 9],) | [5, 3, 6] | list(int) -> list(int) |
remove empty lists | ([[], [], [False], [True, True, True]],) | [[False], [True, True, True]] | list(list(bool)) -> list(list(bool)) |
Append 'Beata' | ('S',) | SBeata | list(char) -> list(char) |
ensure suffix `Andria` | ('+68 +161 Heintz York',) | +68 +161 Heintz YorkAndria | list(char) -> list(char) |
Append two words delimited by '.-' | ('Salley', '29') | Salley.-29 | list(char) -> list(char) -> list(char) |
slice-k-n with k=1 and n=3 | ([13, 12, 5, 0, 6, 6, 4, 2, 2, 11],) | [13, 12, 5] | list(int) -> list(int) |
Append two words delimited by '-' | ('+196', 'O') | +196-O | list(char) -> list(char) -> list(char) |
nth (n=1) word delimited by ')' | ('R)+144',) | +144 | list(char) -> list(char) |
parentheses around a single word (IIIII) | ('68',) | (68) | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=5 and n=2 | ([0, 0, 0, 1, 1],) | [1, 1, 1, 0, 0] | list(int) -> list(int) |
First letters of words (III) | ('+5 Urbana',) | +U | list(char) -> list(char) |
nth (n=0) word delimited by ',' | ('MA,B,+95',) | MA | list(char) -> list(char) |
Append 'Cornell' | ('Akiyama',) | AkiyamaCornell | list(char) -> list(char) |
ensure suffix `769` | ('Ducati125 A Eccleston +198769',) | Ducati125 A Eccleston +198769 | list(char) -> list(char) |
range | (1,) | [0] | int -> list(int) |
modulo-k with k=3 | ([],) | [] | list(int) -> list(int) |
bool-identify-is-mod-k with k=1 | ([12],) | [True] | list(int) -> list(bool) |
Prepend 'Carlene' to first word | ('+155 45',) | Carlene+155 | list(char) -> list(char) |
parentheses around a single word (I) | ('+140',) | (+140) | list(char) -> list(char) |
bool-identify-geq-k with k=4 | ([5, 15, 2, 15, 1, 10, 5],) | [True, True, False, True, False, True, True] | list(int) -> list(bool) |
prepend-index-k with k=5 | ([15, 0, 1, 13, 8, 3, 2, 10, 5, 5],) | [8, 15, 0, 1, 13, 8, 3, 2, 10, 5, 5] | list(int) -> list(int) |
Take first 3 characters | ('Trinidad',) | Tri | list(char) -> list(char) |
Take first 5 characters | ('Carlene',) | Carle | list(char) -> list(char) |
drop first word delimited by ',' | ('+6,Micha,167',) | Micha,167 | list(char) -> list(char) |
append-k with k=1 | ([5, 0, 1, 16, 14, 12],) | [5, 0, 1, 16, 14, 12, 1] | list(int) -> list(int) |
drop-k with k=2 | ([2, 14, 1],) | [1] | list(int) -> list(int) |
Drop last 3 characters | ('Brescia',) | Bres | list(char) -> list(char) |
Drop last 5 characters | ('Mcgaughey',) | Mcga | list(char) -> list(char) |
Abbreviate separate words (IIIIII) | ('+81', 'Halpern') | +.H. | list(char) -> list(char) -> list(char) |
Prepend 'Jani' | ('25',) | Jani25 | list(char) -> list(char) |
evens | ([2, 5, 4, 2, 0, 5, 1, 1],) | [2, 4, 2, 0] | list(int) -> list(int) |
count-head-in-tail | ([3, 1, 3, 3, 2],) | 2 | list(int) -> int |
Prepend '+167' to first word | ('172 Hayley',) | +167172 | list(char) -> list(char) |
Prepend '+167' to first word | ('Launa 845',) | +167Launa | list(char) -> list(char) |
parentheses around first word | ('TX 33 Pennsylvania',) | (TX) | list(char) -> list(char) |
First letters of words (IIII) | ('310 817 Q +185',) | 38Q+ | list(char) -> list(char) |
mult-k with k=2 | ([11, 15, 10],) | [22, 30, 20] | list(int) -> list(int) |
Append two words delimited by '(' | ('Q', 'Ducati250') | Q(Ducati250 | list(char) -> list(char) -> list(char) |
Prepend 'Hornak' | ('865',) | Hornak865 | list(char) -> list(char) |
remove gt 1 | ([6, 4, 2, 0, 5],) | [0] | list(int) -> list(int) |
ensure suffix `769` | ('Ducati125 A Eccleston +198769',) | Ducati125 A Eccleston +198769 | list(char) -> list(char) |
rotate-k with k=1 | ([11, 3, 6, 7, 6, 8, 5, 6, 10, 3, 14, 4, 3, 8],) | [8, 11, 3, 6, 7, 6, 8, 5, 6, 10, 3, 14, 4, 3] | list(int) -> list(int) |
Append two words delimited by ')' | ('Storrs', 'Jacquiline') | Storrs)Jacquiline | list(char) -> list(char) -> list(char) |
Abbreviate separate words (II) | ('York', 'Madelaine') | Y.M. | list(char) -> list(char) -> list(char) |
replace-all-with-index-k with k=2 | ([3, 7, 10, 11, 7],) | [7, 7, 7, 7, 7] | list(int) -> list(int) |
Append two words delimited by ',' | ('Acura100', '705') | Acura100,705 | list(char) -> list(char) -> list(char) |
Prepend '+174' | ('851',) | +174851 | list(char) -> list(char) |
repeat-k with k=3 | ([16, 6, 0, 0],) | [16, 6, 0, 0, 16, 6, 0, 0, 16, 6, 0, 0] | list(int) -> list(int) |
nth (n=0) word delimited by ',' | ('R,Miah,Arbor',) | R | list(char) -> list(char) |
Append 2 strings (IIII) | ('Seamons', 'Lakenya') | SeamonsLakenya | list(char) -> list(char) -> list(char) |
odds | ([15],) | [15] | list(int) -> list(int) |
Prepend 'Sergienko' | ('009',) | Sergienko009 | list(char) -> list(char) |
Abbreviate separate words (IIII) | ('413', 'Acura') | 4.A. | list(char) -> list(char) -> list(char) |
slice-k-n with k=1 and n=1 | ([16, 14, 0, 6, 8, 4, 0, 0, 11],) | [16] | list(int) -> list(int) |
nth (n=1) word delimited by '.' | ('Karrie.Covelli.882.+129',) | Covelli | list(char) -> list(char) |
bool-identify-k with k=4 | ([4, 16, 10],) | [True, False, False] | list(int) -> list(bool) |
parentheses around word delimited by ' ' & ' ' | ('94 Heintz Q',) | 94 (Heintz) Q | list(char) -> list(char) |
nth (n=1) word delimited by '-' | ('Kotas-028',) | 028 | list(char) -> list(char) |
count-k with k=0 | ([10, 15],) | 0 | list(int) -> int |
keep eq 2 | ([4, 4, 5, 4, 0],) | [] | list(int) -> list(int) |
parentheses around word delimited by ',' & ' ' | (',551 Cencici 68',) | ,(551) Cencici 68 | list(char) -> list(char) |
slice-k-n with k=4 and n=1 | ([13, 13, 12, 9, 14, 1, 12, 4, 14, 8, 8, 0, 1],) | [9] | list(int) -> list(int) |
Take first character and append '(' | ('020',) | 0( | list(char) -> list(char) |
Replace '(' w/ ')' | ('Hornak(Q(Mackenzie',) | Hornak)Q)Mackenzie | list(char) -> list(char) |
append-index-k with k=4 | ([8, 13, 11, 9, 0, 13, 6, 16, 12],) | [8, 13, 11, 9, 0, 13, 6, 16, 12, 9] | list(int) -> list(int) |
slice-k-n with k=3 and n=3 | ([4, 3, 2, 1, 10, 0, 14, 0, 14],) | [2, 1, 10] | list(int) -> list(int) |
ensure suffix `Columbia` | ('Ferrari250 +58 AndrewColumbia',) | Ferrari250 +58 AndrewColumbia | list(char) -> list(char) |
drop-k with k=1 | ([15, 1],) | [1] | list(int) -> list(int) |
Append 2 strings (III) | ('25', '176') | 25176 | list(char) -> list(char) -> list(char) |
Extract word delimited by ')' - '-' | ('+144)060-Soderstrom)68',) | 060 | list(char) -> list(char) |
Abbreviate separate words (III) | ('692', 'Soderstrom') | 6.S. | list(char) -> list(char) -> list(char) |
Abbreviate words separated by ' ' | ('938 Alida',) | 9.A. | list(char) -> list(char) |
nth (n=1) word delimited by ' ' | ('University Sergienko',) | Sergienko | list(char) -> list(char) |
head | ([0],) | 0 | list(int) -> int |
Replace '(' w/ ' ' | ('CT(Heintz(Cornell(Phillip',) | CT Heintz Cornell Phillip | list(char) -> list(char) |
ensure suffix `997` | ('Hopkins 701 F',) | Hopkins 701 F997 | list(char) -> list(char) |
Append two words delimited by '. ' | ('Haven', '575') | Haven. 575 | list(char) -> list(char) -> list(char) |
Append 2 strings (II) | ('+163', '+141') | +163+141 | list(char) -> list(char) -> list(char) |
nth (n=0) word delimited by '(' | ('Lango(Desiree',) | Lango | list(char) -> list(char) |
ensure suffix `769` | ('Andria +140 Spell',) | Andria +140 Spell769 | list(char) -> list(char) |
drop-k with k=4 | ([7, 4, 8, 1],) | [] | list(int) -> list(int) |
Extract word delimited by ')' - '-' | ('+144)060-Soderstrom)68',) | 060 | list(char) -> list(char) |
nth (n=-1) word delimited by '(' | ('684(Ghoston',) | Ghoston | list(char) -> list(char) |
pow-k with k=2 | ([11, 1, 16, 14, 2, 12, 11],) | [121, 1, 256, 196, 4, 144, 121] | list(int) -> list(int) |
nth (n=1) word delimited by '.' | ('Ducati125.of.588.843',) | of | list(char) -> list(char) |
Take first character and append ')' | ('DPhiladelphia',) | D) | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=3 and n=4 | ([],) | [] | list(int) -> list(int) |
bool-identify-is-mod-k with k=2 | ([0, 13, 2],) | [True, False, True] | list(int) -> list(bool) |
prepend-k with k=4 | ([12, 15, 12, 4],) | [4, 12, 15, 12, 4] | list(int) -> list(int) |
last | ([0],) | 0 | list(int) -> int |
range | (2,) | [0, 1] | int -> list(int) |
min | ([11, 15, 2, 0],) | 0 | list(int) -> int |
Subsets and Splits