description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
max
|
([4, 13, 4, 2],)
|
13
|
list(int) -> int
|
replace-all-with-index-k with k=3
|
([2, 14, 16, 10, 9, 6],)
|
[16, 16, 16, 16, 16, 16]
|
list(int) -> list(int)
|
Append two words delimited by ' '
|
('Mariel', 'Harvard')
|
Mariel Harvard
|
list(char) -> list(char) -> list(char)
|
remove-index-k with k=5
|
([3, 12, 15, 12, 1, 5, 15, 15, 2, 10],)
|
[3, 12, 15, 12, 5, 15, 15, 2, 10]
|
list(int) -> list(int)
|
mult-k with k=5
|
([16, 15, 1, 15],)
|
[80, 75, 5, 75]
|
list(int) -> list(int)
|
drop first word delimited by ' '
|
('141 Lashanda',)
|
Lashanda
|
list(char) -> list(char)
|
kth-largest with k=5
|
([0, 8, 7, 16, 13, 3, 8, 0, 13],)
|
8
|
list(int) -> int
|
Drop last 3 characters
|
('Brescia',)
|
Bres
|
list(char) -> list(char)
|
Abbreviate separate words (II)
|
('Gertude', 'Dermody')
|
G.D.
|
list(char) -> list(char) -> list(char)
|
Extract word delimited by ')' - '-'
|
('+60)Lain-Ducati100-Bradford',)
|
Lain
|
list(char) -> list(char)
|
evens
|
([12, 13],)
|
[12]
|
list(int) -> list(int)
|
parentheses around a single word (III)
|
('Park',)
|
(Park)
|
list(char) -> list(char)
|
drop first word delimited by ')'
|
('Heintz)Babiarz)University',)
|
Babiarz)University
|
list(char) -> list(char)
|
prepend-index-k with k=1
|
([5, 0, 0, 13, 1],)
|
[5, 5, 0, 0, 13, 1]
|
list(int) -> list(int)
|
keep-mod-k with k=2
|
([6, 8, 6, 14, 11, 4, 15],)
|
[6, 8, 6, 14, 4]
|
list(int) -> list(int)
|
parentheses around a single word (IIII)
|
('+155',)
|
(+155)
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=4 and n=3
|
([1, 1, 0, 0],)
|
[2, 2, 1, 1]
|
list(int) -> list(int)
|
bool-identify-k with k=1
|
([5, 8, 4, 13, 12],)
|
[False, False, False, False, False]
|
list(int) -> list(bool)
|
remove-index-k with k=5
|
([8, 10, 8, 4, 16, 7, 10, 5, 13],)
|
[8, 10, 8, 4, 7, 10, 5, 13]
|
list(int) -> list(int)
|
range +1 maximum list
|
([4, 7],)
|
[0, 1, 2, 3, 4, 5, 6, 7]
|
list(int) -> list(int)
|
nth (n=0) word delimited by '.'
|
('505.+46',)
|
505
|
list(char) -> list(char)
|
Prepend '170' to first word
|
('of Latimore',)
|
170of
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=3 and n=5
|
([1, 2, 2, 4],)
|
[4, 0, 0, 2]
|
list(int) -> list(int)
|
Append two words delimited by '.-'
|
('Salley', '29')
|
Salley.-29
|
list(char) -> list(char) -> list(char)
|
nth (n=0) word delimited by ' '
|
('268 14 +104',)
|
268
|
list(char) -> list(char)
|
keep-mod-k with k=2
|
([2, 1, 10, 8, 4, 6, 2],)
|
[2, 10, 8, 4, 6, 2]
|
list(int) -> list(int)
|
Prepend '170' to first word
|
('Drexel Maryann',)
|
170Drexel
|
list(char) -> list(char)
|
Append 'Cornell'
|
('Akiyama',)
|
AkiyamaCornell
|
list(char) -> list(char)
|
slice-k-n with k=4 and n=2
|
([6, 7, 9, 2, 4, 16, 11],)
|
[2, 4]
|
list(int) -> list(int)
|
Take first 2 characters
|
('334',)
|
33
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=3 and n=4
|
([1, 3, 2, 3, 2],)
|
[0, 2, 1, 2, 1]
|
list(int) -> list(int)
|
Take first character and append ','
|
('Covelli',)
|
C,
|
list(char) -> list(char)
|
nth (n=-1) word delimited by '-'
|
('473-Nancy-980-166',)
|
166
|
list(char) -> list(char)
|
bool-identify-geq-k with k=3
|
([5, 5, 16],)
|
[True, True, True]
|
list(int) -> list(bool)
|
slice-k-n with k=3 and n=4
|
([13, 11, 15, 0, 16, 16, 1, 2, 16, 11, 2, 13, 14],)
|
[15, 0, 16, 16]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=1 and n=2
|
([1, 0, 1, 1, 1],)
|
[0, 1, 0, 0, 0]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=1 and n=2
|
([1, 0],)
|
[0, 1]
|
list(int) -> list(int)
|
Drop last 5 characters
|
('Mcgaughey',)
|
Mcga
|
list(char) -> list(char)
|
nth (n=0) word delimited by '.'
|
('Bradford.971.+180',)
|
Bradford
|
list(char) -> list(char)
|
Abbreviate words separated by ')'
|
('585)13',)
|
5.1.
|
list(char) -> list(char)
|
bool-identify-k with k=3
|
([3, 3, 3],)
|
[True, True, True]
|
list(int) -> list(bool)
|
First letters of words (III)
|
('+5 Urbana',)
|
+U
|
list(char) -> list(char)
|
Append '636'
|
('Bess',)
|
Bess636
|
list(char) -> list(char)
|
Append two words delimited by '.-'
|
('Mackenzie', '163')
|
Mackenzie.-163
|
list(char) -> list(char) -> list(char)
|
range +1 maximum list
|
([0, 5],)
|
[0, 1, 2, 3, 4, 5]
|
list(int) -> list(int)
|
range +1 maximum list
|
([7, 6],)
|
[0, 1, 2, 3, 4, 5, 6, 7]
|
list(int) -> list(int)
|
mult-k with k=2
|
([0, 2, 0],)
|
[0, 4, 0]
|
list(int) -> list(int)
|
parentheses around a single word (I)
|
('+176',)
|
(+176)
|
list(char) -> list(char)
|
Abbreviate words separated by ','
|
('R,+108',)
|
R.+.
|
list(char) -> list(char)
|
len
|
([13, 11, 10, 12, 13],)
|
5
|
list(int) -> int
|
range +1 maximum list
|
([5, 0],)
|
[0, 1, 2, 3, 4, 5]
|
list(int) -> list(int)
|
ensure suffix `769`
|
('+169 +163 +129 46',)
|
+169 +163 +129 46769
|
list(char) -> list(char)
|
nth (n=1) word delimited by '-'
|
('Launa-Hornak',)
|
Hornak
|
list(char) -> list(char)
|
remove gt 1
|
([6, 1, 4, 4, 1],)
|
[1, 1]
|
list(int) -> list(int)
|
is-evens
|
([5, 7, 14, 0, 13, 5, 9],)
|
False
|
list(int) -> bool
|
Prepend 'Sergienko'
|
('Stefany',)
|
SergienkoStefany
|
list(char) -> list(char)
|
Replace '-' w/ ','
|
('Georgina-Dr-Alida-Acura100',)
|
Georgina,Dr,Alida,Acura100
|
list(char) -> list(char)
|
nth (n=-1) word delimited by ')'
|
('T)+197',)
|
+197
|
list(char) -> list(char)
|
ensure suffix `Scalia`
|
('Angeles T N',)
|
Angeles T NScalia
|
list(char) -> list(char)
|
nth (n=0) word delimited by '-'
|
('64-836-197-Michigan',)
|
64
|
list(char) -> list(char)
|
Append 2 strings (III)
|
('Cambridge', 'Honda550')
|
CambridgeHonda550
|
list(char) -> list(char) -> list(char)
|
parentheses around a single word (I)
|
('Halpern',)
|
(Halpern)
|
list(char) -> list(char)
|
Take first character and append '-'
|
('+158',)
|
+-
|
list(char) -> list(char)
|
index-k with k=4
|
([10, 5, 2, 16, 10, 1, 9, 16, 8, 11, 16],)
|
16
|
list(int) -> int
|
caesar-cipher-k-modulo-n with k=5 and n=4
|
([3, 1, 3],)
|
[0, 2, 0]
|
list(int) -> list(int)
|
Replace '(' w/ ' '
|
('+194(Alaina',)
|
+194 Alaina
|
list(char) -> list(char)
|
append-k with k=2
|
([12, 7, 12],)
|
[12, 7, 12, 2]
|
list(int) -> list(int)
|
Extract word delimited by ',' - ','
|
('Barbara,+86,95,Urbana',)
|
+86
|
list(char) -> list(char)
|
parentheses around word delimited by ' ' & ' '
|
(' California +104,Teddy',)
|
(California) +104,Teddy
|
list(char) -> list(char)
|
repeat
|
([6, 13],)
|
[13, 13, 13, 13, 13, 13]
|
list(int) -> list(int)
|
keep-mod-k with k=3
|
([3, 9, 3, 15, 10],)
|
[3, 9, 3, 15]
|
list(int) -> list(int)
|
Take first 5 characters
|
('Carlene',)
|
Carle
|
list(char) -> list(char)
|
keep eq 0
|
([3, 6, 2, 6, 2],)
|
[]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=1 and n=5
|
([2, 3, 3],)
|
[3, 4, 4]
|
list(int) -> list(int)
|
nth (n=0) word delimited by ','
|
('+115,+106',)
|
+115
|
list(char) -> list(char)
|
Replace '-' w/ ' '
|
('+183-13',)
|
+183 13
|
list(char) -> list(char)
|
append-k with k=0
|
([0, 14],)
|
[0, 14, 0]
|
list(int) -> list(int)
|
drop first word delimited by '.'
|
('Jenee.21.80.Soderstrom',)
|
21.80.Soderstrom
|
list(char) -> list(char)
|
bool-identify-geq-k with k=1
|
([4, 15, 1, 15, 13, 10],)
|
[True, True, True, True, True, True]
|
list(int) -> list(bool)
|
Extract word delimited by ')' - '-'
|
('+144)060-Soderstrom)68',)
|
060
|
list(char) -> list(char)
|
keep gt 2
|
([2, 0, 5, 5, 3],)
|
[5, 5, 3]
|
list(int) -> list(int)
|
remove-mod-k with k=4
|
([12, 9, 4, 16, 6],)
|
[9, 6]
|
list(int) -> list(int)
|
Append two words delimited by ' '
|
('2', '+151')
|
2 +151
|
list(char) -> list(char) -> list(char)
|
nth (n=-1) word delimited by '('
|
('Scalia(65',)
|
65
|
list(char) -> list(char)
|
parentheses around a single word (II)
|
('B',)
|
(B)
|
list(char) -> list(char)
|
nth (n=0) word delimited by '.'
|
('Maryann.705.Barbara',)
|
Maryann
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=1 and n=4
|
([2, 2, 0, 1, 2, 1, 1],)
|
[3, 3, 1, 2, 3, 2, 2]
|
list(int) -> list(int)
|
bool-identify-k with k=5
|
([5, 5, 5, 5, 5],)
|
[True, True, True, True, True]
|
list(int) -> list(bool)
|
drop-k with k=5
|
([4, 14, 0, 12, 7],)
|
[]
|
list(int) -> list(int)
|
First letters of words (I)
|
('Andria Richert 652 Penn',)
|
AR6P
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=1 and n=2
|
([0, 1, 1],)
|
[1, 0, 0]
|
list(int) -> list(int)
|
remove eq 2
|
([4, 2, 4, 5, 1],)
|
[4, 4, 5, 1]
|
list(int) -> list(int)
|
Prepend 'Sergienko'
|
('Barbara',)
|
SergienkoBarbara
|
list(char) -> list(char)
|
nth (n=0) word delimited by ' '
|
('42 597 J',)
|
42
|
list(char) -> list(char)
|
First letters of words (IIIII)
|
('751 Drexel L J',)
|
7DLJ
|
list(char) -> list(char)
|
nth (n=0) word delimited by '-'
|
('Olague-Bradford-+115-N',)
|
Olague
|
list(char) -> list(char)
|
Append two words delimited by '(,'
|
('245', '18')
|
245(,18
|
list(char) -> list(char) -> list(char)
|
Take first character and append '('
|
('Melodi',)
|
M(
|
list(char) -> list(char)
|
Replace ',' w/ '.'
|
('017,Celsa',)
|
017.Celsa
|
list(char) -> list(char)
|
bool-identify-geq-k with k=1
|
([],)
|
[]
|
list(int) -> list(bool)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.