description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
drop first word delimited by '('
|
('Barbara(Temple(Samuel',)
|
Temple(Samuel
|
list(char) -> list(char)
|
nth (n=0) word delimited by ','
|
('MA,B,+95',)
|
MA
|
list(char) -> list(char)
|
Append two words delimited by ')'
|
('Park', 'Hopkins')
|
Park)Hopkins
|
list(char) -> list(char) -> list(char)
|
First letters of words (IIII)
|
('CT FreeHafer Bogle',)
|
CFB
|
list(char) -> list(char)
|
remove gt 2
|
([5, 2, 4, 5, 1],)
|
[2, 1]
|
list(int) -> list(int)
|
nth (n=-1) word delimited by '-'
|
('Alaina-Jacquiline',)
|
Jacquiline
|
list(char) -> list(char)
|
Prepend 'UCLA'
|
('Sergienko',)
|
UCLASergienko
|
list(char) -> list(char)
|
Extract word delimited by ',' - '.'
|
('86,+161.13,+7',)
|
+161
|
list(char) -> list(char)
|
repeat-k with k=5
|
([7, 9, 9, 2],)
|
[7, 9, 9, 2, 7, 9, 9, 2, 7, 9, 9, 2, 7, 9, 9, 2, 7, 9, 9, 2]
|
list(int) -> list(int)
|
Append 2 strings (III)
|
('Tobias', '58')
|
Tobias58
|
list(char) -> list(char) -> list(char)
|
ensure suffix `997`
|
('Quashie Miah',)
|
Quashie Miah997
|
list(char) -> list(char)
|
Append two words delimited by '..'
|
('Spagnoli', 'Hornak')
|
Spagnoli..Hornak
|
list(char) -> list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=5 and n=3
|
([1, 2, 0, 2, 1],)
|
[0, 1, 2, 1, 0]
|
list(int) -> list(int)
|
parentheses around word delimited by ',' & ','
|
(',548,43',)
|
,(548),43
|
list(char) -> list(char)
|
slice-k-n with k=5 and n=3
|
([16, 0, 12, 14, 8, 8, 11, 7, 16, 11, 16, 2, 0, 14],)
|
[8, 8, 11]
|
list(int) -> list(int)
|
add-k with k=5
|
([7, 7, 0],)
|
[12, 12, 5]
|
list(int) -> list(int)
|
append-k with k=4
|
([],)
|
[4]
|
list(int) -> list(int)
|
nth (n=-1) word delimited by ' '
|
('K 358 Jacquiline Columbia',)
|
Columbia
|
list(char) -> list(char)
|
Abbreviate words separated by ')'
|
('+196)253',)
|
+.2.
|
list(char) -> list(char)
|
bool-identify-geq-k with k=2
|
([14, 2, 10, 5, 6],)
|
[True, True, True, True, True]
|
list(int) -> list(bool)
|
Append two words delimited by '-'
|
('Constable', '+197')
|
Constable-+197
|
list(char) -> list(char) -> list(char)
|
modulo-k with k=2
|
([0, 2, 5, 4, 11, 7],)
|
[0, 0, 1, 0, 1, 1]
|
list(int) -> list(int)
|
Replace '-' w/ ' '
|
('+106-Yale-+130-+141',)
|
+106 Yale +130 +141
|
list(char) -> list(char)
|
Append two words delimited by ','
|
('Acura100', '705')
|
Acura100,705
|
list(char) -> list(char) -> list(char)
|
drop-k with k=3
|
([11, 12, 13, 4, 0, 13, 6, 9, 1, 9],)
|
[4, 0, 13, 6, 9, 1, 9]
|
list(int) -> list(int)
|
+1 maximum list
|
([2, 5],)
|
6
|
list(int) -> int
|
Append two words delimited by '..'
|
('Spagnoli', 'Hornak')
|
Spagnoli..Hornak
|
list(char) -> list(char) -> list(char)
|
repeat-many
|
([0, 13, 5, 2, 6],)
|
[]
|
list(int) -> list(int)
|
Abbreviate words separated by '('
|
('Jeanice(Acura',)
|
J.A.
|
list(char) -> list(char)
|
First letters of words (II)
|
('Celsa Latimore',)
|
CL
|
list(char) -> list(char)
|
Drop last 3 characters
|
('Hage',)
|
H
|
list(char) -> list(char)
|
bool-identify-k with k=5
|
([5],)
|
[True]
|
list(int) -> list(bool)
|
nth (n=0) word delimited by '.'
|
('Bradford.971.+180',)
|
Bradford
|
list(char) -> list(char)
|
parentheses around word delimited by ',' & ' '
|
('Dr,+104 45',)
|
Dr,(+104) 45
|
list(char) -> list(char)
|
Extract word delimited by '-' - ')'
|
('T-188)Brendan-736',)
|
188
|
list(char) -> list(char)
|
index-k with k=5
|
([1, 12, 15, 3, 7, 14],)
|
7
|
list(int) -> int
|
add-k with k=4
|
([14, 12, 9, 15, 7],)
|
[18, 16, 13, 19, 11]
|
list(int) -> list(int)
|
ensure suffix `568`
|
('+47 P568',)
|
+47 P568
|
list(char) -> list(char)
|
Prepend 'Hornak'
|
('865',)
|
Hornak865
|
list(char) -> list(char)
|
is-mod-k with k=3
|
([39, 27, 6, 33, 12, 39, 33],)
|
True
|
list(int) -> bool
|
Take first 5 characters
|
('Desiree',)
|
Desir
|
list(char) -> list(char)
|
has-k with k=0
|
([1, 8],)
|
False
|
list(int) -> bool
|
Append two words delimited by '(,'
|
('Ducati100', '+176')
|
Ducati100(,+176
|
list(char) -> list(char) -> list(char)
|
append-index-k with k=2
|
([6, 2, 7, 12, 8, 14, 16, 4, 12],)
|
[6, 2, 7, 12, 8, 14, 16, 4, 12, 2]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=5 and n=3
|
([2],)
|
[1]
|
list(int) -> list(int)
|
Abbreviate separate words (IIII)
|
('S', 'Beata')
|
S.B.
|
list(char) -> list(char) -> list(char)
|
nth (n=1) word delimited by '('
|
('+188(45(+9',)
|
45
|
list(char) -> list(char)
|
nth (n=-1) word delimited by ','
|
('144,Honda550,Hopkins',)
|
Hopkins
|
list(char) -> list(char)
|
keep eq 2
|
([6, 0, 2, 1, 4],)
|
[2]
|
list(int) -> list(int)
|
repeat-many
|
([4, 3],)
|
[3, 3, 3, 3]
|
list(int) -> list(int)
|
Append 2 strings (I)
|
('Georgina', '2')
|
Georgina2
|
list(char) -> list(char) -> list(char)
|
slice-k-n with k=3 and n=3
|
([5, 3, 4, 11, 12, 2, 8, 12],)
|
[4, 11, 12]
|
list(int) -> list(int)
|
slice-k-n with k=4 and n=2
|
([8, 14, 15, 4, 16, 7, 14, 14, 2, 10, 1, 1, 1],)
|
[4, 16]
|
list(int) -> list(int)
|
has-k with k=1
|
([16],)
|
False
|
list(int) -> bool
|
modulo-k with k=1
|
([1, 16, 6, 4, 6, 12],)
|
[0, 0, 0, 0, 0, 0]
|
list(int) -> list(int)
|
Abbreviate separate words (III)
|
('+174', 'Lain')
|
+.L.
|
list(char) -> list(char) -> list(char)
|
dup
|
([7, 2, 4],)
|
[7, 7, 2, 2, 4, 4]
|
list(int) -> list(int)
|
Take first character and append ','
|
('56',)
|
5,
|
list(char) -> list(char)
|
Take first 4 characters
|
('Ducati250',)
|
Duca
|
list(char) -> list(char)
|
Append 'Dermody'
|
('+5',)
|
+5Dermody
|
list(char) -> list(char)
|
is-evens
|
([12, 16, 22, 22, 4, 2, 6],)
|
True
|
list(int) -> bool
|
Prepend '+167' to first word
|
('Launa 845',)
|
+167Launa
|
list(char) -> list(char)
|
drop first word delimited by '-'
|
('Coralee-862',)
|
862
|
list(char) -> list(char)
|
Abbreviate words separated by ')'
|
('585)13',)
|
5.1.
|
list(char) -> list(char)
|
Abbreviate words separated by '-'
|
('Mackenzie-K',)
|
M.K.
|
list(char) -> list(char)
|
range +1 maximum list
|
([3, 6],)
|
[0, 1, 2, 3, 4, 5, 6]
|
list(int) -> list(int)
|
ensure suffix `Columbia`
|
('647 Seamons 40 Teddy',)
|
647 Seamons 40 TeddyColumbia
|
list(char) -> list(char)
|
ensure suffix `Scalia`
|
('Ramthun Beata Chism FreeHaferScalia',)
|
Ramthun Beata Chism FreeHaferScalia
|
list(char) -> list(char)
|
keep eq 3
|
([0, 3, 4, 3, 0],)
|
[3, 3]
|
list(int) -> list(int)
|
append-k with k=2
|
([4, 11, 8, 4, 10],)
|
[4, 11, 8, 4, 10, 2]
|
list(int) -> list(int)
|
Take first 3 characters
|
('Trinidad',)
|
Tri
|
list(char) -> list(char)
|
drop first word delimited by ','
|
('Nancy,Beata,512,864',)
|
Beata,512,864
|
list(char) -> list(char)
|
prepend-k with k=5
|
([10, 9, 8, 16],)
|
[5, 10, 9, 8, 16]
|
list(int) -> list(int)
|
parentheses around word delimited by '-' & '.'
|
('-Haven.80',)
|
-(Haven).80
|
list(char) -> list(char)
|
prepend-index-k with k=1
|
([3, 8, 6, 6, 11],)
|
[3, 3, 8, 6, 6, 11]
|
list(int) -> list(int)
|
Replace ',' w/ '.'
|
('Reily,Madelaine',)
|
Reily.Madelaine
|
list(char) -> list(char)
|
Append 2 strings (IIIIII)
|
('Miah', '81')
|
Miah81
|
list(char) -> list(char) -> list(char)
|
Append 2 strings (IIII)
|
('141', '636')
|
141636
|
list(char) -> list(char) -> list(char)
|
pop
|
([4, 11, 7],)
|
[4, 11]
|
list(int) -> list(int)
|
ensure suffix `Andria`
|
('Madelaine +189Andria',)
|
Madelaine +189Andria
|
list(char) -> list(char)
|
Append 2 strings (I)
|
('Richert', 'NY')
|
RichertNY
|
list(char) -> list(char) -> list(char)
|
prepend-index-k with k=2
|
([11, 6, 10],)
|
[6, 11, 6, 10]
|
list(int) -> list(int)
|
Replace '(' w/ ' '
|
('377(209(+118',)
|
377 209 +118
|
list(char) -> list(char)
|
is-mod-k with k=5
|
([12, 8],)
|
False
|
list(int) -> bool
|
caesar-cipher-k-modulo-n with k=1 and n=2
|
([0, 1, 0, 0, 1, 0],)
|
[1, 0, 1, 1, 0, 1]
|
list(int) -> list(int)
|
Replace ' ' w/ '('
|
('Honda250 Casler Edison',)
|
Honda250(Casler(Edison
|
list(char) -> list(char)
|
Extract word delimited by ')' - '-'
|
('+60)Lain-Ducati100-Bradford',)
|
Lain
|
list(char) -> list(char)
|
count-k with k=5
|
([5, 0],)
|
1
|
list(int) -> int
|
drop first word delimited by ' '
|
('141 Lashanda',)
|
Lashanda
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=4 and n=3
|
([2, 2, 2, 1],)
|
[0, 0, 0, 2]
|
list(int) -> list(int)
|
Abbreviate words separated by '.'
|
('Spagnoli.734',)
|
S.7.
|
list(char) -> list(char)
|
nth (n=1) word delimited by '-'
|
('Launa-Hornak',)
|
Hornak
|
list(char) -> list(char)
|
repeat-k with k=3
|
([1],)
|
[1, 1, 1]
|
list(int) -> list(int)
|
append-index-k with k=5
|
([11, 9, 16, 5, 5, 16, 11, 9],)
|
[11, 9, 16, 5, 5, 16, 11, 9, 5]
|
list(int) -> list(int)
|
ensure suffix `Ramthun`
|
('Bogle Miah Honda250 Trinidad',)
|
Bogle Miah Honda250 TrinidadRamthun
|
list(char) -> list(char)
|
Drop last 3 characters
|
('Brescia',)
|
Bres
|
list(char) -> list(char)
|
nth (n=1) word delimited by ','
|
('473,Phialdelphia',)
|
Phialdelphia
|
list(char) -> list(char)
|
is-primes
|
([5],)
|
True
|
list(int) -> bool
|
replace-all-with-index-k with k=3
|
([11, 5, 2, 1, 4, 8],)
|
[2, 2, 2, 2, 2, 2]
|
list(int) -> list(int)
|
Append 'Dermody'
|
('29',)
|
29Dermody
|
list(char) -> list(char)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.