description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
Extract word delimited by '(' - '(' | ('Andria(Honda125(+75(Malissa',) | Honda125 | list(char) -> list(char) |
Append 2 strings (IIIII) | ('Madelaine', '29') | Madelaine29 | list(char) -> list(char) -> list(char) |
nth (n=0) word delimited by ')' | ('L)40)591)W',) | L | list(char) -> list(char) |
Abbreviate separate words (II) | ('395', '082') | 3.0. | list(char) -> list(char) -> list(char) |
nth (n=-1) word delimited by '(' | ('N(Spell(Babiarz(MD',) | MD | list(char) -> list(char) |
nth (n=0) word delimited by '-' | ('+172-Penn-Chilcott-E',) | +172 | list(char) -> list(char) |
Append two words delimited by '(,' | ('Harvard', '+183') | Harvard(,+183 | list(char) -> list(char) -> list(char) |
take-k with k=2 | ([11, 2, 1, 14, 8, 6, 9],) | [11, 2] | list(int) -> list(int) |
product | ([10, 6, 8, 4, 6, 6, 7],) | 483840 | list(int) -> int |
append-k with k=4 | ([14, 1, 8, 0, 5, 7],) | [14, 1, 8, 0, 5, 7, 4] | list(int) -> list(int) |
drop-k with k=1 | ([3, 13],) | [13] | list(int) -> list(int) |
bool-identify-geq-k with k=5 | ([8, 6, 12, 16, 3, 6, 16],) | [True, True, True, True, False, True, True] | list(int) -> list(bool) |
repeat-k with k=2 | ([6, 6, 11, 5, 9],) | [6, 6, 11, 5, 9, 6, 6, 11, 5, 9] | list(int) -> list(int) |
Take first character and append ')' | ('DPhiladelphia',) | D) | list(char) -> list(char) |
nth (n=1) word delimited by ',' | ('Sergienko,009,Jacquiline,Sergienko',) | 009 | list(char) -> list(char) |
kth-largest with k=5 | ([1, 12, 11, 6, 11, 15, 11, 2, 7, 8, 13],) | 11 | list(int) -> int |
dup | ([8, 16, 5],) | [8, 8, 16, 16, 5, 5] | list(int) -> list(int) |
Replace '(' w/ ')' | ('Babiarz(Annalisa(+151(Samuel',) | Babiarz)Annalisa)+151)Samuel | list(char) -> list(char) |
ensure suffix `Andria` | ('+13 20 +7',) | +13 20 +7Andria | list(char) -> list(char) |
First letters of words (IIIII) | ('751 Drexel L J',) | 7DLJ | list(char) -> list(char) |
kth-largest with k=2 | ([16, 15, 13, 0, 15],) | 15 | list(int) -> int |
caesar-cipher-k-modulo-n with k=2 and n=4 | ([0, 1, 1, 2, 3],) | [2, 3, 3, 0, 1] | list(int) -> list(int) |
odds | ([16],) | [] | list(int) -> list(int) |
rotate-k with k=5 | ([4, 12, 6, 13, 11, 6, 1, 3, 4],) | [11, 6, 1, 3, 4, 4, 12, 6, 13] | list(int) -> list(int) |
nth (n=-1) word delimited by '-' | ('473-Nancy-980-166',) | 166 | list(char) -> list(char) |
Take first character and append '-' | ('751',) | 7- | list(char) -> list(char) |
is-mod-k with k=3 | ([0, 16, 0, 3],) | False | list(int) -> bool |
ensure suffix `769` | ('+169 +163 +129 46',) | +169 +163 +129 46769 | list(char) -> list(char) |
is-squares | ([9, 1],) | True | list(int) -> bool |
caesar-cipher-k-modulo-n with k=3 and n=2 | ([],) | [] | list(int) -> list(int) |
repeat | ([3, 7],) | [7, 7, 7] | list(int) -> list(int) |
slice-k-n with k=4 and n=4 | ([4, 0, 15, 15, 10, 0, 11, 14, 4, 15, 10, 5, 7, 10],) | [15, 10, 0, 11] | list(int) -> list(int) |
modulo-k with k=2 | ([1],) | [1] | list(int) -> list(int) |
remove-index-k with k=4 | ([13, 12, 15, 1, 7, 3, 16, 10, 12, 14],) | [13, 12, 15, 7, 3, 16, 10, 12, 14] | list(int) -> list(int) |
Append 'Cornell' | ('715',) | 715Cornell | list(char) -> list(char) |
repeat-many | ([2, 12],) | [12, 12] | list(int) -> list(int) |
nth (n=0) word delimited by ',' | ('MA,B,+95',) | MA | list(char) -> list(char) |
Extract word delimited by '-' - ')' | ('155-Reily)Haven)+132',) | Reily | list(char) -> list(char) |
Drop last 4 characters | ('+167',) | null | list(char) -> list(char) |
index-k with k=4 | ([4, 6, 12, 8],) | 8 | list(int) -> int |
rotate-k with k=5 | ([8, 1, 14, 9, 7, 11, 16, 0, 15, 1, 4, 12, 10],) | [15, 1, 4, 12, 10, 8, 1, 14, 9, 7, 11, 16, 0] | list(int) -> list(int) |
parentheses around a single word (IIII) | ('Harvard',) | (Harvard) | list(char) -> list(char) |
nth (n=1) word delimited by ' ' | ('University Sergienko',) | Sergienko | list(char) -> list(char) |
modulo-k with k=1 | ([11, 1, 16, 14, 2, 12, 11],) | [0, 0, 0, 0, 0, 0, 0] | list(int) -> list(int) |
rotate-k with k=1 | ([10, 5, 9, 13, 4, 8, 10, 3, 2, 12, 9, 0],) | [0, 10, 5, 9, 13, 4, 8, 10, 3, 2, 12, 9] | list(int) -> list(int) |
keep gt 3 | ([0, 0, 6, 6, 4],) | [6, 6, 4] | list(int) -> list(int) |
parentheses around a single word (IIII) | ('+155',) | (+155) | list(char) -> list(char) |
last | ([1, 12, 4, 0, 0, 14, 14],) | 14 | list(int) -> int |
add-k with k=2 | ([9, 11, 0, 0, 5, 3, 2],) | [11, 13, 2, 2, 7, 5, 4] | list(int) -> list(int) |
has-k with k=3 | ([3, 16, 3],) | True | list(int) -> bool |
Abbreviate words separated by ')' | ('Coralee)Rowden',) | C.R. | list(char) -> list(char) |
nth (n=1) word delimited by '-' | ('Kotas-028',) | 028 | list(char) -> list(char) |
Replace '.' w/ ')' | ('83.Ramthun',) | 83)Ramthun | list(char) -> list(char) |
drop-k with k=3 | ([11, 12, 13, 4, 0, 13, 6, 9, 1, 9],) | [4, 0, 13, 6, 9, 1, 9] | list(int) -> list(int) |
has-k with k=5 | ([5, 5, 5, 5, 5, 6, 5],) | True | list(int) -> bool |
sum | ([0, 11, 4, 11, 1, 6, 12],) | 45 | list(int) -> int |
slice-k-n with k=2 and n=1 | ([16, 7, 12, 11, 14, 6, 9, 14, 0, 5],) | [7] | list(int) -> list(int) |
Abbreviate words separated by '-' | ('Kathlyn-Beata',) | K.B. | list(char) -> list(char) |
Abbreviate words separated by '.' | ('Cambridge.6',) | C.6. | list(char) -> list(char) |
Replace '(' w/ '.' | ('C(40',) | C.40 | list(char) -> list(char) |
keep eq 3 | ([1, 6, 3, 0, 1],) | [3] | list(int) -> list(int) |
index-k with k=5 | ([9, 10, 2, 3, 5, 1, 8, 4, 3, 3, 16],) | 5 | list(int) -> int |
nth (n=1) word delimited by ')' | ('R)+144',) | +144 | list(char) -> list(char) |
slice-k-n with k=1 and n=1 | ([0, 11, 13, 1, 16, 11, 3, 4, 11, 4],) | [0] | list(int) -> list(int) |
pow-k with k=5 | ([6, 8, 2, 2],) | [7776, 32768, 32, 32] | list(int) -> list(int) |
nth (n=1) word delimited by '(' | ('+188(45(+9',) | 45 | list(char) -> list(char) |
kth-largest with k=2 | ([16, 10, 8, 15, 9, 15, 14, 2, 12],) | 15 | list(int) -> int |
First letters of words (IIII) | ('Spell 865 169 095',) | S810 | list(char) -> list(char) |
Replace ' ' w/ '(' | ('52 622',) | 52(622 | list(char) -> list(char) |
bool-identify-k with k=5 | ([4, 12, 3, 15, 5, 5],) | [False, False, False, False, True, True] | list(int) -> list(bool) |
Take first character and append '-' | ('Chong',) | C- | list(char) -> list(char) |
drop-k with k=1 | ([6, 4, 15, 0],) | [4, 15, 0] | list(int) -> list(int) |
parentheses around second word | ('Trinidad 311 33',) | (311) | list(char) -> list(char) |
nth (n=0) word delimited by '(' | ('Pennsylvania(Marquess',) | Pennsylvania | list(char) -> list(char) |
Prepend '177' to first word | ('Alaina +141',) | 177Alaina | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=2 and n=5 | ([],) | [] | list(int) -> list(int) |
nth (n=-1) word delimited by ' ' | ('Park +183 186',) | 186 | list(char) -> list(char) |
bool-identify-geq-k with k=1 | ([4, 4, 4, 0, 7, 4],) | [True, True, True, False, True, True] | list(int) -> list(bool) |
prepend-index-k with k=5 | ([2, 5, 12, 15, 10, 13],) | [10, 2, 5, 12, 15, 10, 13] | list(int) -> list(int) |
empty | ([10, 10, 6, 13, 4],) | False | list(int) -> bool |
kth-smallest with k=5 | ([7, 11, 5, 11, 16, 6, 0, 0, 8],) | 7 | list(int) -> int |
Replace '(' w/ '.' | ('155(Edison(CA(29',) | 155.Edison.CA.29 | list(char) -> list(char) |
Replace '-' w/ ' ' | ('Jacqualine-62',) | Jacqualine 62 | list(char) -> list(char) |
Replace ' ' w/ '(' | ('Honda250 Casler Edison',) | Honda250(Casler(Edison | list(char) -> list(char) |
evens | ([2, 2, 8, 7],) | [2, 2, 8] | list(int) -> list(int) |
Abbreviate words separated by '.' | ('Spagnoli.734',) | S.7. | list(char) -> list(char) |
Append 2 strings (IIII) | ('426', '369') | 426369 | list(char) -> list(char) -> list(char) |
Prepend '+167' to first word | ('Madelaine Carlene',) | +167Madelaine | list(char) -> list(char) |
parentheses around a single word (I) | ('+176',) | (+176) | list(char) -> list(char) |
Prepend 'Ghoston' to first word | ('FreeHafer 47',) | GhostonFreeHafer | list(char) -> list(char) |
keep gt 1 | ([1, 3, 5, 4, 3],) | [3, 5, 4, 3] | list(int) -> list(int) |
slice-k-n with k=3 and n=4 | ([2, 10, 13, 10, 15, 1, 0, 11, 0, 15, 3, 7, 4, 11],) | [13, 10, 15, 1] | list(int) -> list(int) |
nth (n=1) word delimited by '.' | ('Karrie.Covelli.882.+129',) | Covelli | list(char) -> list(char) |
First letters of words (I) | ('81 Heintz Pannell',) | 8HP | list(char) -> list(char) |
Prepend 'Carlene' to first word | ('Gertude +198',) | CarleneGertude | list(char) -> list(char) |
fibonacci | (2,) | 1 | int -> int |
Prepend 'Sergienko' | ('Barbara',) | SergienkoBarbara | list(char) -> list(char) |
remove eq 2 | ([6, 6, 5, 5, 2],) | [6, 6, 5, 5] | list(int) -> list(int) |
slice-k-n with k=2 and n=2 | ([8, 1, 15, 13, 12, 15, 14, 11, 13, 2, 5],) | [1, 15] | list(int) -> list(int) |
nth (n=0) word delimited by '.' | ('505.+46',) | 505 | list(char) -> list(char) |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.