description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
drop first word delimited by ')' | ('Jenee)Jenee)151)UC',) | Jenee)151)UC | list(char) -> list(char) |
remove gt 0 | ([5, 4, 2, 0, 6],) | [0] | list(int) -> list(int) |
Prepend '177' to first word | ('566 14',) | 177566 | list(char) -> list(char) |
nth (n=0) word delimited by ',' | ('R,Miah,Arbor',) | R | list(char) -> list(char) |
Replace '(' w/ ' ' | ('377(209(+118',) | 377 209 +118 | list(char) -> list(char) |
odds | ([],) | [] | list(int) -> list(int) |
nth (n=0) word delimited by ',' | ('Neil,Heintz,Malissa,Berkeley',) | Neil | list(char) -> list(char) |
remove gt 3 | ([0, 2, 4, 4, 4],) | [0, 2] | list(int) -> list(int) |
kth-smallest with k=2 | ([15, 3, 10],) | 10 | list(int) -> int |
Prepend '+174' | ('52',) | +17452 | list(char) -> list(char) |
parentheses around a single word (IIII) | ('986',) | (986) | list(char) -> list(char) |
First letters of words (IIIIII) | ('888 Penn 50 UC',) | 8P5U | list(char) -> list(char) |
append-k with k=5 | ([9, 14, 6, 9, 8, 2],) | [9, 14, 6, 9, 8, 2, 5] | list(int) -> list(int) |
nth (n=-1) word delimited by ')' | ('T)+197',) | +197 | list(char) -> list(char) |
Prepend 'Spell' | ('Aylward',) | SpellAylward | list(char) -> list(char) |
Prepend '177' to first word | ('Alaina +141',) | 177Alaina | list(char) -> list(char) |
Append two words delimited by ' ' | ('Acura', 'Vena') | Acura Vena | list(char) -> list(char) -> list(char) |
nth (n=1) word delimited by ' ' | ('University Sergienko',) | Sergienko | list(char) -> list(char) |
pow-k with k=4 | ([],) | [] | list(int) -> list(int) |
range | (0,) | [] | int -> list(int) |
Abbreviate words separated by '(' | ('Jeanice(Acura',) | J.A. | list(char) -> list(char) |
index-k with k=3 | ([8, 14, 2, 12, 3, 6, 0],) | 2 | list(int) -> int |
replace-all-with-index-k with k=4 | ([10, 5, 4, 3, 7, 1, 5, 10, 3, 15],) | [3, 3, 3, 3, 3, 3, 3, 3, 3, 3] | list(int) -> list(int) |
Append 2 strings (I) | ('Richert', 'NY') | RichertNY | list(char) -> list(char) -> list(char) |
Abbreviate separate words (IIIII) | ('21', '169') | 2.1. | list(char) -> list(char) -> list(char) |
Append two words delimited by ',' | ('Pennsylvania', '+198') | Pennsylvania,+198 | list(char) -> list(char) -> list(char) |
kth-smallest with k=3 | ([10, 13, 9, 10, 8, 6, 7, 15, 2],) | 7 | list(int) -> int |
drop first word delimited by ' ' | ('386 Georgina 720 141',) | Georgina 720 141 | list(char) -> list(char) |
is-squares | ([1, 4, 9],) | True | list(int) -> bool |
append-index-k with k=2 | ([1, 7, 8, 8, 1, 5, 15, 6],) | [1, 7, 8, 8, 1, 5, 15, 6, 7] | list(int) -> list(int) |
bool-identify-is-mod-k with k=4 | ([2, 4],) | [False, True] | list(int) -> list(bool) |
parentheses around a single word (IIII) | ('986',) | (986) | list(char) -> list(char) |
Extract word delimited by '-' - ')' | ('NY-Philadelphia)Ferrari-PA',) | Philadelphia | list(char) -> list(char) |
Append 2 strings (II) | ('245', 'Casler') | 245Casler | list(char) -> list(char) -> list(char) |
Prepend '086' to first word | ('35 Lara',) | 08635 | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=4 and n=5 | ([2, 3, 3],) | [1, 2, 2] | list(int) -> list(int) |
Take first 3 characters | ('Vena',) | Ven | list(char) -> list(char) |
parentheses around word delimited by '-' & '.' | ('9-Ducati125.976.Alida',) | 9-(Ducati125).976.Alida | list(char) -> list(char) |
is-mod-k with k=3 | ([39, 39, 48, 30],) | True | list(int) -> bool |
has-k with k=0 | ([6, 9, 11, 7, 5, 5, 0],) | True | list(int) -> bool |
First letters of words (IIIII) | ('Honda550 +180 Q',) | H+Q | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=1 and n=5 | ([2, 1, 2, 4],) | [3, 2, 3, 0] | list(int) -> list(int) |
keep-mod-head | ([5, 15, 0, 20, 13, 7],) | [15, 0, 20] | list(int) -> list(int) |
Append two words delimited by ',' | ('Acura100', '705') | Acura100,705 | list(char) -> list(char) -> list(char) |
count-k with k=4 | ([6, 4, 2],) | 1 | list(int) -> int |
index-head | ([1, 3],) | 3 | list(int) -> int |
kth-largest with k=1 | ([5, 16, 16, 9],) | 16 | list(int) -> int |
replace-all-with-index-k with k=1 | ([6],) | [6] | list(int) -> list(int) |
slice-k-n with k=1 and n=4 | ([12, 1, 8, 14, 0, 15, 6, 16, 1],) | [12, 1, 8, 14] | list(int) -> list(int) |
nth (n=1) word delimited by '-' | ('+155-Covelli-Constable-405',) | Covelli | list(char) -> list(char) |
keep gt 2 | ([1, 0, 1, 4, 0],) | [4] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=4 and n=5 | ([4, 3, 2, 3, 3, 1],) | [3, 2, 1, 2, 2, 0] | list(int) -> list(int) |
nth (n=1) word delimited by ')' | ('Partida)FreeHafer)+130)D',) | FreeHafer | list(char) -> list(char) |
has-k with k=4 | ([9, 4, 4, 4, 4, 4],) | True | list(int) -> bool |
add-k with k=5 | ([9, 6, 5, 0, 7, 7],) | [14, 11, 10, 5, 12, 12] | list(int) -> list(int) |
slice-k-n with k=3 and n=1 | ([16, 9, 5, 7, 3, 5, 12, 1],) | [5] | list(int) -> list(int) |
Append two words delimited by ' ' | ('+155', 'Bobo') | +155 Bobo | list(char) -> list(char) -> list(char) |
nth (n=-1) word delimited by ')' | ('+151)50)Withers',) | Withers | list(char) -> list(char) |
mult-k with k=0 | ([7],) | [0] | list(int) -> list(int) |
Append two words delimited by ' -' | ('2', 'J') | 2 -J | list(char) -> list(char) -> list(char) |
Prepend 'Carlene' to first word | ('997 CA',) | Carlene997 | list(char) -> list(char) |
modulo-k with k=2 | ([],) | [] | list(int) -> list(int) |
append-k with k=1 | ([9],) | [9, 1] | list(int) -> list(int) |
add-k with k=2 | ([5, 0],) | [7, 2] | list(int) -> list(int) |
Replace ',' w/ '(' | ('066,+106,Bobo,200',) | 066(+106(Bobo(200 | list(char) -> list(char) |
parentheses around a single word (I) | ('+140',) | (+140) | list(char) -> list(char) |
parentheses around word delimited by ' ' & ' ' | ('Spagnoli Marquess Gertude',) | Spagnoli (Marquess) Gertude | list(char) -> list(char) |
ensure suffix `769` | ('520 T769',) | 520 T769 | list(char) -> list(char) |
remove gt 2 | ([4, 0, 6, 0, 2],) | [0, 0, 2] | list(int) -> list(int) |
Prepend 'Carlene' to first word | ('997 CA',) | Carlene997 | list(char) -> list(char) |
kth-largest with k=1 | ([6, 4, 15, 0],) | 15 | list(int) -> int |
kth-smallest with k=3 | ([11, 8, 8, 5, 6, 2, 15, 9, 1, 6],) | 5 | list(int) -> int |
Extract word delimited by ')' - '-' | ('Cruz)+188-Maryann)183',) | +188 | list(char) -> list(char) |
Drop last 1 characters | ('769',) | 76 | list(char) -> list(char) |
Abbreviate words separated by '-' | ('Cruz-150',) | C.1. | list(char) -> list(char) |
ensure suffix `997` | ('Hopkins 701 F',) | Hopkins 701 F997 | list(char) -> list(char) |
Take first 4 characters | ('+106',) | +106 | list(char) -> list(char) |
nth (n=0) word delimited by ' ' | ('Q +108 Desiree',) | Q | list(char) -> list(char) |
take-k with k=3 | ([14, 6, 0, 9, 4, 13],) | [14, 6, 0] | list(int) -> list(int) |
ensure suffix `769` | ('520 T769',) | 520 T769 | list(char) -> list(char) |
modulo-k with k=4 | ([8, 14, 2, 12],) | [0, 2, 2, 0] | list(int) -> list(int) |
Drop last 1 characters | ('Latimore',) | Latimor | list(char) -> list(char) |
drop first word delimited by ',' | ('Rice,Partida,894,40',) | Partida,894,40 | list(char) -> list(char) |
pow-k with k=4 | ([0, 2, 5, 4, 11, 7],) | [0, 16, 625, 256, 14641, 2401] | list(int) -> list(int) |
slice-k-n with k=1 and n=3 | ([12, 5, 9, 6, 0, 15, 6, 6, 4, 13, 0, 14],) | [12, 5, 9] | list(int) -> list(int) |
prepend-index-k with k=4 | ([13, 1, 3, 2, 14, 16, 8, 4],) | [2, 13, 1, 3, 2, 14, 16, 8, 4] | list(int) -> list(int) |
replace-all-with-index-k with k=3 | ([14, 0, 6, 5, 14, 1, 2, 5, 3],) | [6, 6, 6, 6, 6, 6, 6, 6, 6] | list(int) -> list(int) |
empty | ([],) | True | list(int) -> bool |
Replace ',' w/ '.' | ('Ducati,+147',) | Ducati.+147 | list(char) -> list(char) |
mult-k with k=0 | ([],) | [] | list(int) -> list(int) |
take-k with k=3 | ([7, 4, 16, 15, 16, 3, 10, 11, 3],) | [7, 4, 16] | list(int) -> list(int) |
nth (n=-1) word delimited by '(' | ('Berkeley(557(29',) | 29 | list(char) -> list(char) |
Drop last 5 characters | ('Cencici',) | Ce | list(char) -> list(char) |
Replace ',' w/ '.' | ('+197,980,Hage,Cencici',) | +197.980.Hage.Cencici | list(char) -> list(char) |
is-mod-k with k=2 | ([24, 22, 2, 14, 16, 8, 10],) | True | list(int) -> bool |
mult-k with k=5 | ([12, 2, 8, 5],) | [60, 10, 40, 25] | list(int) -> list(int) |
Prepend 'Spell' | ('Aylward',) | SpellAylward | list(char) -> list(char) |
slice-k-n with k=3 and n=2 | ([10, 10, 15, 3, 3, 9, 6, 15],) | [15, 3] | list(int) -> list(int) |
slice-k-n with k=5 and n=3 | ([8, 6, 6, 11, 8, 5, 11, 3, 16, 6, 14, 15, 5, 2, 15],) | [8, 5, 11] | list(int) -> list(int) |
slice-k-n with k=1 and n=1 | ([4, 9, 0, 9, 13],) | [4] | 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.