description
stringlengths
3
46
input
stringlengths
4
74
output
stringlengths
1
90
types
stringclasses
9 values
Append '+138'
('512',)
512+138
list(char) -> list(char)
parentheses around second word
('Trinidad 311 33',)
(311)
list(char) -> list(char)
Extract word delimited by ',' - '.'
('CT,+118.Mariel.40',)
+118
list(char) -> list(char)
ensure suffix `769`
('+169 +163 +129 46',)
+169 +163 +129 46769
list(char) -> list(char)
repeat-k with k=2
([0, 4],)
[0, 4, 0, 4]
list(int) -> list(int)
Append two words delimited by ')'
('42', '959')
42)959
list(char) -> list(char) -> list(char)
bool-identify-k with k=1
([1, 1, 1],)
[True, True, True]
list(int) -> list(bool)
bool-identify-is-prime
([2, 3, 4, 5, 7, 9],)
[True, True, False, True, True, False]
list(int) -> list(bool)
has-k with k=0
([],)
False
list(int) -> bool
Take first character and append ' '
('Brescia',)
B
list(char) -> list(char)
parentheses around first word
('+108 29 95 +196 332',)
(+108)
list(char) -> list(char)
odds
([15],)
[15]
list(int) -> list(int)
prepend-k with k=4
([16, 5, 0, 2, 3],)
[4, 16, 5, 0, 2, 3]
list(int) -> list(int)
Append two words delimited by '.-'
('Salley', '29')
Salley.-29
list(char) -> list(char) -> list(char)
Take first 4 characters
('Haven',)
Have
list(char) -> list(char)
len
([15, 15, 0, 1, 3, 16],)
6
list(int) -> int
remove eq 3
([2, 6, 4, 5, 4],)
[2, 6, 4, 5, 4]
list(int) -> list(int)
kth-largest with k=3
([7, 11, 12, 8, 15, 1, 9, 2],)
11
list(int) -> int
fibonacci
(2,)
1
int -> int
is-evens
([3, 6, 4],)
False
list(int) -> bool
Prepend 'Sergienko'
('009',)
Sergienko009
list(char) -> list(char)
drop first word delimited by ')'
('Mariel)+195',)
+195
list(char) -> list(char)
Abbreviate separate words (IIII)
('413', 'Acura')
4.A.
list(char) -> list(char) -> list(char)
parentheses around word delimited by '.' & ','
('20.066,TX-Pannell',)
20.(066),TX-Pannell
list(char) -> list(char)
replace-all-with-index-k with k=4
([16, 4, 3, 7, 13, 13, 0, 6, 4],)
[7, 7, 7, 7, 7, 7, 7, 7, 7]
list(int) -> list(int)
drop first word delimited by '('
('+9(Urbana',)
Urbana
list(char) -> list(char)
caesar-cipher-k-modulo-n with k=4 and n=5
([1, 0, 2, 2, 2, 0, 2],)
[0, 4, 1, 1, 1, 4, 1]
list(int) -> list(int)
caesar-cipher-k-modulo-n with k=5 and n=3
([0, 0, 0, 1, 1, 1],)
[2, 2, 2, 0, 0, 0]
list(int) -> list(int)
take-k with k=1
([15, 12],)
[15]
list(int) -> list(int)
mult-k with k=5
([3, 9, 12, 12, 4, 12],)
[15, 45, 60, 60, 20, 60]
list(int) -> list(int)
parentheses around word delimited by ' ' & '-'
(' Reily-Withers,Urbana',)
(Reily)-Withers,Urbana
list(char) -> list(char)
modulo-k with k=2
([12, 15],)
[0, 1]
list(int) -> list(int)
repeat-k with k=2
([4, 16, 0, 8],)
[4, 16, 0, 8, 4, 16, 0, 8]
list(int) -> list(int)
index-k with k=5
([0, 4, 2, 11, 6, 4, 9, 11, 5, 11, 1, 0],)
6
list(int) -> int
slice-k-n with k=2 and n=3
([11, 5, 2, 9, 12, 0, 3, 11, 9, 15],)
[5, 2, 9]
list(int) -> list(int)
Prepend 'Sergienko'
('009',)
Sergienko009
list(char) -> list(char)
ensure suffix `568`
('+47 P568',)
+47 P568
list(char) -> list(char)
caesar-cipher-k-modulo-n with k=3 and n=4
([0, 3, 1],)
[3, 2, 0]
list(int) -> list(int)
Append two words delimited by ' '
('Mariel', 'Harvard')
Mariel Harvard
list(char) -> list(char) -> list(char)
caesar-cipher-k-modulo-n with k=4 and n=3
([],)
[]
list(int) -> list(int)
kth-smallest with k=2
([10, 5],)
10
list(int) -> int
remove-mod-k with k=4
([20],)
[]
list(int) -> list(int)
Append 'Cornell'
('IL',)
ILCornell
list(char) -> list(char)
product
([0, 4, 11, 12, 15, 5, 2],)
0
list(int) -> int
First letters of words (II)
('438 20 MA FreeHafer',)
42MF
list(char) -> list(char)
caesar-cipher-k-modulo-n with k=2 and n=4
([2, 1, 2],)
[0, 3, 0]
list(int) -> list(int)
Append 'Cornell'
('715',)
715Cornell
list(char) -> list(char)
Extract word delimited by '(' - '('
('14(Rowden(Jeanice(Acura125',)
Rowden
list(char) -> list(char)
index-k with k=2
([1, 11],)
11
list(int) -> int
modulo-k with k=4
([2, 3, 14, 5, 3, 3],)
[2, 3, 2, 1, 3, 3]
list(int) -> list(int)
take-k with k=2
([14, 14],)
[14, 14]
list(int) -> list(int)
keep eq 0
([3, 2, 5, 0, 1],)
[0]
list(int) -> list(int)
count-k with k=3
([12, 3, 14],)
1
list(int) -> int
Abbreviate words separated by ','
('Rice,883',)
R.8.
list(char) -> list(char)
Append two words delimited by ' '
('35', 'Rowden')
35 Rowden
list(char) -> list(char) -> list(char)
kth-largest with k=2
([3, 13, 12],)
12
list(int) -> int
Append 2 strings (II)
('+163', '+141')
+163+141
list(char) -> list(char) -> list(char)
mult-k with k=5
([7, 3, 15, 2, 12],)
[35, 15, 75, 10, 60]
list(int) -> list(int)
caesar-cipher-k-modulo-n with k=4 and n=5
([4, 3, 2, 4, 2],)
[3, 2, 1, 3, 1]
list(int) -> list(int)
Drop last 3 characters
('857',)
null
list(char) -> list(char)
nth (n=0) word delimited by ' '
('42 597 J',)
42
list(char) -> list(char)
Take first 4 characters
('Reily',)
Reil
list(char) -> list(char)
Append 2 strings (I)
('Georgina', '2')
Georgina2
list(char) -> list(char) -> list(char)
slice-k-n with k=4 and n=5
([8, 4, 13, 6, 7, 13, 7, 5, 15, 11, 8, 13, 6, 1, 0],)
[6, 7, 13, 7, 5]
list(int) -> list(int)
Append two words delimited by ' '
('+155', 'Bobo')
+155 Bobo
list(char) -> list(char) -> list(char)
prepend-index-k with k=4
([7, 2, 8, 11, 5, 9, 8, 9, 7],)
[11, 7, 2, 8, 11, 5, 9, 8, 9, 7]
list(int) -> list(int)
Prepend 'UCLA'
('MI',)
UCLAMI
list(char) -> list(char)
Append '636'
('C',)
C636
list(char) -> list(char)
tail
([5, 9, 14],)
[9, 14]
list(int) -> list(int)
Extract word delimited by '(' - '('
('Montiel(Temple(Heintz(Teddy',)
Temple
list(char) -> list(char)
nth (n=0) word delimited by '.'
('B.25.Jeanice',)
B
list(char) -> list(char)
remove gt 0
([1, 5, 0, 5, 6],)
[0]
list(int) -> list(int)
slice-k-n with k=1 and n=1
([15, 11, 7, 8, 10, 16],)
[15]
list(int) -> list(int)
kth-smallest with k=4
([13, 12, 15, 1, 7, 3, 16, 10, 12, 14],)
10
list(int) -> int
rotate-k with k=5
([4, 8, 5, 8, 6, 4, 16, 5, 11, 11, 14, 0, 4, 6],)
[11, 14, 0, 4, 6, 4, 8, 5, 8, 6, 4, 16, 5, 11]
list(int) -> list(int)
Take first 2 characters
('Dermody',)
De
list(char) -> list(char)
empty
([],)
True
list(int) -> bool
nth (n=-1) word delimited by '-'
('Alaina-Jacquiline',)
Jacquiline
list(char) -> list(char)
Extract word delimited by ',' - '.'
('86,+161.13,+7',)
+161
list(char) -> list(char)
nth (n=1) word delimited by ')'
('UC)+176)Jeanice)+174',)
+176
list(char) -> list(char)
pop
([14, 15, 8],)
[14, 15]
list(int) -> list(int)
parentheses around first word
('415 +115 484',)
(415)
list(char) -> list(char)
Append 2 strings (I)
('I', '+172')
I+172
list(char) -> list(char) -> list(char)
min
([0],)
0
list(int) -> int
nth (n=1) word delimited by ','
('Tobias,986,FreeHafer,+9',)
986
list(char) -> list(char)
nth (n=1) word delimited by '('
('W(517(+199',)
517
list(char) -> list(char)
keep-mod-k with k=4
([20, 6, 28, 4, 32],)
[20, 28, 4, 32]
list(int) -> list(int)
caesar-cipher-k-modulo-n with k=2 and n=5
([2, 2],)
[4, 4]
list(int) -> list(int)
keep-mod-head
([10, 2, 12, 9],)
[]
list(int) -> list(int)
bool-identify-k with k=1
([6, 1, 1, 1],)
[False, True, True, True]
list(int) -> list(bool)
slice-k-n with k=3 and n=2
([6, 5, 13, 9, 7, 10, 14, 16, 1, 7, 16, 14, 13],)
[13, 9]
list(int) -> list(int)
prepend-k with k=5
([12, 15, 6, 1, 7, 2],)
[5, 12, 15, 6, 1, 7, 2]
list(int) -> list(int)
Append two words delimited by '(,'
('Harvard', '+183')
Harvard(,+183
list(char) -> list(char) -> list(char)
remove eq 0
([4, 4, 1, 4, 5],)
[4, 4, 1, 4, 5]
list(int) -> list(int)
slice-k-n with k=4 and n=4
([12, 8, 6, 4, 5, 10, 8, 11, 9, 9, 16],)
[4, 5, 10, 8]
list(int) -> list(int)
ensure suffix `Andria`
('Hornak 575 MA JacquilineAndria',)
Hornak 575 MA JacquilineAndria
list(char) -> list(char)
slice-k-n with k=1 and n=2
([9, 9, 13, 7, 1],)
[9, 9]
list(int) -> list(int)
remove gt 3
([5, 4, 4, 2, 4],)
[2]
list(int) -> list(int)
First letters of words (IIIIII)
('43 390 Phillip',)
43P
list(char) -> list(char)
nth (n=0) word delimited by ','
('+115,+106',)
+115
list(char) -> list(char)