description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
tail | ([5],) | [] | list(int) -> list(int) |
replace-all-with-index-k with k=4 | ([10, 1, 3, 13, 10, 14],) | [13, 13, 13, 13, 13, 13] | list(int) -> list(int) |
First letters of words (III) | ('Trinidad 500 862',) | T58 | list(char) -> list(char) |
Abbreviate words separated by '.' | ('817.33',) | 8.3. | list(char) -> list(char) |
Extract word delimited by ',' - '.' | ('426,Lain.45,Honda125',) | Lain | list(char) -> list(char) |
Abbreviate separate words (II) | ('395', '082') | 3.0. | list(char) -> list(char) -> list(char) |
Append 2 strings (II) | ('245', 'Casler') | 245Casler | list(char) -> list(char) -> list(char) |
Append 2 strings (III) | ('35', '981') | 35981 | list(char) -> list(char) -> list(char) |
bool-identify-k with k=0 | ([3, 14, 15, 0],) | [False, False, False, True] | list(int) -> list(bool) |
index-k with k=5 | ([16, 11, 8, 8, 5, 6, 2],) | 5 | list(int) -> int |
nth (n=0) word delimited by '.' | ('Maryann.705.Barbara',) | Maryann | list(char) -> list(char) |
slice-k-n with k=5 and n=2 | ([9, 9, 11, 10, 14, 11, 13, 12, 10, 16],) | [14, 11] | list(int) -> list(int) |
Replace ' ' w/ '(' | ('Honda250 Casler Edison',) | Honda250(Casler(Edison | list(char) -> list(char) |
First letters of words (IIII) | ('Ducati250 Lashanda N Barbara',) | DLNB | list(char) -> list(char) |
bool-identify-geq-k with k=1 | ([],) | [] | list(int) -> list(bool) |
append-index-k with k=5 | ([12, 12, 3, 2, 14, 15, 10, 11, 4, 11, 15, 2],) | [12, 12, 3, 2, 14, 15, 10, 11, 4, 11, 15, 2, 14] | list(int) -> list(int) |
slice-k-n with k=2 and n=4 | ([16, 1, 13, 11, 14, 9, 8, 12, 8, 5, 8, 3],) | [1, 13, 11, 14] | list(int) -> list(int) |
Prepend 'Hornak' | ('P',) | HornakP | list(char) -> list(char) |
keep eq 1 | ([5, 5, 4, 2, 6],) | [] | list(int) -> list(int) |
Take first character and append '.' | ('Marquess',) | M. | list(char) -> list(char) |
parentheses around word delimited by '.' & ',' | ('20.066,TX-Pannell',) | 20.(066),TX-Pannell | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=5 and n=2 | ([1, 1, 1, 1, 0],) | [0, 0, 0, 0, 1] | list(int) -> list(int) |
parentheses around a single word (III) | ('Park',) | (Park) | list(char) -> list(char) |
bool-identify-geq-k with k=3 | ([5, 5],) | [True, True] | list(int) -> list(bool) |
keep-mod-k with k=2 | ([0, 8, 1, 15, 10],) | [0, 8, 10] | list(int) -> list(int) |
Append 2 strings (II) | ('Spell', 'Los') | SpellLos | list(char) -> list(char) -> list(char) |
remove eq 2 | ([3, 3, 6, 4, 4],) | [3, 3, 6, 4, 4] | list(int) -> list(int) |
count-head-in-tail | ([4],) | 0 | list(int) -> int |
fibonacci | (2,) | 1 | int -> int |
Prepend 'Hornak' | ('865',) | Hornak865 | list(char) -> list(char) |
drop-k with k=2 | ([2, 14, 6, 12],) | [6, 12] | list(int) -> list(int) |
rotate-k with k=5 | ([4, 14, 0, 5, 2, 1, 1, 7, 1, 1, 1, 3, 13, 16, 0],) | [1, 3, 13, 16, 0, 4, 14, 0, 5, 2, 1, 1, 7, 1, 1] | list(int) -> list(int) |
remove-mod-k with k=5 | ([9, 5, 10, 5, 13, 14, 0],) | [9, 13, 14] | list(int) -> list(int) |
nth (n=1) word delimited by ' ' | ('University Sergienko',) | Sergienko | list(char) -> list(char) |
count-k with k=1 | ([1, 1, 1],) | 3 | list(int) -> int |
take-k with k=1 | ([6, 7, 12, 16],) | [6] | list(int) -> list(int) |
is-mod-k with k=3 | ([21, 0, 27, 6],) | True | list(int) -> bool |
drop first word delimited by ',' | ('+6,Micha,167',) | Micha,167 | list(char) -> list(char) |
parentheses around word delimited by ' ' & '-' | ('+151 Annalisa-Phillip-Pennsylvania',) | +151 (Annalisa)-Phillip-Pennsylvania | list(char) -> list(char) |
drop first word delimited by '.' | ('Angeles.+115.+140',) | +115.+140 | list(char) -> list(char) |
remove-mod-k with k=2 | ([5, 3, 1, 13, 7, 7, 4],) | [5, 3, 1, 13, 7, 7] | list(int) -> list(int) |
take-k with k=1 | ([12, 5, 4, 11, 4, 4],) | [12] | list(int) -> list(int) |
keep-mod-head | ([1, 2, 3],) | [2, 3] | list(int) -> list(int) |
Replace '-' w/ ',' | ('Georgina-Dr-Alida-Acura100',) | Georgina,Dr,Alida,Acura100 | list(char) -> list(char) |
pow-k with k=3 | ([],) | [] | list(int) -> list(int) |
slice-k-n with k=2 and n=5 | ([8, 10, 0, 3, 8, 5, 1, 7, 4, 2, 7, 14, 16],) | [10, 0, 3, 8, 5] | list(int) -> list(int) |
nth (n=1) word delimited by '.' | ('Bogle.Jani',) | Jani | list(char) -> list(char) |
Append two words delimited by '.' | ('R', 'Rowden') | R.Rowden | list(char) -> list(char) -> list(char) |
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) |
bool-identify-geq-k with k=5 | ([2, 0, 6, 1, 11, 0, 12],) | [False, False, True, False, True, False, True] | list(int) -> list(bool) |
has-head-in-tail | ([2, 3, 4],) | False | list(int) -> bool |
remove gt 2 | ([6, 1, 4, 3, 3],) | [1] | list(int) -> list(int) |
slice-k-n with k=5 and n=4 | ([11, 15, 13, 3, 10, 16, 13, 3, 11, 5, 15, 6, 6, 14, 6, 10, 9],) | [10, 16, 13, 3] | list(int) -> list(int) |
remove gt 2 | ([1, 6, 2, 5, 4],) | [1, 2] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=2 and n=4 | ([1, 3, 0],) | [3, 1, 2] | list(int) -> list(int) |
First letters of words (II) | ('438 20 MA FreeHafer',) | 42MF | list(char) -> list(char) |
ensure suffix `997` | ('Quashie Miah',) | Quashie Miah997 | list(char) -> list(char) |
keep eq 1 | ([4, 0, 5, 6, 6],) | [] | list(int) -> list(int) |
take-k with k=5 | ([10, 5, 1, 13, 10, 8, 9, 10, 13, 7, 5],) | [10, 5, 1, 13, 10] | list(int) -> list(int) |
Extract word delimited by ',' - ',' | ('Jeff,Scalia,Gertude,877',) | Scalia | list(char) -> list(char) |
parentheses around second word | ('California 86',) | (86) | list(char) -> list(char) |
Prepend 'Ghoston' to first word | ('Samuel Hage',) | GhostonSamuel | list(char) -> list(char) |
remove-index-k with k=2 | ([13, 3, 7],) | [13, 7] | list(int) -> list(int) |
nth (n=1) word delimited by '.' | ('Ducati125.of.588.843',) | of | list(char) -> list(char) |
parentheses around a single word (II) | ('426',) | (426) | list(char) -> list(char) |
Take first character and append '-' | ('+158',) | +- | list(char) -> list(char) |
remove gt 0 | ([3, 2, 0, 2, 0],) | [0, 0] | list(int) -> list(int) |
modulo-k with k=2 | ([10],) | [0] | list(int) -> list(int) |
Abbreviate separate words (I) | ('+118', '894') | +.8. | list(char) -> list(char) -> list(char) |
Append '+138' | ('TX',) | TX+138 | list(char) -> list(char) |
Append two words delimited by ',' | ('Pennsylvania', '+198') | Pennsylvania,+198 | list(char) -> list(char) -> list(char) |
Abbreviate separate words (IIII) | ('S', 'Beata') | S.B. | list(char) -> list(char) -> list(char) |
Extract word delimited by '(' - '(' | ('14(Rowden(Jeanice(Acura125',) | Rowden | list(char) -> list(char) |
Abbreviate separate words (II) | ('Gertude', 'Dermody') | G.D. | list(char) -> list(char) -> list(char) |
bool-identify-k with k=5 | ([11, 12, 7],) | [False, False, False] | list(int) -> list(bool) |
modulo-k with k=3 | ([],) | [] | list(int) -> list(int) |
index-k with k=3 | ([16, 1, 14],) | 14 | list(int) -> int |
pow-k with k=4 | ([1, 7, 11, 13],) | [1, 2401, 14641, 28561] | list(int) -> list(int) |
modulo-k with k=4 | ([12, 14],) | [0, 2] | list(int) -> list(int) |
Abbreviate words separated by '(' | ('Jeanice(Acura',) | J.A. | list(char) -> list(char) |
kth-largest with k=3 | ([9, 15, 11, 10, 4, 13],) | 11 | list(int) -> int |
take-k with k=3 | ([6, 5, 11, 7],) | [6, 5, 11] | list(int) -> list(int) |
mult-k with k=2 | ([2, 0, 15, 0, 2],) | [4, 0, 30, 0, 4] | list(int) -> list(int) |
parentheses around a single word (IIIII) | ('68',) | (68) | list(char) -> list(char) |
count-k with k=1 | ([1, 2, 9, 16],) | 1 | list(int) -> int |
ensure suffix `Ramthun` | ('Ghoston Bobo Scalia Chism',) | Ghoston Bobo Scalia ChismRamthun | list(char) -> list(char) |
nth (n=-1) word delimited by ' ' | ('CA Vena 23 Hopkins',) | Hopkins | list(char) -> list(char) |
kth-smallest with k=1 | ([12, 15, 10, 10, 3, 8, 1],) | 1 | list(int) -> int |
remove eq 0 | ([0, 0, 6, 3, 0],) | [6, 3] | list(int) -> list(int) |
Append two words delimited by ',' | ('Acura100', '705') | Acura100,705 | list(char) -> list(char) -> list(char) |
bool-identify-is-mod-k with k=4 | ([4, 12, 3, 15, 5, 5],) | [True, True, False, False, False, False] | list(int) -> list(bool) |
Take first character and append '(' | ('020',) | 0( | list(char) -> list(char) |
repeat-k with k=5 | ([1, 3, 9, 11, 15],) | [1, 3, 9, 11, 15, 1, 3, 9, 11, 15, 1, 3, 9, 11, 15, 1, 3, 9, 11, 15, 1, 3, 9, 11, 15] | list(int) -> list(int) |
First letters of words (IIIII) | ('751 Drexel L J',) | 7DLJ | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=3 and n=2 | ([0, 0, 0, 0, 1, 1],) | [1, 1, 1, 1, 0, 0] | list(int) -> list(int) |
Replace '-' w/ ' ' | ('+183-13',) | +183 13 | list(char) -> list(char) |
remove eq 2 | ([0, 0, 4, 2, 5],) | [0, 0, 4, 5] | list(int) -> list(int) |
Append two words delimited by ' ' | ('051', '+174') | 051 +174 | list(char) -> list(char) -> list(char) |
Prepend 'Carlene' to first word | ('+155 45',) | Carlene+155 | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=3 and n=4 | ([1, 1, 3, 1],) | [0, 0, 2, 0] | 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.