description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
Prepend 'Carlene' to first word | ('+155 45',) | Carlene+155 | list(char) -> list(char) |
add-k with k=2 | ([],) | [] | list(int) -> list(int) |
Extract word delimited by ')' - ',' | ('963)Kathlyn,Melodi,Spagnoli',) | Kathlyn | list(char) -> list(char) |
modulo-k with k=3 | ([9, 0, 3],) | [0, 0, 0] | list(int) -> list(int) |
Abbreviate words separated by '-' | ('Cruz-150',) | C.1. | list(char) -> list(char) |
First letters of words (I) | ('+118 Chism 428 Acura100',) | +C4A | list(char) -> list(char) |
Take first character and append ' ' | ('Brescia',) | B | list(char) -> list(char) |
Append 2 strings (IIIIII) | ('+199', '919') | +199919 | list(char) -> list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=3 and n=2 | ([1, 1, 0, 0],) | [0, 0, 1, 1] | list(int) -> list(int) |
drop first word delimited by '-' | ('Coralee-862',) | 862 | list(char) -> list(char) |
drop-k with k=1 | ([5, 16, 16, 9],) | [16, 16, 9] | list(int) -> list(int) |
append-k with k=3 | ([8, 1, 9, 3, 13, 5, 7],) | [8, 1, 9, 3, 13, 5, 7, 3] | list(int) -> list(int) |
Replace '(' w/ '.' | ('75(University',) | 75.University | list(char) -> list(char) |
slice-k-n with k=3 and n=4 | ([4, 11, 16, 9, 3, 9, 3, 5, 8, 8, 12, 11, 0, 6],) | [16, 9, 3, 9] | list(int) -> list(int) |
nth (n=-1) word delimited by ')' | ('+42)+98)+115)Junkin',) | Junkin | list(char) -> list(char) |
parentheses around a single word (IIIII) | ('York',) | (York) | list(char) -> list(char) |
take-k with k=5 | ([7, 12, 15, 13, 10, 16, 8, 4, 6, 7],) | [7, 12, 15, 13, 10] | list(int) -> list(int) |
Abbreviate words separated by ',' | ('FreeHafer,Park',) | F.P. | list(char) -> list(char) |
remove-mod-k with k=3 | ([6],) | [] | list(int) -> list(int) |
Append 'Beata' | ('S',) | SBeata | list(char) -> list(char) |
Abbreviate separate words (II) | ('Gertude', 'Dermody') | G.D. | list(char) -> list(char) -> list(char) |
Abbreviate separate words (IIIIII) | ('25', '488') | 2.4. | list(char) -> list(char) -> list(char) |
Append two words delimited by ' ' | ('Acura', 'Vena') | Acura Vena | list(char) -> list(char) -> list(char) |
replace-all-with-index-k with k=5 | ([0, 5, 7, 11, 11, 0, 12, 3, 1],) | [11, 11, 11, 11, 11, 11, 11, 11, 11] | list(int) -> list(int) |
Replace '-' w/ ' ' | ('759-Bogle',) | 759 Bogle | list(char) -> list(char) |
slice-k-n with k=2 and n=1 | ([11, 12, 4, 5, 2],) | [12] | list(int) -> list(int) |
repeat-k with k=4 | ([8, 16],) | [8, 16, 8, 16, 8, 16, 8, 16] | list(int) -> list(int) |
repeat-many | ([3, 3, 2, 5],) | [3, 2, 5, 3, 2, 5, 3, 2, 5] | list(int) -> list(int) |
is-mod-k with k=4 | ([24],) | True | list(int) -> bool |
is-primes | ([4],) | False | list(int) -> bool |
slice-k-n with k=4 and n=3 | ([3, 14, 1, 4, 1, 16, 6, 3, 1, 7, 9],) | [4, 1, 16] | list(int) -> list(int) |
Append two words delimited by '(' | ('176', 'C') | 176(C | list(char) -> list(char) -> list(char) |
keep-mod-k with k=5 | ([13, 2],) | [] | list(int) -> list(int) |
keep eq 3 | ([5, 3, 0, 0, 4],) | [3] | list(int) -> list(int) |
count-k with k=1 | ([1, 15],) | 1 | list(int) -> int |
Take first character and append '.' | ('+189',) | +. | list(char) -> list(char) |
add-k with k=5 | ([10, 8, 4, 7],) | [15, 13, 9, 12] | list(int) -> list(int) |
count-k with k=4 | ([2, 7, 3, 3],) | 0 | list(int) -> int |
Append 'Cornell' | ('715',) | 715Cornell | list(char) -> list(char) |
Replace ' ' w/ '(' | ('52 622',) | 52(622 | list(char) -> list(char) |
nth (n=-1) word delimited by '-' | ('21-of',) | of | list(char) -> list(char) |
Append 'Angeles' | ('469',) | 469Angeles | list(char) -> list(char) |
evens | ([],) | [] | list(int) -> list(int) |
fibonacci | (9,) | 34 | int -> int |
Replace '-' w/ ',' | ('Georgina-Dr-Alida-Acura100',) | Georgina,Dr,Alida,Acura100 | list(char) -> list(char) |
Append 2 strings (IIII) | ('Seamons', 'Lakenya') | SeamonsLakenya | list(char) -> list(char) -> list(char) |
replace-all-with-index-k with k=2 | ([3, 4, 5],) | [4, 4, 4] | list(int) -> list(int) |
kth-smallest with k=5 | ([6, 7, 16, 16, 6, 6, 11, 5, 9],) | 7 | list(int) -> int |
take-k with k=4 | ([12, 2, 6, 8, 3, 14, 12, 7, 16, 16, 5],) | [12, 2, 6, 8] | list(int) -> list(int) |
bool-identify-geq-k with k=2 | ([14, -1, -1, -1, 1, -1],) | [True, False, False, False, False, False] | list(int) -> list(bool) |
nth (n=-1) word delimited by ' ' | ('CA Vena 23 Hopkins',) | Hopkins | list(char) -> list(char) |
Append two words delimited by '.' | ('Bradford', 'Beata') | Bradford.Beata | list(char) -> list(char) -> list(char) |
nth (n=0) word delimited by ')' | ('E)844',) | E | list(char) -> list(char) |
Replace '(' w/ ')' | ('+194(+185(+147(Rice',) | +194)+185)+147)Rice | list(char) -> list(char) |
Append 2 strings (IIIII) | ('Madelaine', '29') | Madelaine29 | list(char) -> list(char) -> list(char) |
count-k with k=1 | ([8, 7],) | 0 | list(int) -> int |
keep gt 3 | ([4, 1, 3, 5, 5],) | [4, 5, 5] | list(int) -> list(int) |
slice-k-n with k=3 and n=5 | ([5, 11, 10, 6, 5, 14, 1, 2, 4, 1, 2, 5, 6, 15],) | [10, 6, 5, 14, 1] | list(int) -> list(int) |
keep gt 3 | ([3, 1, 1, 0, 2],) | [] | list(int) -> list(int) |
Abbreviate separate words (I) | ('Irwin', 'Spell') | I.S. | list(char) -> list(char) -> list(char) |
product | ([11, 9, 9],) | 891 | list(int) -> int |
repeat | ([1, 1],) | [1] | list(int) -> list(int) |
Abbreviate separate words (II) | ('395', '082') | 3.0. | list(char) -> list(char) -> list(char) |
pow-k with k=2 | ([7, 14, 11],) | [49, 196, 121] | list(int) -> list(int) |
slice-k-n with k=3 and n=5 | ([13, 0, 15, 4, 12, 16, 4, 3, 2, 7, 5, 6, 0, 0, 14],) | [15, 4, 12, 16, 4] | list(int) -> list(int) |
add-k with k=5 | ([7, 6, 11],) | [12, 11, 16] | list(int) -> list(int) |
Append 2 strings (IIIIII) | ('Garrard', '+141') | Garrard+141 | list(char) -> list(char) -> list(char) |
take-k with k=5 | ([15, 13, 4, 5, 10, 15, 4, 4, 2, 2],) | [15, 13, 4, 5, 10] | list(int) -> list(int) |
ensure suffix `997` | ('+163 +129997',) | +163 +129997 | list(char) -> list(char) |
Take first 3 characters | ('Vena',) | Ven | list(char) -> list(char) |
remove-index-k with k=1 | ([1],) | [] | list(int) -> list(int) |
nth (n=0) word delimited by ',' | ('Neil,Heintz,Malissa,Berkeley',) | Neil | list(char) -> list(char) |
kth-smallest with k=3 | ([6, 4, 16, 5, 11, 11, 14],) | 6 | list(int) -> int |
nth (n=-1) word delimited by '(' | ('Berkeley(557(29',) | 29 | list(char) -> list(char) |
keep-mod-k with k=3 | ([13, 3],) | [3] | list(int) -> list(int) |
rotate-k with k=3 | ([4, 3, 12, 6, 2, 11, 16, 10, 9, 10, 13, 6, 3],) | [13, 6, 3, 4, 3, 12, 6, 2, 11, 16, 10, 9, 10] | list(int) -> list(int) |
keep-mod-k with k=4 | ([],) | [] | list(int) -> list(int) |
keep eq 0 | ([6, 6, 5, 0, 5],) | [0] | list(int) -> list(int) |
drop-k with k=4 | ([0, 5, 2, 14, 9, 3],) | [9, 3] | list(int) -> list(int) |
bool-identify-is-mod-k with k=1 | ([],) | [] | list(int) -> list(bool) |
slice-k-n with k=2 and n=4 | ([0, 9, 8, 11, 6, 7, 6, 4, 4, 7],) | [9, 8, 11, 6] | list(int) -> list(int) |
Extract word delimited by ')' - '-' | ('+144)060-Soderstrom)68',) | 060 | list(char) -> list(char) |
sort | ([9, 3, 8],) | [3, 8, 9] | list(int) -> list(int) |
has-head-in-tail | ([2, 15, 2, 2, 2, 2],) | True | list(int) -> bool |
Prepend 'UCLA' | ('Sergienko',) | UCLASergienko | list(char) -> list(char) |
First letters of words (III) | ('000 Dermody +196',) | 0D+ | list(char) -> list(char) |
parentheses around word delimited by ' ' & ' ' | ('Spagnoli Marquess Gertude',) | Spagnoli (Marquess) Gertude | list(char) -> list(char) |
drop-k with k=5 | ([5, 10, 1, 5, 6, 16, 12, 9, 2, 7, 13],) | [16, 12, 9, 2, 7, 13] | list(int) -> list(int) |
remove gt 3 | ([6, 0, 0, 5, 6],) | [0, 0] | list(int) -> list(int) |
slice-k-n with k=3 and n=1 | ([12, 4, 7, 0, 3, 9, 10, 5, 0, 10, 10, 14],) | [7] | list(int) -> list(int) |
odds | ([6, 10, 15, 8, 14, 3],) | [15, 3] | list(int) -> list(int) |
Take first character and append ' ' | ('Alida',) | A | list(char) -> list(char) |
Abbreviate words separated by ')' | ('+196)253',) | +.2. | list(char) -> list(char) |
slice-k-n with k=5 and n=3 | ([11, 10, 6, 3, 9, 6, 16, 14, 12, 2, 2],) | [9, 6, 16] | list(int) -> list(int) |
remove-index-k with k=3 | ([4, 8, 10, 3, 2, 12, 9, 0, 0],) | [4, 8, 3, 2, 12, 9, 0, 0] | list(int) -> list(int) |
Abbreviate words separated by '(' | ('048(Joaquin',) | 0.J. | list(char) -> list(char) |
remove-index-k with k=5 | ([2, 3, 11, 8, 10],) | [2, 3, 11, 8] | list(int) -> list(int) |
bool-identify-is-mod-k with k=4 | ([13, 2],) | [False, False] | list(int) -> list(bool) |
drop first word delimited by '.' | ('Acura.Urbana',) | Urbana | list(char) -> list(char) |
slice-k-n with k=1 and n=1 | ([9, 9, 14, 10],) | [9] | list(int) -> list(int) |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.