description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
remove gt 3 | ([1, 6, 3, 5, 3],) | [1, 3, 3] | list(int) -> list(int) |
Take first character and append ',' | ('56',) | 5, | list(char) -> list(char) |
Abbreviate words separated by ' ' | ('Annalisa College',) | A.C. | list(char) -> list(char) |
pow-k with k=2 | ([3],) | [9] | list(int) -> list(int) |
replace-all-with-index-k with k=5 | ([9, 12, 12, 15, 13, 16, 5, 13],) | [13, 13, 13, 13, 13, 13, 13, 13] | list(int) -> list(int) |
Drop last 4 characters | ('Jenee',) | J | list(char) -> list(char) |
slice-k-n with k=4 and n=4 | ([7, 9, 7, 10, 16, 2, 12, 11, 15, 1, 7, 2],) | [10, 16, 2, 12] | list(int) -> list(int) |
parentheses around a single word (I) | ('Withers',) | (Withers) | list(char) -> list(char) |
drop-k with k=1 | ([6, 4, 15, 0],) | [4, 15, 0] | list(int) -> list(int) |
prepend-index-k with k=1 | ([11, 5, 11, 16],) | [11, 11, 5, 11, 16] | list(int) -> list(int) |
kth-largest with k=2 | ([7, 3, 2, 8],) | 7 | list(int) -> int |
Extract word delimited by ',' - '.' | ('504,566.20.F',) | 566 | list(char) -> list(char) |
remove-index-k with k=2 | ([9, 5],) | [9] | list(int) -> list(int) |
count-k with k=4 | ([13, 4, 0, 1, 4],) | 2 | list(int) -> int |
bool-identify-is-mod-k with k=4 | ([8],) | [True] | list(int) -> list(bool) |
append-index-k with k=5 | ([15, 15, 9, 4, 2, 2, 14, 13, 5, 4],) | [15, 15, 9, 4, 2, 2, 14, 13, 5, 4, 2] | list(int) -> list(int) |
Append two words delimited by '(,' | ('Ducati100', '+176') | Ducati100(,+176 | list(char) -> list(char) -> list(char) |
Abbreviate separate words (I) | ('Irwin', 'Spell') | I.S. | list(char) -> list(char) -> list(char) |
remove eq 1 | ([4, 0, 2, 2, 4],) | [4, 0, 2, 2, 4] | list(int) -> list(int) |
keep-mod-head | ([12, 3],) | [] | list(int) -> list(int) |
keep eq 2 | ([0, 5, 0, 5, 5],) | [] | list(int) -> list(int) |
range | (5,) | [0, 1, 2, 3, 4] | int -> list(int) |
prepend-k with k=4 | ([12, 0, 9, 14, 11],) | [4, 12, 0, 9, 14, 11] | list(int) -> list(int) |
First letters of words (II) | ('6 Kimberley 095',) | 6K0 | list(char) -> list(char) |
ensure suffix `Scalia` | ('Ducati250 HoustonScalia',) | Ducati250 HoustonScalia | list(char) -> list(char) |
drop first word delimited by '(' | ('Ducati(969(+144(Olague',) | 969(+144(Olague | list(char) -> list(char) |
remove-mod-k with k=4 | ([10, 3, 5, 8, 3, 7],) | [10, 3, 5, 3, 7] | list(int) -> list(int) |
Abbreviate words separated by ' ' | ('038 Cruz',) | 0.C. | list(char) -> list(char) |
keep gt 3 | ([4, 5, 6, 3, 6],) | [4, 5, 6, 6] | list(int) -> list(int) |
drop first word delimited by '-' | ('Coralee-862',) | 862 | list(char) -> list(char) |
Replace '.' w/ ')' | ('622.270',) | 622)270 | list(char) -> list(char) |
Prepend 'Ghoston' to first word | ('720 588',) | Ghoston720 | list(char) -> list(char) |
prepend-k with k=0 | ([5, 11, 9, 0, 7, 1, 7],) | [0, 5, 11, 9, 0, 7, 1, 7] | list(int) -> list(int) |
Append '636' | ('C',) | C636 | list(char) -> list(char) |
nth (n=-1) word delimited by ',' | ('+194,Scalia,Montiel,Ghoston',) | Ghoston | list(char) -> list(char) |
drop first word delimited by '(' | ('Ducati(969(+144(Olague',) | 969(+144(Olague | list(char) -> list(char) |
Replace '.' w/ ')' | ('83.Ramthun',) | 83)Ramthun | list(char) -> list(char) |
replace-all-with-index-k with k=4 | ([12, 16, 4, 8, 4, 0, 0, 16, 14, 7],) | [8, 8, 8, 8, 8, 8, 8, 8, 8, 8] | list(int) -> list(int) |
Drop last 2 characters | ('MI',) | null | list(char) -> list(char) |
slice-k-n with k=2 and n=4 | ([16, 6, 12, 6, 8, 11, 7, 2, 11, 2, 4, 1],) | [6, 12, 6, 8] | list(int) -> list(int) |
slice-k-n with k=4 and n=5 | ([6, 5, 16, 5, 5, 12, 12, 9, 9, 16, 14, 14],) | [5, 5, 12, 12, 9] | list(int) -> list(int) |
Append 2 strings (IIII) | ('Marcus', '776') | Marcus776 | list(char) -> list(char) -> list(char) |
Append 2 strings (IIIIII) | ('O', '765') | O765 | list(char) -> list(char) -> list(char) |
nth (n=-1) word delimited by ',' | ('468,376',) | 376 | list(char) -> list(char) |
Abbreviate separate words (IIIIII) | ('+81', 'Halpern') | +.H. | list(char) -> list(char) -> list(char) |
index-k with k=4 | ([2, 16, 6, 4, 4, 1, 5, 1, 10],) | 4 | list(int) -> int |
odds | ([2, 12, 6, 9, 1, 12],) | [9, 1] | list(int) -> list(int) |
ensure suffix `568` | ('+23 10 IL 844',) | +23 10 IL 844568 | list(char) -> list(char) |
slice-k-n with k=1 and n=5 | ([3, 0, 13, 7, 3, 5, 13, 11, 12, 5, 11],) | [3, 0, 13, 7, 3] | list(int) -> list(int) |
nth (n=0) word delimited by '.' | ('Bradford.971.+180',) | Bradford | list(char) -> list(char) |
Append two words delimited by ' ' | ('Lain', 'Irwin') | Lain Irwin | list(char) -> list(char) -> list(char) |
Abbreviate separate words (III) | ('+174', 'Lain') | +.L. | list(char) -> list(char) -> list(char) |
Append 2 strings (I) | ('Richert', 'NY') | RichertNY | list(char) -> list(char) -> list(char) |
Append 'Dermody' | ('Columbia',) | ColumbiaDermody | list(char) -> list(char) |
append-k with k=1 | ([0, 16],) | [0, 16, 1] | list(int) -> list(int) |
remove-index-k with k=3 | ([1, 14, 9, 7, 11, 16],) | [1, 14, 7, 11, 16] | list(int) -> list(int) |
remove gt 1 | ([0, 2, 1, 1, 2],) | [0, 1, 1] | list(int) -> list(int) |
prepend-k with k=2 | ([15, 12, 1, 10, 5, 1],) | [2, 15, 12, 1, 10, 5, 1] | list(int) -> list(int) |
Append two words delimited by '(,' | ('Harvard', '+183') | Harvard(,+183 | list(char) -> list(char) -> list(char) |
Prepend 'Hornak' | ('H',) | HornakH | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=3 and n=4 | ([0],) | [3] | list(int) -> list(int) |
keep gt 0 | ([1, 5, 1, 1, 6],) | [1, 5, 1, 1, 6] | list(int) -> list(int) |
remove-index-k with k=1 | ([14, 13, 8, 15, 8, 10, 0, 6],) | [13, 8, 15, 8, 10, 0, 6] | list(int) -> list(int) |
Append two words delimited by '..' | ('Vena', '50') | Vena..50 | list(char) -> list(char) -> list(char) |
nth (n=0) word delimited by ')' | ('E)844',) | E | list(char) -> list(char) |
index-head | ([2, 1, 2],) | 2 | list(int) -> int |
nth (n=0) word delimited by '.' | ('505.+46',) | 505 | list(char) -> list(char) |
is-odds | ([11, 31, 17, 21, 27, 25, 15],) | True | list(int) -> bool |
Abbreviate words separated by ')' | ('83)56',) | 8.5. | list(char) -> list(char) |
bool-identify-geq-k with k=1 | ([1, 2, 15, 11, 14, 1],) | [True, True, True, True, True, True] | list(int) -> list(bool) |
kth-largest with k=1 | ([3, 15, 1],) | 15 | list(int) -> int |
Replace ' ' w/ '(' | ('+9 Rowden Reily',) | +9(Rowden(Reily | list(char) -> list(char) |
slice-k-n with k=1 and n=4 | ([14, 3, 5, 6, 0, 14, 6, 4, 11, 8, 11, 11, 10],) | [14, 3, 5, 6] | list(int) -> list(int) |
Prepend 'Carlene' to first word | ('43 927',) | Carlene43 | list(char) -> list(char) |
kth-largest with k=5 | ([7, 2, 7, 14, 6, 0, 2, 14, 2, 16, 16],) | 7 | list(int) -> int |
has-head-in-tail | ([2, 1, 2],) | True | list(int) -> bool |
keep-mod-k with k=4 | ([24, 8, 28, 36, 11, 12],) | [24, 8, 28, 36, 12] | list(int) -> list(int) |
parentheses around a single word (IIIII) | ('Acura',) | (Acura) | list(char) -> list(char) |
First letters of words (IIIII) | ('751 Drexel L J',) | 7DLJ | list(char) -> list(char) |
append-k with k=2 | ([1, 5, 15],) | [1, 5, 15, 2] | list(int) -> list(int) |
parentheses around word delimited by '.' & ',' | ('20.066,TX-Pannell',) | 20.(066),TX-Pannell | list(char) -> list(char) |
parentheses around second word | ('Trinidad 311 33',) | (311) | list(char) -> list(char) |
Append two words delimited by '. ' | ('771', '5') | 771. 5 | list(char) -> list(char) -> list(char) |
parentheses around a single word (II) | ('29',) | (29) | list(char) -> list(char) |
slice-k-n with k=5 and n=1 | ([16, 12, 11, 0, 0, 5, 10, 14],) | [0] | list(int) -> list(int) |
slice-k-n with k=5 and n=2 | ([4, 6, 13, 1, 3, 8, 5, 4, 16, 8, 6, 15],) | [3, 8] | list(int) -> list(int) |
Append two words delimited by '(,' | ('50', '949') | 50(,949 | list(char) -> list(char) -> list(char) |
drop first word delimited by '(' | ('+9(Urbana',) | Urbana | list(char) -> list(char) |
repeat-k with k=4 | ([14, 8, 6, 2, 6],) | [14, 8, 6, 2, 6, 14, 8, 6, 2, 6, 14, 8, 6, 2, 6, 14, 8, 6, 2, 6] | list(int) -> list(int) |
Append two words delimited by '. ' | ('Haven', '575') | Haven. 575 | list(char) -> list(char) -> list(char) |
Prepend 'Jani' | ('25',) | Jani25 | list(char) -> list(char) |
Append 'Cornell' | ('101',) | 101Cornell | list(char) -> list(char) |
nth (n=1) word delimited by '-' | ('504-Jeanice-K',) | Jeanice | list(char) -> list(char) |
remove-mod-k with k=5 | ([6],) | [6] | list(int) -> list(int) |
repeat-many | ([4, 3],) | [3, 3, 3, 3] | list(int) -> list(int) |
max | ([1, 1, 2, 1],) | 2 | list(int) -> int |
Append two words delimited by ' ' | ('Acura', 'Vena') | Acura Vena | list(char) -> list(char) -> list(char) |
keep eq 0 | ([4, 6, 1, 3, 1],) | [] | list(int) -> list(int) |
bool-identify-geq-k with k=3 | ([8, 4, 1, 7],) | [True, True, False, True] | list(int) -> list(bool) |
bool-identify-is-mod-k with k=1 | ([1, 1, 1, 1, 1, 6, 1],) | [True, True, True, True, True, True, True] | list(int) -> list(bool) |
Subsets and Splits