description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
keep gt 2 | ([5, 5, 2, 3, 5],) | [5, 5, 3, 5] | list(int) -> list(int) |
nth (n=0) word delimited by ' ' | ('268 14 +104',) | 268 | list(char) -> list(char) |
ensure suffix `Scalia` | ('Ramthun Beata Chism FreeHaferScalia',) | Ramthun Beata Chism FreeHaferScalia | list(char) -> list(char) |
nth (n=1) word delimited by '-' | ('Launa-Hornak',) | Hornak | list(char) -> list(char) |
Take first 4 characters | ('Haven',) | Have | list(char) -> list(char) |
Prepend 'Carlene' to first word | ('Gertude +198',) | CarleneGertude | list(char) -> list(char) |
Extract word delimited by '-' - ')' | ('NY-Philadelphia)Ferrari-PA',) | Philadelphia | list(char) -> list(char) |
keep-mod-k with k=5 | ([5, 2, 7, 11, 13],) | [5] | list(int) -> list(int) |
parentheses around a single word (I) | ('+176',) | (+176) | list(char) -> list(char) |
slice-k-n with k=5 and n=5 | ([13, 11, 2, 2, 14, 5, 13, 9, 10, 2, 11],) | [14, 5, 13, 9, 10] | list(int) -> list(int) |
remove gt 1 | ([3, 1, 4, 2, 3],) | [1] | list(int) -> list(int) |
slice-k-n with k=3 and n=5 | ([16, 11, 0, 8, 5, 11, 15, 6, 12],) | [0, 8, 5, 11, 15] | list(int) -> list(int) |
Prepend '170' to first word | ('of Latimore',) | 170of | list(char) -> list(char) |
Append two words delimited by '-' | ('+196', 'O') | +196-O | list(char) -> list(char) -> list(char) |
Prepend '086' to first word | ('18 Miah',) | 08618 | list(char) -> list(char) |
take-k with k=1 | ([8, 0],) | [8] | list(int) -> list(int) |
keep gt 1 | ([5, 6, 1, 6, 6],) | [5, 6, 6, 6] | list(int) -> list(int) |
First letters of words (I) | ('Andria Richert 652 Penn',) | AR6P | list(char) -> list(char) |
keep eq 3 | ([0, 3, 5, 3, 5],) | [3, 3] | list(int) -> list(int) |
nth (n=-1) word delimited by ' ' | ('Park +183 186',) | 186 | list(char) -> list(char) |
keep primes | ([31, 7, 17, 3, 11, 8, 3],) | [31, 7, 17, 3, 11, 3] | list(int) -> list(int) |
Append 2 strings (IIIIII) | ('+199', '919') | +199919 | list(char) -> list(char) -> list(char) |
nth (n=1) word delimited by ' ' | ('+132 Annalisa Mcgaughey Ferrari',) | Annalisa | list(char) -> list(char) |
remove-mod-k with k=5 | ([5, 40, 16],) | [16] | list(int) -> list(int) |
ensure suffix `Andria` | ('+13 20 +7',) | +13 20 +7Andria | list(char) -> list(char) |
count-k with k=5 | ([5, 5, 5, 5, 5],) | 5 | list(int) -> int |
Abbreviate words separated by '.' | ('817.33',) | 8.3. | list(char) -> list(char) |
Take first character and append ',' | ('56',) | 5, | list(char) -> list(char) |
Replace ',' w/ '(' | ('Nancy,334,611,+172',) | Nancy(334(611(+172 | list(char) -> list(char) |
Prepend '177' to first word | ('421 Annalisa',) | 177421 | list(char) -> list(char) |
First letters of words (III) | ('Lango Babiarz R',) | LBR | list(char) -> list(char) |
Prepend '170' to first word | ('Malissa 500',) | 170Malissa | list(char) -> list(char) |
Append two words delimited by ' -' | ('779', 'Withers') | 779 -Withers | list(char) -> list(char) -> list(char) |
parentheses around a single word (II) | ('426',) | (426) | list(char) -> list(char) |
bool-identify-k with k=1 | ([5, 8, 4, 13, 12],) | [False, False, False, False, False] | list(int) -> list(bool) |
count-k with k=2 | ([2, 2, 2, 2, 2, 2],) | 6 | list(int) -> int |
Take first character and append '(' | ('82',) | 8( | list(char) -> list(char) |
nth (n=-1) word delimited by '(' | ('684(Ghoston',) | Ghoston | list(char) -> list(char) |
ensure suffix `Ramthun` | ('Ghoston Bobo Scalia Chism',) | Ghoston Bobo Scalia ChismRamthun | list(char) -> list(char) |
nth (n=0) word delimited by ' ' | ('Q +108 Desiree',) | Q | list(char) -> list(char) |
keep eq 3 | ([0, 6, 2, 2, 6],) | [] | list(int) -> list(int) |
keep-mod-k with k=3 | ([14, 13, 5, 8, 8, 9, 4],) | [9] | list(int) -> list(int) |
Prepend 'Spell' | ('+197',) | Spell+197 | list(char) -> list(char) |
Replace '(' w/ '.' | ('75(University',) | 75.University | list(char) -> list(char) |
is-mod-k with k=1 | ([2, 16, 2, 5, 15, 6, 7],) | True | list(int) -> bool |
bool-identify-is-prime | ([6, 13, 0, 2],) | [False, True, False, True] | list(int) -> list(bool) |
append-k with k=0 | ([3, 16, 10, 0, 8, 6, 4],) | [3, 16, 10, 0, 8, 6, 4, 0] | list(int) -> list(int) |
mult-k with k=2 | ([8, 2, 8],) | [16, 4, 16] | list(int) -> list(int) |
Abbreviate separate words (II) | ('Hayley', 'Ferrari') | H.F. | list(char) -> list(char) -> list(char) |
ensure suffix `Ramthun` | ('Ghoston Bobo Scalia Chism',) | Ghoston Bobo Scalia ChismRamthun | list(char) -> list(char) |
Append '636' | ('FreeHafer',) | FreeHafer636 | list(char) -> list(char) |
prepend-k with k=3 | ([6, 0],) | [3, 6, 0] | list(int) -> list(int) |
Replace '-' w/ ',' | ('+138-Irwin-46',) | +138,Irwin,46 | list(char) -> list(char) |
is-squares | ([],) | True | list(int) -> bool |
Replace '(' w/ ')' | ('14(Micha',) | 14)Micha | list(char) -> list(char) |
keep eq 0 | ([2, 6, 3, 4, 3],) | [] | list(int) -> list(int) |
Append 2 strings (IIIII) | ('Alaina', '7') | Alaina7 | list(char) -> list(char) -> list(char) |
index-k with k=4 | ([4, 16, 5, 11, 11, 14],) | 11 | list(int) -> int |
Append '+138' | ('TX',) | TX+138 | list(char) -> list(char) |
Append 'Cornell' | ('715',) | 715Cornell | list(char) -> list(char) |
Prepend '086' to first word | ('35 Lara',) | 08635 | list(char) -> list(char) |
Append 2 strings (IIII) | ('141', '636') | 141636 | list(char) -> list(char) -> list(char) |
has-k with k=0 | ([6, 11, 0, 11],) | True | list(int) -> bool |
nth (n=1) word delimited by ',' | ('Arbor,Scalia,Seamons,847',) | Scalia | list(char) -> list(char) |
Append 2 strings (I) | ('Georgina', '2') | Georgina2 | list(char) -> list(char) -> list(char) |
Append two words delimited by '.-' | ('2', 'Kotas') | 2.-Kotas | list(char) -> list(char) -> list(char) |
Take first character and append ',' | ('56',) | 5, | list(char) -> list(char) |
ensure suffix `Andria` | ('+68 +161 Heintz York',) | +68 +161 Heintz YorkAndria | list(char) -> list(char) |
kth-largest with k=2 | ([3, 13, 12],) | 12 | list(int) -> int |
keep eq 1 | ([6, 1, 0, 5, 6],) | [1] | list(int) -> list(int) |
prepend-index-k with k=2 | ([12, 11],) | [11, 12, 11] | list(int) -> list(int) |
parentheses around word delimited by '.' & ',' | ('.DPhiladelphia,+132 G',) | .(DPhiladelphia),+132 G | list(char) -> list(char) |
Take first 4 characters | ('Reily',) | Reil | list(char) -> list(char) |
Take first character and append '.' | ('+189',) | +. | list(char) -> list(char) |
bool-identify-k with k=2 | ([3],) | [False] | list(int) -> list(bool) |
keep-mod-k with k=5 | ([12, 13, 2, 15, 11],) | [15] | list(int) -> list(int) |
Append two words delimited by '.-' | ('2', 'Kotas') | 2.-Kotas | list(char) -> list(char) -> list(char) |
has-k with k=5 | ([2, 13],) | False | list(int) -> bool |
count-head-in-tail | ([2, 1, 2],) | 1 | list(int) -> int |
take-k with k=5 | ([7, 12, 4, 9, 7, 10, 8, 15, 10, 15, 0, 15],) | [7, 12, 4, 9, 7] | list(int) -> list(int) |
Take first 3 characters | ('Trinidad',) | Tri | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=1 and n=4 | ([1, 2, 1, 3, 1],) | [2, 3, 2, 0, 2] | list(int) -> list(int) |
Append 'Dermody' | ('+5',) | +5Dermody | list(char) -> list(char) |
is-squares | ([144, 169],) | True | list(int) -> bool |
Abbreviate words separated by '(' | ('G(Partida',) | G.P. | list(char) -> list(char) |
nth (n=1) word delimited by '.' | ('Bogle.Jani',) | Jani | list(char) -> list(char) |
drop first word delimited by '-' | ('Cambridge-+7-+140-29',) | +7-+140-29 | list(char) -> list(char) |
Append two words delimited by '.' | ('632', '836') | 632.836 | list(char) -> list(char) -> list(char) |
prepend-k with k=5 | ([8, 11, 7],) | [5, 8, 11, 7] | list(int) -> list(int) |
modulo-k with k=2 | ([1],) | [1] | list(int) -> list(int) |
append-index-k with k=4 | ([2, 3, 13, 14, 11, 14, 14, 0, 5],) | [2, 3, 13, 14, 11, 14, 14, 0, 5, 14] | list(int) -> list(int) |
Append two words delimited by '-' | ('119', 'Harvard') | 119-Harvard | list(char) -> list(char) -> list(char) |
Append 2 strings (III) | ('35', '981') | 35981 | list(char) -> list(char) -> list(char) |
has-head-in-tail | ([3, 1, 3, 4, 2],) | True | list(int) -> bool |
append-index-k with k=4 | ([3, 5, 4, 4, 2, 0, 1, 8],) | [3, 5, 4, 4, 2, 0, 1, 8, 4] | list(int) -> list(int) |
Drop last 2 characters | ('MI',) | null | list(char) -> list(char) |
nth (n=-1) word delimited by ')' | ('+42)+98)+115)Junkin',) | Junkin | list(char) -> list(char) |
Append 2 strings (IIII) | ('Seamons', 'Lakenya') | SeamonsLakenya | list(char) -> list(char) -> list(char) |
keep squares | ([3, 16, 6, 25, 2, 2, 25],) | [16, 25, 25] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=5 and n=2 | ([1, 1, 0, 0, 1],) | [0, 0, 1, 1, 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.