description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
Drop last 4 characters | ('Andria',) | An | list(char) -> list(char) |
nth (n=1) word delimited by '(' | ('+188(45(+9',) | 45 | list(char) -> list(char) |
repeat-k with k=2 | ([13, 6],) | [13, 6, 13, 6] | list(int) -> list(int) |
drop-k with k=3 | ([8, 5, 1, 4, 15, 4, 9, 11, 1],) | [4, 15, 4, 9, 11, 1] | list(int) -> list(int) |
rotate-k with k=2 | ([12, 3, 15, 13],) | [15, 13, 12, 3] | list(int) -> list(int) |
ensure suffix `Ramthun` | ('Ghoston Bobo Scalia Chism',) | Ghoston Bobo Scalia ChismRamthun | list(char) -> list(char) |
Take first character and append ',' | ('Covelli',) | C, | list(char) -> list(char) |
keep eq 3 | ([4, 3, 6, 3, 2],) | [3, 3] | list(int) -> list(int) |
Append two words delimited by '.' | ('R', 'Rowden') | R.Rowden | list(char) -> list(char) -> list(char) |
First letters of words (IIII) | ('Ducati250 Lashanda N Barbara',) | DLNB | list(char) -> list(char) |
Prepend 'Ghoston' to first word | ('125 +118',) | Ghoston125 | list(char) -> list(char) |
remove eq 1 | ([1, 2, 3, 2, 1],) | [2, 3, 2] | list(int) -> list(int) |
Append 'Angeles' | ('469',) | 469Angeles | list(char) -> list(char) |
Append 2 strings (IIIII) | ('Jacquiline', 'College') | JacquilineCollege | list(char) -> list(char) -> list(char) |
keep-mod-k with k=2 | ([2, 12, 2],) | [2, 12, 2] | list(int) -> list(int) |
Prepend 'Ghoston' to first word | ('FreeHafer 47',) | GhostonFreeHafer | list(char) -> list(char) |
slice-k-n with k=5 and n=5 | ([5, 0, 6, 7, 6, 2, 8, 6, 13, 3, 6],) | [6, 2, 8, 6, 13] | list(int) -> list(int) |
append-index-k with k=1 | ([0, 14, 6],) | [0, 14, 6, 0] | list(int) -> list(int) |
remove-index-k with k=2 | ([7, 4, 0, 1, 11, 0, 11],) | [7, 0, 1, 11, 0, 11] | list(int) -> list(int) |
bool-identify-k with k=5 | ([5],) | [True] | list(int) -> list(bool) |
take-k with k=4 | ([8, 9, 3, 11, 1],) | [8, 9, 3, 11] | list(int) -> list(int) |
remove-index-k with k=5 | ([1, 3, 13, 12, 5, 8, 13, 0, 13, 3],) | [1, 3, 13, 12, 8, 13, 0, 13, 3] | list(int) -> list(int) |
parentheses around a single word (II) | ('B',) | (B) | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=1 and n=3 | ([1, 2, 2, 1],) | [2, 0, 0, 2] | list(int) -> list(int) |
repeat-many | ([1, 7, 16, 2, 2],) | [7, 16, 2, 2] | list(int) -> list(int) |
Replace '-' w/ ',' | ('+138-Irwin-46',) | +138,Irwin,46 | list(char) -> list(char) |
slice-k-n with k=3 and n=3 | ([4, 6, 3, 11, 8, 0, 13, 2, 12, 10, 12, 12, 15],) | [3, 11, 8] | list(int) -> list(int) |
Prepend '177' to first word | ('421 Annalisa',) | 177421 | list(char) -> list(char) |
add-k with k=4 | ([3],) | [7] | list(int) -> list(int) |
Append two words delimited by ')' | ('42', '959') | 42)959 | list(char) -> list(char) -> list(char) |
add-k with k=1 | ([9, 1, 13, 10, 13],) | [10, 2, 14, 11, 14] | list(int) -> list(int) |
Drop last 4 characters | ('Santa',) | S | list(char) -> list(char) |
take-k with k=2 | ([5, 2, 13, 4, 15, 6, 14, 8],) | [5, 2] | list(int) -> list(int) |
Abbreviate words separated by '-' | ('Mackenzie-K',) | M.K. | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=3 and n=5 | ([3, 1, 1, 4, 1, 2],) | [1, 4, 4, 2, 4, 0] | list(int) -> list(int) |
count-k with k=1 | ([3, 3, 5, 1, 13],) | 1 | list(int) -> int |
prepend-k with k=1 | ([15, 3, 5],) | [1, 15, 3, 5] | list(int) -> list(int) |
Append two words delimited by ' -' | ('2', 'J') | 2 -J | list(char) -> list(char) -> list(char) |
Append two words delimited by '(,' | ('245', '18') | 245(,18 | list(char) -> list(char) -> list(char) |
Take first character and append '(' | ('82',) | 8( | list(char) -> list(char) |
keep gt 0 | ([4, 0, 0, 2, 1],) | [4, 2, 1] | list(int) -> list(int) |
drop first word delimited by '.' | ('598.849.854.Kimberley',) | 849.854.Kimberley | list(char) -> list(char) |
Prepend 'Hornak' | ('H',) | HornakH | list(char) -> list(char) |
is-mod-k with k=4 | ([0, 12, 40, 48, 16, 20],) | True | list(int) -> bool |
parentheses around a single word (IIIII) | ('Acura',) | (Acura) | list(char) -> list(char) |
Extract word delimited by '-' - ')' | ('155-Reily)Haven)+132',) | Reily | list(char) -> list(char) |
slice-k-n with k=3 and n=5 | ([14, 1, 6, 4, 10, 10, 13, 9, 1, 10, 4, 3, 12, 8, 14, 13],) | [6, 4, 10, 10, 13] | list(int) -> list(int) |
Append two words delimited by '.' | ('R', 'Rowden') | R.Rowden | list(char) -> list(char) -> list(char) |
prepend-index-k with k=1 | ([11, 5, 9, 14],) | [11, 11, 5, 9, 14] | list(int) -> list(int) |
Append two words delimited by ' -' | ('622', 'Andrew') | 622 -Andrew | list(char) -> list(char) -> list(char) |
parentheses around a single word (IIII) | ('+176',) | (+176) | list(char) -> list(char) |
nth (n=-1) word delimited by '-' | ('473-Nancy-980-166',) | 166 | list(char) -> list(char) |
Replace '(' w/ ' ' | ('Nancy(Houston',) | Nancy Houston | list(char) -> list(char) |
drop first word delimited by ' ' | ('141 Lashanda',) | Lashanda | list(char) -> list(char) |
take-k with k=5 | ([0, 11, 10, 16, 9, 2, 6],) | [0, 11, 10, 16, 9] | list(int) -> list(int) |
drop first word delimited by ',' | ('943,65,216,CA',) | 65,216,CA | list(char) -> list(char) |
prepend-k with k=0 | ([4, 14, 11, 0],) | [0, 4, 14, 11, 0] | list(int) -> list(int) |
parentheses around word delimited by '-' & '.' | ('-Haven.80',) | -(Haven).80 | list(char) -> list(char) |
Append two words delimited by '.' | ('632', '836') | 632.836 | list(char) -> list(char) -> list(char) |
Take first 3 characters | ('Trinidad',) | Tri | list(char) -> list(char) |
Take first character and append ')' | ('DPhiladelphia',) | D) | list(char) -> list(char) |
Abbreviate separate words (I) | ('+118', '894') | +.8. | list(char) -> list(char) -> list(char) |
Append 2 strings (I) | ('I', '+172') | I+172 | list(char) -> list(char) -> list(char) |
Extract word delimited by ')' - ',' | ('+104)+58,Ramthun,Bobo',) | +58 | list(char) -> list(char) |
append-k with k=5 | ([2, 13],) | [2, 13, 5] | list(int) -> list(int) |
add-k with k=5 | ([7, 4, 11],) | [12, 9, 16] | list(int) -> list(int) |
nth (n=1) word delimited by '.' | ('Bogle.Jani',) | Jani | list(char) -> list(char) |
Abbreviate separate words (IIIII) | ('Mulloy', 'V') | M.V. | list(char) -> list(char) -> list(char) |
Drop last 1 characters | ('769',) | 76 | list(char) -> list(char) |
Replace '(' w/ ')' | ('Hornak(Q(Mackenzie',) | Hornak)Q)Mackenzie | list(char) -> list(char) |
nth (n=0) word delimited by '(' | ('B(23',) | B | list(char) -> list(char) |
parentheses around a single word (II) | ('Honda',) | (Honda) | list(char) -> list(char) |
Drop last 5 characters | ('Cencici',) | Ce | list(char) -> list(char) |
ensure suffix `568` | ('+23 10 IL 844',) | +23 10 IL 844568 | list(char) -> list(char) |
+1 maximum list | ([0, 0, 5],) | 6 | list(int) -> int |
rotate-k with k=2 | ([7, 11, 0, 13, 3, 9, 1, 13, 10, 8, 2, 12, 9, 11],) | [9, 11, 7, 11, 0, 13, 3, 9, 1, 13, 10, 8, 2, 12] | list(int) -> list(int) |
mult-k with k=3 | ([9, 11, 0],) | [27, 33, 0] | list(int) -> list(int) |
tail | ([13, 0, 4, 12],) | [0, 4, 12] | list(int) -> list(int) |
drop first word delimited by ',' | ('+6,Micha,167',) | Micha,167 | list(char) -> list(char) |
add-k with k=4 | ([15, 7, 9],) | [19, 11, 13] | list(int) -> list(int) |
Take first 4 characters | ('+106',) | +106 | list(char) -> list(char) |
Replace '-' w/ ',' | ('834-Cruz-+197-Clasen',) | 834,Cruz,+197,Clasen | list(char) -> list(char) |
Take first character and append '.' | ('+189',) | +. | list(char) -> list(char) |
parentheses around second word | ('856 +138 424 Montiel',) | (+138) | list(char) -> list(char) |
remove-mod-k with k=4 | ([10],) | [10] | list(int) -> list(int) |
bool-identify-k with k=4 | ([6, 4, 4, 0],) | [False, True, True, False] | list(int) -> list(bool) |
parentheses around word delimited by ',' & ',' | ('100,066,Annalisa',) | 100,(066),Annalisa | list(char) -> list(char) |
Prepend 'UCLA' | ('Santa',) | UCLASanta | list(char) -> list(char) |
replace-all-with-index-k with k=1 | ([11, 11, 6, 0, 10],) | [11, 11, 11, 11, 11] | list(int) -> list(int) |
remove gt 0 | ([1, 2, 4, 5, 2],) | [] | list(int) -> list(int) |
Abbreviate separate words (IIII) | ('M', '145') | M.1. | list(char) -> list(char) -> list(char) |
parentheses around first word | ('415 +115 484',) | (415) | list(char) -> list(char) |
has-k with k=3 | ([3, 6],) | True | list(int) -> bool |
keep-mod-k with k=2 | ([],) | [] | list(int) -> list(int) |
is-squares | ([16, 49, 100],) | True | list(int) -> bool |
Take first 2 characters | ('+2',) | +2 | list(char) -> list(char) |
Prepend '170' to first word | ('Drexel Maryann',) | 170Drexel | list(char) -> list(char) |
drop-k with k=3 | ([10, 15, 13, 9, 13, 15, 7, 12, 3, 14],) | [9, 13, 15, 7, 12, 3, 14] | list(int) -> list(int) |
Append two words delimited by ',' | ('Acura100', '705') | Acura100,705 | list(char) -> list(char) -> list(char) |
nth (n=1) word delimited by '(' | ('+188(45(+9',) | 45 | list(char) -> list(char) |
Subsets and Splits