description
stringlengths
3
46
input
stringlengths
4
74
output
stringlengths
1
90
types
stringclasses
9 values
Replace '(' w/ ' '
('Nancy(Houston',)
Nancy Houston
list(char) -> list(char)
replace-all-with-index-k with k=5
([13, 5, 3, 0, 9, 15, 1, 1],)
[9, 9, 9, 9, 9, 9, 9, 9]
list(int) -> list(int)
Append 2 strings (IIII)
('Marcus', '776')
Marcus776
list(char) -> list(char) -> list(char)
Take first 4 characters
('Haven',)
Have
list(char) -> list(char)
slice-k-n with k=5 and n=5
([14, 2, 11, 14, 15, 6, 12, 8, 12, 4, 3, 2, 3, 1, 1],)
[15, 6, 12, 8, 12]
list(int) -> list(int)
kth-smallest with k=4
([12, 3, 12, 15],)
15
list(int) -> int
First letters of words (IIII)
('310 817 Q +185',)
38Q+
list(char) -> list(char)
caesar-cipher-k-modulo-n with k=2 and n=3
([1, 0, 1, 1, 1],)
[0, 2, 0, 0, 0]
list(int) -> list(int)
is-mod-k with k=4
([16, 15, 11, 9, 16],)
False
list(int) -> bool
append-index-k with k=5
([9, 11, 8, 0, 7, 8],)
[9, 11, 8, 0, 7, 8, 7]
list(int) -> list(int)
prepend-k with k=0
([6, 8, 0, 11],)
[0, 6, 8, 0, 11]
list(int) -> list(int)
remove eq 1
([4, 1, 5, 1, 2],)
[4, 5, 2]
list(int) -> list(int)
Append two words delimited by '.-'
('Mackenzie', '163')
Mackenzie.-163
list(char) -> list(char) -> list(char)
add-k with k=3
([12, 11, 1, 7, 8, 4, 5],)
[15, 14, 4, 10, 11, 7, 8]
list(int) -> list(int)
Append two words delimited by '..'
('Spagnoli', 'Hornak')
Spagnoli..Hornak
list(char) -> list(char) -> list(char)
Append two words delimited by '-'
('+196', 'O')
+196-O
list(char) -> list(char) -> list(char)
First letters of words (IIIIII)
('21 B',)
2B
list(char) -> list(char)
pow-k with k=3
([1, 4, 12],)
[1, 64, 1728]
list(int) -> list(int)
Append 'Beata'
('Eccleston',)
EcclestonBeata
list(char) -> list(char)
kth-smallest with k=2
([10, 5],)
10
list(int) -> int
Abbreviate separate words (IIIII)
('50', 'PA')
5.P.
list(char) -> list(char) -> list(char)
kth-smallest with k=2
([13, 4, 8, 10, 3, 2],)
3
list(int) -> int
Abbreviate separate words (I)
('62', 'Ramthun')
6.R.
list(char) -> list(char) -> list(char)
remove-mod-head
([5, 6, 16, 11, 8, 8, 5],)
[6, 16, 11, 8, 8]
list(int) -> list(int)
Append two words delimited by '('
('Q', 'Ducati250')
Q(Ducati250
list(char) -> list(char) -> list(char)
Take first character and append '-'
('Chong',)
C-
list(char) -> list(char)
slice-k-n with k=1 and n=1
([10, 3, 10, 11, 4, 16, 7],)
[10]
list(int) -> list(int)
First letters of words (I)
('81 Heintz Pannell',)
8HP
list(char) -> list(char)
Prepend '170' to first word
('of Latimore',)
170of
list(char) -> list(char)
remove eq 2
([6, 6, 5, 5, 2],)
[6, 6, 5, 5]
list(int) -> list(int)
Extract word delimited by '(' - '('
('Montiel(Temple(Heintz(Teddy',)
Temple
list(char) -> list(char)
keep gt 3
([4, 5, 0, 4, 6],)
[4, 5, 4, 6]
list(int) -> list(int)
index-k with k=5
([9, 1, 6, 0, 4, 14, 15, 6, 6, 14, 4, 7],)
4
list(int) -> int
Prepend '170' to first word
('of Latimore',)
170of
list(char) -> list(char)
remove gt 1
([1, 2, 3, 3, 0],)
[1, 0]
list(int) -> list(int)
replace-all-with-index-k with k=2
([4, 16, 6, 0, 5, 10],)
[16, 16, 16, 16, 16, 16]
list(int) -> list(int)
Append 2 strings (IIIIII)
('Miah', '81')
Miah81
list(char) -> list(char) -> list(char)
Extract word delimited by ')' - '-'
('Cruz)+188-Maryann)183',)
+188
list(char) -> list(char)
prepend-index-k with k=1
([2, 1, 3, 2, 13, 7, 9],)
[2, 2, 1, 3, 2, 13, 7, 9]
list(int) -> list(int)
prepend-k with k=0
([14, 0, 3],)
[0, 14, 0, 3]
list(int) -> list(int)
slice-k-n with k=4 and n=5
([1, 6, 1, 5, 16, 14, 0, 9, 9, 13, 4, 9, 14],)
[5, 16, 14, 0, 9]
list(int) -> list(int)
Replace '(' w/ '.'
('75(University',)
75.University
list(char) -> list(char)
kth-smallest with k=3
([15, 6, 5, 2, 13, 14, 5, 12, 6],)
5
list(int) -> int
Append two words delimited by '('
('PA', 'Dermody')
PA(Dermody
list(char) -> list(char) -> list(char)
Extract word delimited by ',' - '.'
('504,566.20.F',)
566
list(char) -> list(char)
Append two words delimited by '..'
('568', 'Teddy')
568..Teddy
list(char) -> list(char) -> list(char)
ensure suffix `Scalia`
('Ramthun Beata Chism FreeHaferScalia',)
Ramthun Beata Chism FreeHaferScalia
list(char) -> list(char)
slice-k-n with k=3 and n=4
([0, 5, 15, 2, 7, 11, 8, 4, 12, 2, 4],)
[15, 2, 7, 11]
list(int) -> list(int)
reverse
([4, 11],)
[11, 4]
list(int) -> list(int)
add-k with k=5
([16, 12, 15, 7],)
[21, 17, 20, 12]
list(int) -> list(int)
range +1 maximum list
([0, 4, 6],)
[0, 1, 2, 3, 4, 5, 6]
list(int) -> list(int)
remove gt 2
([5, 2, 5, 6, 1],)
[2, 1]
list(int) -> list(int)
Take first character and append '('
('82',)
8(
list(char) -> list(char)
range +1 maximum list
([9, 10, 0, 5],)
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
list(int) -> list(int)
range
(3,)
[0, 1, 2]
int -> list(int)
Append 2 strings (IIIII)
('Madelaine', '29')
Madelaine29
list(char) -> list(char) -> list(char)
Replace '.' w/ ')'
('Beata.21.119',)
Beata)21)119
list(char) -> list(char)
ensure suffix `Andria`
('Madelaine +189Andria',)
Madelaine +189Andria
list(char) -> list(char)
parentheses around word delimited by ',' & ','
('Bess,994,Montiel',)
Bess,(994),Montiel
list(char) -> list(char)
caesar-cipher-k-modulo-n with k=1 and n=2
([],)
[]
list(int) -> list(int)
Prepend '086' to first word
('Ducati Penn',)
086Ducati
list(char) -> list(char)
First letters of words (IIII)
('Ducati250 Lashanda N Barbara',)
DLNB
list(char) -> list(char)
parentheses around a single word (II)
('29',)
(29)
list(char) -> list(char)
replace-all-with-index-k with k=5
([15, 5, 16, 14, 4, 6, 15, 12, 9, 13, 15],)
[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
list(int) -> list(int)
product
([9, 5, 6, 11, 6, 13, 14],)
3243240
list(int) -> int
slice-k-n with k=4 and n=4
([14, 9, 3, 15, 10, 9, 5, 12, 14, 4, 7, 13, 15, 2],)
[15, 10, 9, 5]
list(int) -> list(int)
nth (n=-1) word delimited by '('
('N(Spell(Babiarz(MD',)
MD
list(char) -> list(char)
keep gt 0
([5, 2, 5, 6, 6],)
[5, 2, 5, 6, 6]
list(int) -> list(int)
Append two words delimited by '-'
('47', 'NY')
47-NY
list(char) -> list(char) -> list(char)
bool-identify-is-mod-k with k=5
([0, 7, 3, 15, 11, 1],)
[True, False, False, True, False, False]
list(int) -> list(bool)
pow-k with k=5
([16, 12],)
[1048576, 248832]
list(int) -> list(int)
bool-identify-geq-k with k=5
([3, 3, 12],)
[False, False, True]
list(int) -> list(bool)
drop first word delimited by '('
('Barbara(Temple(Samuel',)
Temple(Samuel
list(char) -> list(char)
slice-k-n with k=3 and n=4
([0, 9, 14, 0, 7, 12, 14, 4, 7, 0, 12, 10],)
[14, 0, 7, 12]
list(int) -> list(int)
remove-mod-k with k=3
([3],)
[]
list(int) -> list(int)
remove-mod-k with k=5
([13, 12, 10, 1, 15],)
[13, 12, 1]
list(int) -> list(int)
Append two words delimited by ' '
('2', '+151')
2 +151
list(char) -> list(char) -> list(char)
parentheses around word delimited by ' ' & '-'
(' Reily-Withers,Urbana',)
(Reily)-Withers,Urbana
list(char) -> list(char)
nth (n=-1) word delimited by '.'
('Latimore.Joaquin.Bobo.G',)
G
list(char) -> list(char)
Append 2 strings (III)
('25', '176')
25176
list(char) -> list(char) -> list(char)
Append 2 strings (IIIII)
('Jacquiline', 'College')
JacquilineCollege
list(char) -> list(char) -> list(char)
keep eq 0
([0, 4, 6, 2, 6],)
[0]
list(int) -> list(int)
parentheses around a single word (IIIII)
('Acura',)
(Acura)
list(char) -> list(char)
Append 'Beata'
('092',)
092Beata
list(char) -> list(char)
Abbreviate words separated by ')'
('83)56',)
8.5.
list(char) -> list(char)
remove empty lists
([[], [True, False, False], [], []],)
[[True, False, False]]
list(list(bool)) -> list(list(bool))
Abbreviate separate words (IIIIII)
('25', '488')
2.4.
list(char) -> list(char) -> list(char)
modulo-k with k=4
([6],)
[2]
list(int) -> list(int)
index-k with k=2
([8, 10, 0, 6, 10, 8, 10, 12, 11],)
10
list(int) -> int
remove-index-k with k=2
([0, 9, 6, 7, 15],)
[0, 6, 7, 15]
list(int) -> list(int)
has-head-in-tail
([0, 0, 0, 5, 0],)
True
list(int) -> bool
ensure suffix `769`
('520 T769',)
520 T769
list(char) -> list(char)
Take first 5 characters
('Carlene',)
Carle
list(char) -> list(char)
nth (n=0) word delimited by ','
('R,Miah,Arbor',)
R
list(char) -> list(char)
add-k with k=1
([0, 11, 7, 9, 3],)
[1, 12, 8, 10, 4]
list(int) -> list(int)
caesar-cipher-k-modulo-n with k=3 and n=5
([1, 2],)
[4, 0]
list(int) -> list(int)
replace-all-with-index-k with k=2
([10, 8, 6, 6, 6, 14, 6],)
[8, 8, 8, 8, 8, 8, 8]
list(int) -> list(int)
index-k with k=3
([8, 2, 15, 3, 10, 0],)
15
list(int) -> int
Prepend '+167' to first word
('Launa 845',)
+167Launa
list(char) -> list(char)
slice-k-n with k=3 and n=3
([15, 5, 13, 13, 16, 11, 3, 7],)
[13, 13, 16]
list(int) -> list(int)