description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
is-mod-k with k=1 | ([0, 6, 4, 12, 15],) | True | list(int) -> bool |
count-head-in-tail | ([10, 12, 1, 6, 9, 3, 11],) | 0 | list(int) -> int |
Abbreviate words separated by '.' | ('T.81',) | T.8. | list(char) -> list(char) |
prepend-k with k=5 | ([7, 15, 1, 15, 16, 7, 10],) | [5, 7, 15, 1, 15, 16, 7, 10] | list(int) -> list(int) |
remove-mod-k with k=2 | ([10, 10, 16, 7, 2],) | [7] | list(int) -> list(int) |
is-squares | ([],) | True | list(int) -> bool |
First letters of words (II) | ('Celsa Latimore',) | CL | list(char) -> list(char) |
kth-smallest with k=1 | ([1],) | 1 | list(int) -> int |
Append 2 strings (I) | ('I', '+172') | I+172 | list(char) -> list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=2 and n=4 | ([2, 3, 2],) | [0, 1, 0] | list(int) -> list(int) |
remove eq 0 | ([2, 2, 5, 6, 6],) | [2, 2, 5, 6, 6] | list(int) -> list(int) |
nth (n=1) word delimited by '(' | ('Phialdelphia(+176(741(Ducati250',) | +176 | list(char) -> list(char) |
remove-index-k with k=1 | ([13],) | [] | list(int) -> list(int) |
slice-k-n with k=2 and n=1 | ([13, 15, 13, 6, 16, 2],) | [15] | list(int) -> list(int) |
append-k with k=0 | ([15, 16],) | [15, 16, 0] | list(int) -> list(int) |
ensure suffix `Andria` | ('Madelaine +189Andria',) | Madelaine +189Andria | list(char) -> list(char) |
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) |
Append two words delimited by '..' | ('Spagnoli', 'Hornak') | Spagnoli..Hornak | list(char) -> list(char) -> list(char) |
pop | ([1, 7, 11, 13, 10],) | [1, 7, 11, 13] | list(int) -> list(int) |
slice-k-n with k=4 and n=4 | ([16, 1, 15, 3, 4, 4, 7, 8, 16, 3, 3, 9, 14, 6, 5, 7],) | [3, 4, 4, 7] | list(int) -> list(int) |
ensure suffix `Scalia` | ('Ducati250 HoustonScalia',) | Ducati250 HoustonScalia | list(char) -> list(char) |
bool-identify-k with k=3 | ([3, 6, 1, 15, 12, 13],) | [True, False, False, False, False, False] | list(int) -> list(bool) |
take-k with k=1 | ([2, 10, 15, 3, 11],) | [2] | 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) |
remove eq 1 | ([5, 5, 4, 4, 3],) | [5, 5, 4, 4, 3] | list(int) -> list(int) |
Take first 3 characters | ('Trinidad',) | Tri | list(char) -> list(char) |
Extract word delimited by '(' - '(' | ('Montiel(Temple(Heintz(Teddy',) | Temple | list(char) -> list(char) |
is-primes | ([0, 2, 6, 16],) | False | list(int) -> bool |
Prepend 'Spell' | ('358',) | Spell358 | list(char) -> list(char) |
Take first 5 characters | ('Desiree',) | Desir | list(char) -> list(char) |
add-k with k=4 | ([4, 7, 15, 3, 2],) | [8, 11, 19, 7, 6] | list(int) -> list(int) |
Append 'Angeles' | ('469',) | 469Angeles | list(char) -> list(char) |
Prepend 'Jani' | ('Andria',) | JaniAndria | list(char) -> list(char) |
nth (n=1) word delimited by '-' | ('Kotas-028',) | 028 | list(char) -> list(char) |
add-k with k=4 | ([0, 3, 8, 15, 3, 3, 0],) | [4, 7, 12, 19, 7, 7, 4] | list(int) -> list(int) |
Abbreviate words separated by ' ' | ('038 Cruz',) | 0.C. | list(char) -> list(char) |
keep eq 0 | ([3, 3, 3, 2, 1],) | [] | list(int) -> list(int) |
modulo-k with k=1 | ([7, 10, 9, 7, 8, 8],) | [0, 0, 0, 0, 0, 0] | list(int) -> list(int) |
modulo-k with k=1 | ([4, 3, 7, 10, 4],) | [0, 0, 0, 0, 0] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=1 and n=5 | ([3, 3, 0, 2, 1, 0],) | [4, 4, 1, 3, 2, 1] | list(int) -> list(int) |
parentheses around word delimited by ' ' & ' ' | (' California +104,Teddy',) | (California) +104,Teddy | list(char) -> list(char) |
First letters of words (I) | ('Andria Richert 652 Penn',) | AR6P | list(char) -> list(char) |
parentheses around second word | ('California 86',) | (86) | list(char) -> list(char) |
Prepend '+174' | ('S',) | +174S | list(char) -> list(char) |
nth (n=0) word delimited by '(' | ('C(98',) | C | list(char) -> list(char) |
sort-and-deduplicate | ([10, 2],) | [2, 10] | list(int) -> list(int) |
Take first character and append ' ' | ('MI',) | M | list(char) -> list(char) |
count-k with k=4 | ([4, 16, 10],) | 1 | list(int) -> int |
Take first character and append ' ' | ('Alida',) | A | list(char) -> list(char) |
nth (n=1) word delimited by '-' | ('504-Jeanice-K',) | Jeanice | list(char) -> list(char) |
Prepend '170' to first word | ('Malissa 500',) | 170Malissa | list(char) -> list(char) |
parentheses around first word | ('018 +176 Houston',) | (018) | list(char) -> list(char) |
kth-largest with k=3 | ([4, 1, 11, 2, 3, 15, 2, 0, 12],) | 11 | list(int) -> int |
Prepend 'Jani' | ('Honda550',) | JaniHonda550 | list(char) -> list(char) |
slice-k-n with k=2 and n=2 | ([2, 7, 11, 0, 2, 7, 2, 2, 10, 6, 0],) | [7, 11] | list(int) -> list(int) |
pow-k with k=4 | ([10],) | [10000] | list(int) -> list(int) |
Append 'Dermody' | ('29',) | 29Dermody | list(char) -> list(char) |
remove eq 0 | ([4, 3, 5, 2, 1],) | [4, 3, 5, 2, 1] | list(int) -> list(int) |
keep eq 3 | ([5, 6, 1, 4, 2],) | [] | list(int) -> list(int) |
Take first character and append '-' | ('+158',) | +- | list(char) -> list(char) |
take-k with k=1 | ([15, 8, 10, 14, 15, 5, 11],) | [15] | list(int) -> list(int) |
kth-largest with k=4 | ([7, 16, 6, 13, 16, 4, 7],) | 7 | list(int) -> int |
append-k with k=5 | ([0],) | [0, 5] | list(int) -> list(int) |
empty | ([4],) | False | list(int) -> bool |
slice-k-n with k=3 and n=2 | ([2, 4, 10, 9, 16, 0, 6],) | [10, 9] | list(int) -> list(int) |
Extract word delimited by ',' - '.' | ('CT,+118.Mariel.40',) | +118 | list(char) -> list(char) |
slice-k-n with k=5 and n=1 | ([9, 1, 14, 12, 11, 7, 8],) | [11] | list(int) -> list(int) |
Replace ' ' w/ '(' | ('52 622',) | 52(622 | list(char) -> list(char) |
Extract word delimited by '(' - '(' | ('Ducati250(+183(Richert(Park',) | +183 | list(char) -> list(char) |
range +1 maximum list | ([4, 7],) | [0, 1, 2, 3, 4, 5, 6, 7] | list(int) -> list(int) |
add-k with k=3 | ([9, 2, 11, 4, 13, 11],) | [12, 5, 14, 7, 16, 14] | list(int) -> list(int) |
Append two words delimited by '..' | ('Spagnoli', 'Hornak') | Spagnoli..Hornak | list(char) -> list(char) -> list(char) |
modulo-k with k=1 | ([7, 8, 1, 9],) | [0, 0, 0, 0] | list(int) -> list(int) |
count-head-in-tail | ([0, 5, 4, 0, 2],) | 1 | list(int) -> int |
drop-k with k=4 | ([5, 12, 2, 4, 15, 16],) | [15, 16] | list(int) -> list(int) |
remove eq 2 | ([0, 6, 4, 5, 4],) | [0, 6, 4, 5, 4] | list(int) -> list(int) |
drop first word delimited by '.' | ('598.849.854.Kimberley',) | 849.854.Kimberley | list(char) -> list(char) |
mult-k with k=0 | ([],) | [] | list(int) -> list(int) |
parentheses around a single word (II) | ('Honda',) | (Honda) | list(char) -> list(char) |
Prepend 'Sergienko' | ('009',) | Sergienko009 | list(char) -> list(char) |
slice-k-n with k=1 and n=1 | ([15, 0, 1, 9, 3, 14, 6, 10, 12, 5],) | [15] | list(int) -> list(int) |
Drop last 4 characters | ('Jenee',) | J | list(char) -> list(char) |
index-k with k=4 | ([2, 14, 10, 13],) | 13 | list(int) -> int |
bool-identify-is-mod-k with k=5 | ([5, 6, 2, 8, 9, 0, 2],) | [True, False, False, False, False, True, False] | list(int) -> list(bool) |
head | ([11, 10, 12, 13, 2, 15],) | 11 | list(int) -> int |
Append two words delimited by '(' | ('176', 'C') | 176(C | list(char) -> list(char) -> list(char) |
nth (n=-1) word delimited by ',' | ('144,Honda550,Hopkins',) | Hopkins | list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=1 and n=5 | ([0, 0, 2, 4, 0, 1, 0],) | [1, 1, 3, 0, 1, 2, 1] | list(int) -> list(int) |
Append two words delimited by '.' | ('632', '836') | 632.836 | list(char) -> list(char) -> list(char) |
bool-identify-is-mod-k with k=2 | ([2, 2, 2, 4],) | [True, True, True, True] | list(int) -> list(bool) |
has-head-in-tail | ([2, 2, 13, 2, 2, 2, 4],) | True | list(int) -> bool |
Replace ' ' w/ '(' | ('Honda250 Casler Edison',) | Honda250(Casler(Edison | list(char) -> list(char) |
Replace '(' w/ ')' | ('Hornak(Q(Mackenzie',) | Hornak)Q)Mackenzie | list(char) -> list(char) |
drop-k with k=4 | ([14, 4, 4, 13, 12],) | [12] | list(int) -> list(int) |
append-k with k=4 | ([3],) | [3, 4] | list(int) -> list(int) |
modulo-k with k=3 | ([14, 15],) | [2, 0] | list(int) -> list(int) |
nth (n=0) word delimited by '.' | ('B.25.Jeanice',) | B | list(char) -> list(char) |
Abbreviate separate words (II) | ('Gertude', 'Dermody') | G.D. | list(char) -> list(char) -> list(char) |
Abbreviate separate words (IIIII) | ('21', '169') | 2.1. | list(char) -> list(char) -> list(char) |
modulo-k with k=5 | ([10],) | [0] | list(int) -> list(int) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.