description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
sort-and-deduplicate
|
([4, 9, 2],)
|
[2, 4, 9]
|
list(int) -> list(int)
|
Extract word delimited by '-' - ')'
|
('York-Mackenzie)Jacquiline)L',)
|
Mackenzie
|
list(char) -> list(char)
|
Append 'Beata'
|
('092',)
|
092Beata
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=5 and n=4
|
([3, 2, 1, 3, 3],)
|
[0, 3, 2, 0, 0]
|
list(int) -> list(int)
|
bool-identify-k with k=1
|
([1],)
|
[True]
|
list(int) -> list(bool)
|
kth-smallest with k=2
|
([7, 4, 0, 1, 11, 0, 11],)
|
0
|
list(int) -> int
|
Replace '(' w/ ' '
|
('+194(Alaina',)
|
+194 Alaina
|
list(char) -> list(char)
|
Replace '.' w/ ')'
|
('Lakenya.876.18.064',)
|
Lakenya)876)18)064
|
list(char) -> list(char)
|
modulo-k with k=4
|
([],)
|
[]
|
list(int) -> list(int)
|
slice-k-n with k=1 and n=1
|
([5, 14, 5, 2, 13, 1, 7, 13, 1, 1],)
|
[5]
|
list(int) -> list(int)
|
drop-k with k=3
|
([16, 3, 9, 1, 7, 12, 5, 12, 4, 14],)
|
[1, 7, 12, 5, 12, 4, 14]
|
list(int) -> list(int)
|
drop first word delimited by ')'
|
('Mariel)+195',)
|
+195
|
list(char) -> list(char)
|
prepend-k with k=5
|
([12],)
|
[5, 12]
|
list(int) -> list(int)
|
drop first word delimited by ','
|
('943,65,216,CA',)
|
65,216,CA
|
list(char) -> list(char)
|
Take first 5 characters
|
('Ducati250',)
|
Ducat
|
list(char) -> list(char)
|
Extract word delimited by '-' - ')'
|
('155-Reily)Haven)+132',)
|
Reily
|
list(char) -> list(char)
|
remove empty lists
|
([[False, True, False], [], [True], [True]],)
|
[[False, True, False], [True], [True]]
|
list(list(bool)) -> list(list(bool))
|
Append two words delimited by ' '
|
('051', '+174')
|
051 +174
|
list(char) -> list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=3 and n=2
|
([1, 1, 0, 0],)
|
[0, 0, 1, 1]
|
list(int) -> list(int)
|
product
|
([3, 10, 8, 13, 11],)
|
34320
|
list(int) -> int
|
bool-identify-is-mod-k with k=2
|
([2, 0, 7],)
|
[True, True, False]
|
list(int) -> list(bool)
|
Prepend 'Carlene' to first word
|
('997 CA',)
|
Carlene997
|
list(char) -> list(char)
|
drop first word delimited by ','
|
('943,65,216,CA',)
|
65,216,CA
|
list(char) -> list(char)
|
keep eq 0
|
([6, 6, 2, 4, 3],)
|
[]
|
list(int) -> list(int)
|
nth (n=-1) word delimited by '('
|
('Scalia(65',)
|
65
|
list(char) -> list(char)
|
bool-identify-geq-k with k=0
|
([1, 14, 0, 12, 14],)
|
[True, True, True, True, True]
|
list(int) -> list(bool)
|
slice-k-n with k=2 and n=1
|
([15, 2, 4, 4, 4, 9],)
|
[2]
|
list(int) -> list(int)
|
parentheses around a single word (III)
|
('Lain',)
|
(Lain)
|
list(char) -> list(char)
|
remove-index-k with k=4
|
([8, 7, 4, 2, 3, 12, 8, 13],)
|
[8, 7, 4, 3, 12, 8, 13]
|
list(int) -> list(int)
|
is-mod-k with k=4
|
([52, 0, 8],)
|
True
|
list(int) -> bool
|
keep-mod-k with k=3
|
([12, 15, 0],)
|
[12, 15, 0]
|
list(int) -> list(int)
|
prepend-k with k=2
|
([14],)
|
[2, 14]
|
list(int) -> list(int)
|
nth (n=0) word delimited by ' '
|
('Q +108 Desiree',)
|
Q
|
list(char) -> list(char)
|
mult-k with k=2
|
([],)
|
[]
|
list(int) -> list(int)
|
Drop last 4 characters
|
('Jenee',)
|
J
|
list(char) -> list(char)
|
append-k with k=3
|
([6, 15, 6],)
|
[6, 15, 6, 3]
|
list(int) -> list(int)
|
slice-k-n with k=5 and n=5
|
([4, 5, 3, 2, 6, 16, 16, 15, 11, 11, 16, 3, 16],)
|
[6, 16, 16, 15, 11]
|
list(int) -> list(int)
|
is-mod-k with k=2
|
([14],)
|
True
|
list(int) -> bool
|
Replace '.' w/ ')'
|
('622.270',)
|
622)270
|
list(char) -> list(char)
|
ensure suffix `568`
|
('MD Hopkins 394',)
|
MD Hopkins 394568
|
list(char) -> list(char)
|
has-k with k=2
|
([9, 15, 4, 7],)
|
False
|
list(int) -> bool
|
bool-identify-k with k=3
|
([12],)
|
[False]
|
list(int) -> list(bool)
|
parentheses around a single word (II)
|
('Honda',)
|
(Honda)
|
list(char) -> list(char)
|
Prepend '177' to first word
|
('421 Annalisa',)
|
177421
|
list(char) -> list(char)
|
keep eq 1
|
([4, 1, 5, 0, 0],)
|
[1]
|
list(int) -> list(int)
|
Append '636'
|
('844',)
|
844636
|
list(char) -> list(char)
|
Abbreviate separate words (IIIIII)
|
('+81', 'Halpern')
|
+.H.
|
list(char) -> list(char) -> list(char)
|
Prepend 'Carlene' to first word
|
('43 927',)
|
Carlene43
|
list(char) -> list(char)
|
prepend-index-k with k=3
|
([6, 10, 15, 8, 14, 3, 4, 16, 1],)
|
[15, 6, 10, 15, 8, 14, 3, 4, 16, 1]
|
list(int) -> list(int)
|
Abbreviate separate words (I)
|
('Dermody', 'D')
|
D.D.
|
list(char) -> list(char) -> list(char)
|
pow-k with k=3
|
([4, 3, 7, 10, 4],)
|
[64, 27, 343, 1000, 64]
|
list(int) -> list(int)
|
First letters of words (II)
|
('Celsa Latimore',)
|
CL
|
list(char) -> list(char)
|
product
|
([16, 1, 14, 0, 12],)
|
0
|
list(int) -> int
|
pow-k with k=4
|
([2, 0, 1, 11, 11, 10],)
|
[16, 0, 1, 14641, 14641, 10000]
|
list(int) -> list(int)
|
Drop last 2 characters
|
('562',)
|
5
|
list(char) -> list(char)
|
take-k with k=5
|
([13, 13, 2, 2, 3, 9, 16, 10, 15],)
|
[13, 13, 2, 2, 3]
|
list(int) -> list(int)
|
replace-all-with-index-k with k=2
|
([10, 3, 5, 8, 3, 7, 14, 1],)
|
[3, 3, 3, 3, 3, 3, 3, 3]
|
list(int) -> list(int)
|
Append two words delimited by ' '
|
('2', '+151')
|
2 +151
|
list(char) -> list(char) -> list(char)
|
drop first word delimited by '.'
|
('598.849.854.Kimberley',)
|
849.854.Kimberley
|
list(char) -> list(char)
|
Append 2 strings (II)
|
('245', 'Casler')
|
245Casler
|
list(char) -> list(char) -> list(char)
|
parentheses around word delimited by ',' & ','
|
('100,066,Annalisa',)
|
100,(066),Annalisa
|
list(char) -> list(char)
|
Append two words delimited by '('
|
('204', 'Elias')
|
204(Elias
|
list(char) -> list(char) -> list(char)
|
Take first character and append ' '
|
('Brescia',)
|
B
|
list(char) -> list(char)
|
slice-k-n with k=3 and n=1
|
([5, 6, 10, 0, 13],)
|
[10]
|
list(int) -> list(int)
|
ensure suffix `Scalia`
|
('Ducati250 HoustonScalia',)
|
Ducati250 HoustonScalia
|
list(char) -> list(char)
|
has-k with k=3
|
([3, 3, 3, 4, 3, 3],)
|
True
|
list(int) -> bool
|
Prepend '+167' to first word
|
('172 Hayley',)
|
+167172
|
list(char) -> list(char)
|
bool-identify-geq-k with k=4
|
([2, 0, 1, 15, 2, 4, 0],)
|
[False, False, False, True, False, True, False]
|
list(int) -> list(bool)
|
bool-identify-k with k=0
|
([],)
|
[]
|
list(int) -> list(bool)
|
parentheses around first word
|
('TX 33 Pennsylvania',)
|
(TX)
|
list(char) -> list(char)
|
Prepend 'UCLA'
|
('Ferrari',)
|
UCLAFerrari
|
list(char) -> list(char)
|
Prepend 'UCLA'
|
('MI',)
|
UCLAMI
|
list(char) -> list(char)
|
Append two words delimited by '-'
|
('119', 'Harvard')
|
119-Harvard
|
list(char) -> list(char) -> list(char)
|
take-k with k=4
|
([0, 6, 11, 0, 7, 6, 0, 10, 9, 6, 6],)
|
[0, 6, 11, 0]
|
list(int) -> list(int)
|
Append 'Dermody'
|
('Columbia',)
|
ColumbiaDermody
|
list(char) -> list(char)
|
Extract word delimited by ')' - '-'
|
('+144)060-Soderstrom)68',)
|
060
|
list(char) -> list(char)
|
pop
|
([0, 3, 2, 16],)
|
[0, 3, 2]
|
list(int) -> list(int)
|
is-mod-k with k=3
|
([9, 3, 7, 14],)
|
False
|
list(int) -> bool
|
ensure suffix `Scalia`
|
('Ducati250 HoustonScalia',)
|
Ducati250 HoustonScalia
|
list(char) -> list(char)
|
drop-k with k=4
|
([7, 0, 3, 6, 10, 4],)
|
[10, 4]
|
list(int) -> list(int)
|
remove eq 1
|
([4, 6, 2, 1, 5],)
|
[4, 6, 2, 5]
|
list(int) -> list(int)
|
Prepend 'UCLA'
|
('MI',)
|
UCLAMI
|
list(char) -> list(char)
|
append-k with k=0
|
([4, 0],)
|
[4, 0, 0]
|
list(int) -> list(int)
|
Prepend 'Sergienko'
|
('F',)
|
SergienkoF
|
list(char) -> list(char)
|
Append two words delimited by ' '
|
('35', 'Rowden')
|
35 Rowden
|
list(char) -> list(char) -> list(char)
|
parentheses around a single word (II)
|
('29',)
|
(29)
|
list(char) -> list(char)
|
mult-k with k=0
|
([15, 10],)
|
[0, 0]
|
list(int) -> list(int)
|
Append 'Dermody'
|
('29',)
|
29Dermody
|
list(char) -> list(char)
|
Append two words delimited by '('
|
('176', 'C')
|
176(C
|
list(char) -> list(char) -> list(char)
|
max
|
([9],)
|
9
|
list(int) -> int
|
slice-k-n with k=5 and n=3
|
([14, 0, 6, 15, 5, 11, 9, 3, 7, 10],)
|
[5, 11, 9]
|
list(int) -> list(int)
|
Abbreviate separate words (IIIIII)
|
('O', 'Dr')
|
O.D.
|
list(char) -> list(char) -> list(char)
|
take-k with k=3
|
([8, 15, 6, 6, 1, 5],)
|
[8, 15, 6]
|
list(int) -> list(int)
|
Abbreviate words separated by ' '
|
('Annalisa College',)
|
A.C.
|
list(char) -> list(char)
|
slice-k-n with k=4 and n=3
|
([1, 8, 7, 8, 4, 3, 6, 1, 10, 8, 5, 0, 4, 12, 15],)
|
[8, 4, 3]
|
list(int) -> list(int)
|
nth (n=0) word delimited by ','
|
('+115,+106',)
|
+115
|
list(char) -> list(char)
|
bool-identify-is-mod-k with k=3
|
([3, 3, 3, 3, 3],)
|
[True, True, True, True, True]
|
list(int) -> list(bool)
|
parentheses around word delimited by '-' & '.'
|
('-Spell.Rowden Arbor',)
|
-(Spell).Rowden Arbor
|
list(char) -> list(char)
|
Extract word delimited by '-' - ')'
|
('York-Mackenzie)Jacquiline)L',)
|
Mackenzie
|
list(char) -> list(char)
|
Append two words delimited by '(,'
|
('Harvard', '+183')
|
Harvard(,+183
|
list(char) -> list(char) -> list(char)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.