description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
Prepend 'Jani' | ('Andria',) | JaniAndria | list(char) -> list(char) |
rotate-k with k=3 | ([2, 11, 6, 10, 14, 2, 14, 3, 15, 14, 3, 5, 15, 0, 1, 15, 1],) | [1, 15, 1, 2, 11, 6, 10, 14, 2, 14, 3, 15, 14, 3, 5, 15, 0] | list(int) -> list(int) |
Abbreviate words separated by '.' | ('Spagnoli.734',) | S.7. | list(char) -> list(char) |
Append two words delimited by ' ' | ('Mariel', 'Harvard') | Mariel Harvard | list(char) -> list(char) -> list(char) |
sort-and-deduplicate | ([8, 1, 6],) | [1, 6, 8] | list(int) -> list(int) |
parentheses around word delimited by '.' & ',' | ('476.47,017',) | 476.(47),017 | list(char) -> list(char) |
Prepend '086' to first word | ('18 Miah',) | 08618 | list(char) -> list(char) |
drop first word delimited by ' ' | ('Bess Berkeley',) | Berkeley | list(char) -> list(char) |
Append two words delimited by '-' | ('+196', 'O') | +196-O | list(char) -> list(char) -> list(char) |
slice-k-n with k=2 and n=3 | ([7, 4, 11, 13, 11, 16, 9, 4, 14, 13, 1, 2, 15],) | [4, 11, 13] | list(int) -> list(int) |
parentheses around word delimited by '.' & ',' | ('476.47,017',) | 476.(47),017 | list(char) -> list(char) |
drop first word delimited by '-' | ('Coralee-862',) | 862 | list(char) -> list(char) |
parentheses around a single word (IIIII) | ('68',) | (68) | list(char) -> list(char) |
sum | ([10],) | 10 | list(int) -> int |
Abbreviate words separated by ')' | ('+196)253',) | +.2. | list(char) -> list(char) |
Prepend 'Sergienko' | ('Barbara',) | SergienkoBarbara | list(char) -> list(char) |
keep-mod-head | ([4],) | [] | list(int) -> list(int) |
First letters of words (II) | ('365 Aylward',) | 3A | list(char) -> list(char) |
evens | ([10, 11, 8, 16],) | [10, 8, 16] | list(int) -> list(int) |
First letters of words (III) | ('000 Dermody +196',) | 0D+ | list(char) -> list(char) |
Take first 3 characters | ('Vena',) | Ven | list(char) -> list(char) |
Append two words delimited by '(,' | ('Ducati100', '+176') | Ducati100(,+176 | list(char) -> list(char) -> list(char) |
append-index-k with k=3 | ([6, 8, 2, 6, 7, 14, 9],) | [6, 8, 2, 6, 7, 14, 9, 2] | list(int) -> list(int) |
nth (n=1) word delimited by '(' | ('Phialdelphia(+176(741(Ducati250',) | +176 | list(char) -> list(char) |
Append two words delimited by ' ' | ('Lain', 'Irwin') | Lain Irwin | list(char) -> list(char) -> list(char) |
remove eq 3 | ([4, 0, 5, 5, 3],) | [4, 0, 5, 5] | list(int) -> list(int) |
is-primes | ([71, 13],) | True | list(int) -> bool |
append-k with k=4 | ([2, 16, 15, 0, 13, 10, 7],) | [2, 16, 15, 0, 13, 10, 7, 4] | list(int) -> list(int) |
First letters of words (I) | ('+118 Chism 428 Acura100',) | +C4A | list(char) -> list(char) |
remove gt 2 | ([6, 4, 5, 4, 6],) | [] | list(int) -> list(int) |
parentheses around a single word (III) | ('Ducati',) | (Ducati) | list(char) -> list(char) |
repeat-k with k=3 | ([11, 5],) | [11, 5, 11, 5, 11, 5] | list(int) -> list(int) |
add-k with k=1 | ([9, 6],) | [10, 7] | list(int) -> list(int) |
Prepend '+167' to first word | ('+169 29',) | +167+169 | list(char) -> list(char) |
add-k with k=1 | ([4, 12, 15],) | [5, 13, 16] | list(int) -> list(int) |
Abbreviate words separated by '(' | ('+180(P',) | +.P. | list(char) -> list(char) |
drop first word delimited by ',' | ('Nancy,Beata,512,864',) | Beata,512,864 | list(char) -> list(char) |
Prepend 'Jani' | ('Honda550',) | JaniHonda550 | list(char) -> list(char) |
Take first 4 characters | ('+106',) | +106 | list(char) -> list(char) |
nth (n=0) word delimited by '-' | ('Olague-Bradford-+115-N',) | Olague | list(char) -> list(char) |
append-index-k with k=5 | ([16, 15, 7, 8, 2, 5, 14, 15, 8, 8],) | [16, 15, 7, 8, 2, 5, 14, 15, 8, 8, 2] | list(int) -> list(int) |
reverse | ([9, 10, 5, 8, 3],) | [3, 8, 5, 10, 9] | list(int) -> list(int) |
drop-k with k=1 | ([4, 7, 11, 4, 2, 5, 13, 5],) | [7, 11, 4, 2, 5, 13, 5] | list(int) -> list(int) |
bool-identify-geq-k with k=3 | ([7, 5, 6, 7, 9, 3],) | [True, True, True, True, True, True] | list(int) -> list(bool) |
Replace '(' w/ '.' | ('Spagnoli(7(Seamons',) | Spagnoli.7.Seamons | list(char) -> list(char) |
count-head-in-tail | ([7],) | 0 | list(int) -> int |
prepend-index-k with k=4 | ([13, 12, 8, 7, 11, 1, 15],) | [7, 13, 12, 8, 7, 11, 1, 15] | list(int) -> list(int) |
index-k with k=2 | ([4, 14, 13, 8, 14, 14, 16],) | 14 | list(int) -> int |
Abbreviate separate words (III) | ('+189', '856') | +.8. | list(char) -> list(char) -> list(char) |
sum | ([13, 15, 13],) | 41 | list(int) -> int |
parentheses around word delimited by ' ' & ' ' | ('94 Heintz Q',) | 94 (Heintz) Q | list(char) -> list(char) |
keep-mod-k with k=4 | ([4, 12, 3, 15, 5, 5],) | [4, 12] | list(int) -> list(int) |
Take first character and append ',' | ('546',) | 5, | list(char) -> list(char) |
remove-index-k with k=1 | ([4, 4, 12, 7, 13, 9, 1],) | [4, 12, 7, 13, 9, 1] | list(int) -> list(int) |
pop | ([14, 15, 8],) | [14, 15] | list(int) -> list(int) |
bool-identify-k with k=3 | ([3, 3, 3],) | [True, True, True] | list(int) -> list(bool) |
Abbreviate words separated by ')' | ('Coralee)Rowden',) | C.R. | list(char) -> list(char) |
Append 'Beata' | ('997',) | 997Beata | list(char) -> list(char) |
parentheses around second word | ('O Jeanice',) | (Jeanice) | list(char) -> list(char) |
is-mod-k with k=2 | ([7],) | False | list(int) -> bool |
mult-k with k=2 | ([4, 1, 5, 8],) | [8, 2, 10, 16] | list(int) -> list(int) |
bool-identify-is-mod-k with k=2 | ([2, 2, 2, 4],) | [True, True, True, True] | list(int) -> list(bool) |
Append two words delimited by ' -' | ('622', 'Andrew') | 622 -Andrew | list(char) -> list(char) -> list(char) |
nth (n=1) word delimited by '(' | ('Andria(736(654',) | 736 | list(char) -> list(char) |
bool-identify-k with k=1 | ([1, 15],) | [True, False] | list(int) -> list(bool) |
nth (n=-1) word delimited by ')' | ('T)+197',) | +197 | list(char) -> list(char) |
drop first word delimited by '-' | ('California-+158-Ghoston-82',) | +158-Ghoston-82 | list(char) -> list(char) |
repeat-k with k=4 | ([12, 14, 1],) | [12, 14, 1, 12, 14, 1, 12, 14, 1, 12, 14, 1] | list(int) -> list(int) |
nth (n=1) word delimited by ',' | ('Sergienko,009,Jacquiline,Sergienko',) | 009 | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=1 and n=2 | ([0, 0, 0, 1, 0],) | [1, 1, 1, 0, 1] | list(int) -> list(int) |
Abbreviate separate words (III) | ('692', 'Soderstrom') | 6.S. | list(char) -> list(char) -> list(char) |
pow-k with k=2 | ([],) | [] | list(int) -> list(int) |
rotate-k with k=3 | ([2, 6, 1, 11, 4, 8, 15, 15, 16, 13, 3, 11, 8, 14],) | [11, 8, 14, 2, 6, 1, 11, 4, 8, 15, 15, 16, 13, 3] | list(int) -> list(int) |
slice-k-n with k=2 and n=1 | ([11, 12, 4, 5, 2],) | [12] | list(int) -> list(int) |
Extract word delimited by '-' - ')' | ('T-188)Brendan-736',) | 188 | list(char) -> list(char) |
bool-identify-k with k=4 | ([4],) | [True] | list(int) -> list(bool) |
min | ([16, 11, 13],) | 11 | list(int) -> int |
keep eq 0 | ([0, 2, 1, 5, 6],) | [0] | list(int) -> list(int) |
Append 2 strings (IIIII) | ('Soderstrom', '+199') | Soderstrom+199 | list(char) -> list(char) -> list(char) |
index-head | ([1, 1, 2],) | 1 | list(int) -> int |
index-k with k=2 | ([2, 5, 14],) | 5 | list(int) -> int |
parentheses around a single word (I) | ('+140',) | (+140) | list(char) -> list(char) |
prepend-index-k with k=4 | ([5, 4, 14, 5, 13, 5, 9, 9, 15, 13],) | [5, 5, 4, 14, 5, 13, 5, 9, 9, 15, 13] | list(int) -> list(int) |
remove-index-k with k=5 | ([9, 11, 7, 13, 15, 10, 10, 8],) | [9, 11, 7, 13, 10, 10, 8] | list(int) -> list(int) |
nth (n=-1) word delimited by '(' | ('Berkeley(557(29',) | 29 | list(char) -> list(char) |
add-k with k=3 | ([8, 8],) | [11, 11] | list(int) -> list(int) |
Prepend 'Hornak' | ('P',) | HornakP | list(char) -> list(char) |
mult-k with k=3 | ([4],) | [12] | list(int) -> list(int) |
+1 maximum list | ([1, 2, 3, 2],) | 4 | list(int) -> int |
caesar-cipher-k-modulo-n with k=2 and n=3 | ([1, 1, 0, 0],) | [0, 0, 2, 2] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=5 and n=3 | ([1, 2, 1, 2],) | [0, 1, 0, 1] | list(int) -> list(int) |
remove gt 0 | ([6, 3, 4, 2, 4],) | [] | list(int) -> list(int) |
Append 2 strings (I) | ('I', '+172') | I+172 | list(char) -> list(char) -> list(char) |
nth (n=0) word delimited by '-' | ('+172-Penn-Chilcott-E',) | +172 | list(char) -> list(char) |
prepend-index-k with k=2 | ([4, 8, 15, 5, 8, 12, 7, 9, 9],) | [8, 4, 8, 15, 5, 8, 12, 7, 9, 9] | list(int) -> list(int) |
bool-identify-is-prime | ([3, 6],) | [True, False] | list(int) -> list(bool) |
parentheses around a single word (IIII) | ('+155',) | (+155) | list(char) -> list(char) |
Append two words delimited by ' -' | ('622', 'Andrew') | 622 -Andrew | list(char) -> list(char) -> list(char) |
nth (n=1) word delimited by ' ' | ('+132 Annalisa Mcgaughey Ferrari',) | Annalisa | list(char) -> list(char) |
Take first 5 characters | ('Carlene',) | Carle | 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.