description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
parentheses around a single word (I) | ('+140',) | (+140) | list(char) -> list(char) |
drop-k with k=2 | ([7, 3, 2, 8],) | [2, 8] | list(int) -> list(int) |
bool-identify-geq-k with k=2 | ([9, 0, 4, 3, 1, 10, 0],) | [True, False, True, True, False, True, False] | list(int) -> list(bool) |
Abbreviate words separated by ')' | ('83)56',) | 8.5. | list(char) -> list(char) |
range +1 maximum list | ([5, 1],) | [0, 1, 2, 3, 4, 5] | list(int) -> list(int) |
Drop last 5 characters | ('Ferrari250',) | Ferra | list(char) -> list(char) |
drop-k with k=4 | ([7, 14, 14, 11, 8, 14, 3, 8, 6, 1],) | [8, 14, 3, 8, 6, 1] | list(int) -> list(int) |
evens | ([14],) | [14] | list(int) -> list(int) |
Append two words delimited by '(' | ('Q', 'Ducati250') | Q(Ducati250 | list(char) -> list(char) -> list(char) |
nth (n=-1) word delimited by '-' | ('473-Nancy-980-166',) | 166 | list(char) -> list(char) |
nth (n=0) word delimited by ' ' | ('268 14 +104',) | 268 | list(char) -> list(char) |
ensure suffix `Ramthun` | ('Annalisa Latimore ChismRamthun',) | Annalisa Latimore ChismRamthun | list(char) -> list(char) |
ensure suffix `568` | ('MD Hopkins 394',) | MD Hopkins 394568 | list(char) -> list(char) |
kth-largest with k=3 | ([13, 0, 5, 14, 1, 12, 1, 12, 5, 4],) | 12 | list(int) -> int |
kth-largest with k=2 | ([0, 9, 1],) | 1 | list(int) -> int |
Abbreviate separate words (IIIIII) | ('25', '488') | 2.4. | list(char) -> list(char) -> list(char) |
index-k with k=5 | ([0, 8, 9, 6, 7, 13, 8, 13, 16, 7, 10, 10],) | 7 | list(int) -> int |
remove gt 1 | ([5, 2, 5, 5, 2],) | [] | list(int) -> list(int) |
keep eq 1 | ([1, 3, 5, 3, 5],) | [1] | list(int) -> list(int) |
mult-k with k=3 | ([],) | [] | list(int) -> list(int) |
Take first character and append ')' | ('414',) | 4) | list(char) -> list(char) |
Append two words delimited by '-' | ('Constable', '+197') | Constable-+197 | list(char) -> list(char) -> list(char) |
nth (n=1) word delimited by ' ' | ('Soderstrom Scalia',) | Scalia | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=1 and n=5 | ([2, 2],) | [3, 3] | list(int) -> list(int) |
drop first word delimited by '(' | ('Ducati(969(+144(Olague',) | 969(+144(Olague | list(char) -> list(char) |
slice-k-n with k=3 and n=5 | ([11, 1, 2, 6, 9, 7, 13, 2, 3, 16, 8],) | [2, 6, 9, 7, 13] | list(int) -> list(int) |
mult-k with k=4 | ([14, 6, 10, 2, 7],) | [56, 24, 40, 8, 28] | list(int) -> list(int) |
Append two words delimited by '(,' | ('Ducati100', '+176') | Ducati100(,+176 | list(char) -> list(char) -> list(char) |
keep-mod-k with k=2 | ([12, 6, 16],) | [12, 6, 16] | list(int) -> list(int) |
slice-k-n with k=4 and n=1 | ([15, 12, 4, 9, 16, 11, 8],) | [9] | list(int) -> list(int) |
rotate-k with k=5 | ([6, 9, 9, 0, 15, 12, 1, 8, 5, 14, 8, 2, 0],) | [5, 14, 8, 2, 0, 6, 9, 9, 0, 15, 12, 1, 8] | list(int) -> list(int) |
is-mod-k with k=2 | ([12, 16, 28, 16, 4, 2],) | True | list(int) -> bool |
drop first word delimited by '.' | ('598.849.854.Kimberley',) | 849.854.Kimberley | list(char) -> list(char) |
Prepend 'Spell' | ('Aylward',) | SpellAylward | list(char) -> list(char) |
Append two words delimited by '(,' | ('50', '949') | 50(,949 | list(char) -> list(char) -> list(char) |
Append two words delimited by ')' | ('Vena', 'Eccleston') | Vena)Eccleston | list(char) -> list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=5 and n=4 | ([3, 3],) | [0, 0] | list(int) -> list(int) |
add-k with k=3 | ([2, 4, 6, 9, 13],) | [5, 7, 9, 12, 16] | list(int) -> list(int) |
remove-index-k with k=3 | ([6, 4, 16, 5, 11, 11, 14],) | [6, 4, 5, 11, 11, 14] | list(int) -> list(int) |
mult-k with k=3 | ([9, 11, 0],) | [27, 33, 0] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=2 and n=4 | ([2, 0, 2, 1, 3, 2],) | [0, 2, 0, 3, 1, 0] | list(int) -> list(int) |
kth-smallest with k=2 | ([1, 1, 6, 8],) | 1 | list(int) -> int |
Prepend '177' to first word | ('566 14',) | 177566 | list(char) -> list(char) |
mult-k with k=4 | ([2],) | [8] | list(int) -> list(int) |
nth (n=0) word delimited by ')' | ('Lara)+176',) | Lara | list(char) -> list(char) |
kth-largest with k=5 | ([16, 7, 3, 14, 4, 9, 1, 13, 4, 8, 6],) | 8 | list(int) -> int |
bool-identify-is-mod-k with k=1 | ([],) | [] | list(int) -> list(bool) |
ensure suffix `997` | ('Hopkins 701 F',) | Hopkins 701 F997 | list(char) -> list(char) |
remove-mod-k with k=4 | ([],) | [] | list(int) -> list(int) |
Append '+138' | ('Hopkins',) | Hopkins+138 | list(char) -> list(char) |
drop first word delimited by ' ' | ('Bess Berkeley',) | Berkeley | list(char) -> list(char) |
bool-identify-geq-k with k=0 | ([12, 2, 7, 1, 6],) | [True, True, True, True, True] | list(int) -> list(bool) |
kth-largest with k=2 | ([13, 10, 5, 13, 5, 1],) | 13 | list(int) -> int |
bool-identify-geq-k with k=0 | ([1, 14, 12, 8, 4, 3, 12],) | [True, True, True, True, True, True, True] | list(int) -> list(bool) |
Prepend '170' to first word | ('Malissa W',) | 170Malissa | list(char) -> list(char) |
bool-identify-is-mod-k with k=1 | ([13, 7, 9, 10],) | [True, True, True, True] | list(int) -> list(bool) |
Append two words delimited by ')' | ('Storrs', 'Jacquiline') | Storrs)Jacquiline | list(char) -> list(char) -> list(char) |
parentheses around word delimited by '.' & ',' | ('.+197,64',) | .(+197),64 | list(char) -> list(char) |
Prepend 'Sergienko' | ('009',) | Sergienko009 | list(char) -> list(char) |
is-mod-k with k=1 | ([6, 11, 0, 11, 7, 9],) | True | list(int) -> bool |
remove-mod-k with k=3 | ([12],) | [] | list(int) -> list(int) |
nth (n=-1) word delimited by ',' | ('+194,Scalia,Montiel,Ghoston',) | Ghoston | list(char) -> list(char) |
ensure suffix `769` | ('520 T769',) | 520 T769 | list(char) -> list(char) |
is-odds | ([9, 7, 27],) | True | list(int) -> bool |
nth (n=0) word delimited by '.' | ('Maryann.705.Barbara',) | Maryann | list(char) -> list(char) |
prepend-k with k=4 | ([13, 1, 11, 16, 7],) | [4, 13, 1, 11, 16, 7] | list(int) -> list(int) |
Take first character and append ')' | ('414',) | 4) | list(char) -> list(char) |
parentheses around a single word (III) | ('NY',) | (NY) | list(char) -> list(char) |
Abbreviate separate words (IIIII) | ('Ducati125', '46') | D.4. | list(char) -> list(char) -> list(char) |
drop first word delimited by ')' | ('Jenee)Jenee)151)UC',) | Jenee)151)UC | list(char) -> list(char) |
prepend-index-k with k=5 | ([3, 9, 3, 9, 3, 11],) | [3, 3, 9, 3, 9, 3, 11] | list(int) -> list(int) |
add-k with k=2 | ([],) | [] | list(int) -> list(int) |
Append two words delimited by '. ' | ('Philadelphia', '433') | Philadelphia. 433 | list(char) -> list(char) -> list(char) |
is-squares | ([25],) | True | list(int) -> bool |
Append two words delimited by ' ' | ('051', '+174') | 051 +174 | list(char) -> list(char) -> list(char) |
Append '636' | ('FreeHafer',) | FreeHafer636 | list(char) -> list(char) |
bool-identify-is-mod-k with k=5 | ([10],) | [True] | list(int) -> list(bool) |
drop first word delimited by ')' | ('Jenee)Jenee)151)UC',) | Jenee)151)UC | list(char) -> list(char) |
Append '+138' | ('512',) | 512+138 | list(char) -> list(char) |
range +1 maximum list | ([7, 6, 3, 6],) | [0, 1, 2, 3, 4, 5, 6, 7] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=1 and n=3 | ([1, 0, 0, 2, 0, 1],) | [2, 1, 1, 0, 1, 2] | list(int) -> list(int) |
Drop last 5 characters | ('Heintz',) | H | list(char) -> list(char) |
pow-k with k=4 | ([1],) | [1] | list(int) -> list(int) |
bool-identify-geq-k with k=2 | ([0, -1],) | [False, False] | list(int) -> list(bool) |
count-k with k=0 | ([],) | 0 | list(int) -> int |
replace-all-with-index-k with k=2 | ([9, 8],) | [8, 8] | list(int) -> list(int) |
ensure suffix `769` | ('Ducati125 A Eccleston +198769',) | Ducati125 A Eccleston +198769 | list(char) -> list(char) |
append-index-k with k=3 | ([12, 7, 16, 14],) | [12, 7, 16, 14, 16] | list(int) -> list(int) |
modulo-k with k=5 | ([11, 2, 16, 6, 4],) | [1, 2, 1, 1, 4] | list(int) -> list(int) |
Prepend 'Ghoston' to first word | ('Samuel Hage',) | GhostonSamuel | list(char) -> list(char) |
parentheses around a single word (III) | ('Ducati',) | (Ducati) | list(char) -> list(char) |
Append 2 strings (IIIIII) | ('Miah', '81') | Miah81 | list(char) -> list(char) -> list(char) |
drop first word delimited by ')' | ('Jenee)Jenee)151)UC',) | Jenee)151)UC | list(char) -> list(char) |
sort | ([12, 2, 8, 5, 15],) | [2, 5, 8, 12, 15] | list(int) -> list(int) |
bool-identify-k with k=3 | ([3, 3, 3, 4],) | [True, True, True, False] | list(int) -> list(bool) |
Append two words delimited by ',' | ('Pennsylvania', '+198') | Pennsylvania,+198 | list(char) -> list(char) -> list(char) |
Extract word delimited by '-' - ')' | ('155-Reily)Haven)+132',) | Reily | list(char) -> list(char) |
kth-largest with k=1 | ([6, 8, 8, 1, 9],) | 9 | list(int) -> int |
slice-k-n with k=5 and n=1 | ([13, 16, 6, 11, 11, 16, 8, 1, 1, 1, 15, 11],) | [11] | list(int) -> list(int) |
nth (n=1) word delimited by ' ' | ('+132 Annalisa Mcgaughey Ferrari',) | Annalisa | 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.