description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
modulo-k with k=1
|
([7, 8, 1, 9],)
|
[0, 0, 0, 0]
|
list(int) -> list(int)
|
First letters of words (IIIII)
|
('46 439',)
|
44
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=1 and n=4
|
([2, 3, 1],)
|
[3, 0, 2]
|
list(int) -> list(int)
|
parentheses around word delimited by ' ' & ' '
|
('Spagnoli Marquess Gertude',)
|
Spagnoli (Marquess) Gertude
|
list(char) -> list(char)
|
Append two words delimited by '('
|
('176', 'C')
|
176(C
|
list(char) -> list(char) -> list(char)
|
Append two words delimited by '. '
|
('62', 'Mackenzie')
|
62. Mackenzie
|
list(char) -> list(char) -> list(char)
|
Abbreviate words separated by ' '
|
('938 Alida',)
|
9.A.
|
list(char) -> list(char)
|
keep-mod-head
|
([3, 1, 3, 4, 7, 6, 9, 2],)
|
[3, 6, 9]
|
list(int) -> list(int)
|
bool-identify-is-mod-k with k=2
|
([13, 2, 0, 1, 2],)
|
[False, True, True, False, True]
|
list(int) -> list(bool)
|
parentheses around word delimited by ' ' & '-'
|
('+151 Annalisa-Phillip-Pennsylvania',)
|
+151 (Annalisa)-Phillip-Pennsylvania
|
list(char) -> list(char)
|
keep-mod-k with k=2
|
([13, 9, 11, 13],)
|
[]
|
list(int) -> list(int)
|
Abbreviate separate words (III)
|
('692', 'Soderstrom')
|
6.S.
|
list(char) -> list(char) -> list(char)
|
Prepend '086' to first word
|
('Ducati Penn',)
|
086Ducati
|
list(char) -> list(char)
|
keep-mod-k with k=5
|
([0, 25, 6],)
|
[0, 25]
|
list(int) -> list(int)
|
pow-k with k=2
|
([14, 14, 14, 0, 7, 3],)
|
[196, 196, 196, 0, 49, 9]
|
list(int) -> list(int)
|
slice-k-n with k=3 and n=2
|
([15, 0, 8, 12, 3, 0, 14, 1],)
|
[8, 12]
|
list(int) -> list(int)
|
prepend-k with k=3
|
([9, 14, 2, 5, 12, 10, 3],)
|
[3, 9, 14, 2, 5, 12, 10, 3]
|
list(int) -> list(int)
|
Replace '-' w/ ','
|
('+138-Irwin-46',)
|
+138,Irwin,46
|
list(char) -> list(char)
|
slice-k-n with k=4 and n=4
|
([6, 2, 5, 14, 9, 7, 6, 8, 5, 6, 9, 3, 10, 3, 0],)
|
[14, 9, 7, 6]
|
list(int) -> list(int)
|
Prepend '086' to first word
|
('18 Miah',)
|
08618
|
list(char) -> list(char)
|
drop first word delimited by '('
|
('75(Rice',)
|
Rice
|
list(char) -> list(char)
|
remove-index-k with k=5
|
([6, 11, 10, 7, 11],)
|
[6, 11, 10, 7]
|
list(int) -> list(int)
|
slice-k-n with k=2 and n=2
|
([2, 13, 7, 10, 15],)
|
[13, 7]
|
list(int) -> list(int)
|
Replace '(' w/ ')'
|
('Hornak(Q(Mackenzie',)
|
Hornak)Q)Mackenzie
|
list(char) -> list(char)
|
nth (n=0) word delimited by '-'
|
('64-836-197-Michigan',)
|
64
|
list(char) -> list(char)
|
parentheses around a single word (IIIII)
|
('Halpern',)
|
(Halpern)
|
list(char) -> list(char)
|
keep-mod-k with k=5
|
([40],)
|
[40]
|
list(int) -> list(int)
|
Append 2 strings (II)
|
('Spell', 'Los')
|
SpellLos
|
list(char) -> list(char) -> list(char)
|
Abbreviate words separated by ','
|
('Rice,883',)
|
R.8.
|
list(char) -> list(char)
|
First letters of words (IIII)
|
('CT FreeHafer Bogle',)
|
CFB
|
list(char) -> list(char)
|
Prepend 'Jani'
|
('25',)
|
Jani25
|
list(char) -> list(char)
|
drop-k with k=3
|
([7, 11, 12, 8, 15, 1, 9, 2],)
|
[8, 15, 1, 9, 2]
|
list(int) -> list(int)
|
drop first word delimited by ' '
|
('S 2 86 178',)
|
2 86 178
|
list(char) -> list(char)
|
prepend-k with k=3
|
([16, 4, 10, 12, 5, 11],)
|
[3, 16, 4, 10, 12, 5, 11]
|
list(int) -> list(int)
|
Take first 4 characters
|
('Ducati250',)
|
Duca
|
list(char) -> list(char)
|
Extract word delimited by ')' - ','
|
('Cambridge)Storrs,449)10',)
|
Storrs
|
list(char) -> list(char)
|
append-index-k with k=5
|
([4, 6, 1, 7, 1, 13],)
|
[4, 6, 1, 7, 1, 13, 1]
|
list(int) -> list(int)
|
drop-k with k=3
|
([9, 15, 11, 10, 4, 13],)
|
[10, 4, 13]
|
list(int) -> list(int)
|
parentheses around word delimited by ',' & ' '
|
('Dr,+104 45',)
|
Dr,(+104) 45
|
list(char) -> list(char)
|
Abbreviate words separated by ')'
|
('83)56',)
|
8.5.
|
list(char) -> list(char)
|
kth-smallest with k=2
|
([12, 5, 0, 10],)
|
5
|
list(int) -> int
|
slice-k-n with k=1 and n=3
|
([13, 13, 2, 4, 6, 5, 3],)
|
[13, 13, 2]
|
list(int) -> list(int)
|
drop first word delimited by ' '
|
('386 Georgina 720 141',)
|
Georgina 720 141
|
list(char) -> list(char)
|
parentheses around word delimited by ',' & ' '
|
(',Samuel Stefany.+185',)
|
,(Samuel) Stefany.+185
|
list(char) -> list(char)
|
nth (n=1) word delimited by '.'
|
('Ducati125.of.588.843',)
|
of
|
list(char) -> list(char)
|
Extract word delimited by ')' - ','
|
('Cambridge)Storrs,449)10',)
|
Storrs
|
list(char) -> list(char)
|
ensure suffix `Columbia`
|
('158 Quashie Hage',)
|
158 Quashie HageColumbia
|
list(char) -> list(char)
|
nth (n=1) word delimited by ' '
|
('29 Ferrari250',)
|
Ferrari250
|
list(char) -> list(char)
|
is-squares
|
([256, 64, 169, 64, 0, 196],)
|
True
|
list(int) -> bool
|
add-k with k=5
|
([16, 13, 9, 13, 0, 3, 10],)
|
[21, 18, 14, 18, 5, 8, 15]
|
list(int) -> list(int)
|
bool-identify-is-mod-k with k=3
|
([3],)
|
[True]
|
list(int) -> list(bool)
|
append-k with k=2
|
([7, 1, 3, 1, 4, 15],)
|
[7, 1, 3, 1, 4, 15, 2]
|
list(int) -> list(int)
|
pow-k with k=3
|
([15, 0, 2, 7, 11, 13],)
|
[3375, 0, 8, 343, 1331, 2197]
|
list(int) -> list(int)
|
remove-index-k with k=3
|
([1, 9, 16, 8, 11, 16, 13],)
|
[1, 9, 8, 11, 16, 13]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=1 and n=3
|
([],)
|
[]
|
list(int) -> list(int)
|
has-k with k=4
|
([3],)
|
False
|
list(int) -> bool
|
caesar-cipher-k-modulo-n with k=3 and n=5
|
([2, 1, 0, 3],)
|
[0, 4, 3, 1]
|
list(int) -> list(int)
|
Prepend '177' to first word
|
('566 14',)
|
177566
|
list(char) -> list(char)
|
mult-k with k=5
|
([12],)
|
[60]
|
list(int) -> list(int)
|
Extract word delimited by '(' - '('
|
('Andria(Honda125(+75(Malissa',)
|
Honda125
|
list(char) -> list(char)
|
Append two words delimited by ' -'
|
('779', 'Withers')
|
779 -Withers
|
list(char) -> list(char) -> list(char)
|
Prepend '170' to first word
|
('Malissa W',)
|
170Malissa
|
list(char) -> list(char)
|
append-k with k=1
|
([16, 13, 14, 9, 10, 15],)
|
[16, 13, 14, 9, 10, 15, 1]
|
list(int) -> list(int)
|
sum
|
([1, 6, 12, 1, 7],)
|
27
|
list(int) -> int
|
is-mod-k with k=2
|
([13],)
|
False
|
list(int) -> bool
|
append-k with k=4
|
([8, 9],)
|
[8, 9, 4]
|
list(int) -> list(int)
|
index-k with k=2
|
([9, 9, 1],)
|
9
|
list(int) -> int
|
count-k with k=3
|
([],)
|
0
|
list(int) -> int
|
prepend-index-k with k=5
|
([9, 14, 2, 7, 6, 8, 8],)
|
[6, 9, 14, 2, 7, 6, 8, 8]
|
list(int) -> list(int)
|
is-evens
|
([2, 5, 4, 2, 0, 5, 1, 1],)
|
False
|
list(int) -> bool
|
slice-k-n with k=2 and n=2
|
([14, 11, 16, 5, 0, 0, 5],)
|
[11, 16]
|
list(int) -> list(int)
|
repeat
|
([2, 3],)
|
[3, 3]
|
list(int) -> list(int)
|
Prepend 'Ghoston' to first word
|
('Samuel Hage',)
|
GhostonSamuel
|
list(char) -> list(char)
|
remove-index-k with k=2
|
([3, 11],)
|
[3]
|
list(int) -> list(int)
|
pow-k with k=3
|
([0, 15, 15, 16, 9],)
|
[0, 3375, 3375, 4096, 729]
|
list(int) -> list(int)
|
append-index-k with k=4
|
([5, 11, 8, 5],)
|
[5, 11, 8, 5, 5]
|
list(int) -> list(int)
|
Prepend '+167' to first word
|
('Madelaine Carlene',)
|
+167Madelaine
|
list(char) -> list(char)
|
is-odds
|
([13, 3, 9, 25, 25],)
|
True
|
list(int) -> bool
|
has-k with k=4
|
([7, 11, 13, 15, 16],)
|
False
|
list(int) -> bool
|
parentheses around second word
|
('856 +138 424 Montiel',)
|
(+138)
|
list(char) -> list(char)
|
Drop last 5 characters
|
('Cencici',)
|
Ce
|
list(char) -> list(char)
|
slice-k-n with k=2 and n=4
|
([15, 10, 7, 11, 7, 4, 6],)
|
[10, 7, 11, 7]
|
list(int) -> list(int)
|
count-k with k=4
|
([4, 13, 10, 4, 4, 4],)
|
4
|
list(int) -> int
|
drop-k with k=2
|
([15, 13, 0, 15, 8, 9, 16, 7, 6],)
|
[0, 15, 8, 9, 16, 7, 6]
|
list(int) -> list(int)
|
evens
|
([14, 7, 3, 1, 9, 9, 5],)
|
[14]
|
list(int) -> list(int)
|
Extract word delimited by ')' - ','
|
('963)Kathlyn,Melodi,Spagnoli',)
|
Kathlyn
|
list(char) -> list(char)
|
reverse
|
([15, 15, 11, 5, 3],)
|
[3, 5, 11, 15, 15]
|
list(int) -> list(int)
|
has-k with k=0
|
([0, 0, 0],)
|
True
|
list(int) -> bool
|
kth-smallest with k=1
|
([1],)
|
1
|
list(int) -> int
|
Prepend 'Sergienko'
|
('F',)
|
SergienkoF
|
list(char) -> list(char)
|
add-k with k=4
|
([],)
|
[]
|
list(int) -> list(int)
|
Take first character and append '.'
|
('Marquess',)
|
M.
|
list(char) -> list(char)
|
modulo-k with k=3
|
([13, 4, 11, 10],)
|
[1, 1, 2, 1]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=3 and n=2
|
([1, 0, 1, 1, 1],)
|
[0, 1, 0, 0, 0]
|
list(int) -> list(int)
|
nth (n=0) word delimited by ','
|
('MA,B,+95',)
|
MA
|
list(char) -> list(char)
|
remove-mod-head
|
([5, 2, 14, 10, 13],)
|
[2, 14, 13]
|
list(int) -> list(int)
|
slice-k-n with k=1 and n=3
|
([8, 1, 7, 13, 11, 2, 5, 16, 10, 9],)
|
[8, 1, 7]
|
list(int) -> list(int)
|
prepend-index-k with k=5
|
([6, 10, 0, 12, 3],)
|
[3, 6, 10, 0, 12, 3]
|
list(int) -> list(int)
|
drop first word delimited by ')'
|
('Mariel)+195',)
|
+195
|
list(char) -> list(char)
|
mult-k with k=2
|
([14],)
|
[28]
|
list(int) -> list(int)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.