description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
rotate-k with k=3
|
([15, 9, 4, 8, 5, 5, 11, 4, 5, 11, 4, 11, 13, 15, 14, 8],)
|
[15, 14, 8, 15, 9, 4, 8, 5, 5, 11, 4, 5, 11, 4, 11, 13]
|
list(int) -> list(int)
|
ensure suffix `Scalia`
|
('Angeles T N',)
|
Angeles T NScalia
|
list(char) -> list(char)
|
bool-identify-is-mod-k with k=3
|
([5, 8, 8, 9, 4, 4],)
|
[False, False, False, True, False, False]
|
list(int) -> list(bool)
|
slice-k-n with k=2 and n=3
|
([14, 12, 8, 6, 15, 15, 11, 13, 16, 16, 11, 2, 7],)
|
[12, 8, 6]
|
list(int) -> list(int)
|
slice-k-n with k=3 and n=4
|
([9, 1, 10, 0, 14, 12, 5, 1, 12],)
|
[10, 0, 14, 12]
|
list(int) -> list(int)
|
nth (n=0) word delimited by '.'
|
('Maryann.705.Barbara',)
|
Maryann
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=4 and n=3
|
([1, 1, 0, 0, 1, 0, 0],)
|
[2, 2, 1, 1, 2, 1, 1]
|
list(int) -> list(int)
|
kth-smallest with k=1
|
([3, 14],)
|
3
|
list(int) -> int
|
bool-identify-k with k=5
|
([9, 1, 16],)
|
[False, False, False]
|
list(int) -> list(bool)
|
range
|
(3,)
|
[0, 1, 2]
|
int -> list(int)
|
Drop last 4 characters
|
('Jenee',)
|
J
|
list(char) -> list(char)
|
bool-identify-k with k=1
|
([8, 7],)
|
[False, False]
|
list(int) -> list(bool)
|
modulo-k with k=2
|
([5, 11, 4, 14, 13],)
|
[1, 1, 0, 0, 1]
|
list(int) -> list(int)
|
remove-index-k with k=2
|
([2, 2, 13, 0, 13, 5, 2, 6, 2],)
|
[2, 13, 0, 13, 5, 2, 6, 2]
|
list(int) -> list(int)
|
drop first word delimited by '.'
|
('Jenee.21.80.Soderstrom',)
|
21.80.Soderstrom
|
list(char) -> list(char)
|
Prepend 'Jani'
|
('Ithaca',)
|
JaniIthaca
|
list(char) -> list(char)
|
add-k with k=2
|
([11, 5, 7, 6, 8],)
|
[13, 7, 9, 8, 10]
|
list(int) -> list(int)
|
Extract word delimited by ',' - '.'
|
('504,566.20.F',)
|
566
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=4 and n=3
|
([2, 2, 1, 1, 2, 1, 0],)
|
[0, 0, 2, 2, 0, 2, 1]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=3 and n=4
|
([0, 1, 1, 1, 1, 2],)
|
[3, 0, 0, 0, 0, 1]
|
list(int) -> list(int)
|
drop first word delimited by ')'
|
('Mariel)+195',)
|
+195
|
list(char) -> list(char)
|
drop first word delimited by '('
|
('+9(Urbana',)
|
Urbana
|
list(char) -> list(char)
|
bool-identify-geq-k with k=1
|
([],)
|
[]
|
list(int) -> list(bool)
|
Abbreviate words separated by '('
|
('Jeanice(Acura',)
|
J.A.
|
list(char) -> list(char)
|
is-mod-k with k=1
|
([9, 10, 4],)
|
True
|
list(int) -> bool
|
repeat-k with k=4
|
([3, 5],)
|
[3, 5, 3, 5, 3, 5, 3, 5]
|
list(int) -> list(int)
|
parentheses around a single word (I)
|
('+176',)
|
(+176)
|
list(char) -> list(char)
|
Extract word delimited by ',' - '.'
|
('426,Lain.45,Honda125',)
|
Lain
|
list(char) -> list(char)
|
nth (n=0) word delimited by '('
|
('C(98',)
|
C
|
list(char) -> list(char)
|
Drop last 5 characters
|
('Cencici',)
|
Ce
|
list(char) -> list(char)
|
add-k with k=2
|
([7, 1, 0, 11, 0, 10],)
|
[9, 3, 2, 13, 2, 12]
|
list(int) -> list(int)
|
keep eq 1
|
([5, 5, 0, 1, 4],)
|
[1]
|
list(int) -> list(int)
|
Append 'Beata'
|
('Eccleston',)
|
EcclestonBeata
|
list(char) -> list(char)
|
Prepend 'Jani'
|
('Ithaca',)
|
JaniIthaca
|
list(char) -> list(char)
|
index-k with k=4
|
([5, 11, 2, 10, 13, 9, 13, 16],)
|
10
|
list(int) -> int
|
remove-mod-k with k=3
|
([5, 3, 11],)
|
[5, 11]
|
list(int) -> list(int)
|
ensure suffix `Columbia`
|
('Cambridge MD 875 Ducati125',)
|
Cambridge MD 875 Ducati125Columbia
|
list(char) -> list(char)
|
nth (n=-1) word delimited by ','
|
('144,Honda550,Hopkins',)
|
Hopkins
|
list(char) -> list(char)
|
keep primes
|
([9, 19, 5, 3, 17, 2, 11],)
|
[19, 5, 3, 17, 2, 11]
|
list(int) -> list(int)
|
Append 'Cornell'
|
('715',)
|
715Cornell
|
list(char) -> list(char)
|
pow-k with k=5
|
([],)
|
[]
|
list(int) -> list(int)
|
First letters of words (IIIII)
|
('Dr UC K Rowden',)
|
DUKR
|
list(char) -> list(char)
|
keep gt 3
|
([3, 1, 1, 0, 2],)
|
[]
|
list(int) -> list(int)
|
ensure suffix `769`
|
('Ducati125 A Eccleston +198769',)
|
Ducati125 A Eccleston +198769
|
list(char) -> list(char)
|
bool-identify-is-mod-k with k=1
|
([],)
|
[]
|
list(int) -> list(bool)
|
Take first 2 characters
|
('+2',)
|
+2
|
list(char) -> list(char)
|
mult-k with k=2
|
([13, 14, 2, 8, 0, 14, 3],)
|
[26, 28, 4, 16, 0, 28, 6]
|
list(int) -> list(int)
|
Append 2 strings (IIIII)
|
('Alaina', '7')
|
Alaina7
|
list(char) -> list(char) -> list(char)
|
Append two words delimited by ' '
|
('+155', 'Bobo')
|
+155 Bobo
|
list(char) -> list(char) -> list(char)
|
slice-k-n with k=2 and n=1
|
([16, 15, 9, 11, 12],)
|
[15]
|
list(int) -> list(int)
|
index-k with k=4
|
([4, 5, 2, 14, 6, 9],)
|
14
|
list(int) -> int
|
has-head-in-tail
|
([14, 3, 14, 11],)
|
True
|
list(int) -> bool
|
Replace '(' w/ ')'
|
('+194(+185(+147(Rice',)
|
+194)+185)+147)Rice
|
list(char) -> list(char)
|
remove-mod-head
|
([1, 6, 12, 8, 1, 14, 9],)
|
[]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=2 and n=5
|
([2, 1, 2, 4],)
|
[4, 3, 4, 1]
|
list(int) -> list(int)
|
append-k with k=3
|
([1],)
|
[1, 3]
|
list(int) -> list(int)
|
index-k with k=2
|
([10, 10, 6, 8, 1, 3, 0],)
|
10
|
list(int) -> int
|
ensure suffix `568`
|
('+194 517 Bobo568',)
|
+194 517 Bobo568
|
list(char) -> list(char)
|
Prepend 'Ghoston' to first word
|
('FreeHafer 47',)
|
GhostonFreeHafer
|
list(char) -> list(char)
|
append-k with k=0
|
([7, 7, 13, 12],)
|
[7, 7, 13, 12, 0]
|
list(int) -> list(int)
|
Abbreviate words separated by '.'
|
('T.81',)
|
T.8.
|
list(char) -> list(char)
|
take-k with k=2
|
([7, 16, 11, 2, 2, 5, 12, 2],)
|
[7, 16]
|
list(int) -> list(int)
|
slice-k-n with k=5 and n=5
|
([12, 15, 3, 13, 4, 13, 4, 11, 8, 1, 3, 9, 13, 13],)
|
[4, 13, 4, 11, 8]
|
list(int) -> list(int)
|
slice-k-n with k=2 and n=1
|
([5, 15, 15, 13, 6],)
|
[15]
|
list(int) -> list(int)
|
append-k with k=0
|
([3, 5],)
|
[3, 5, 0]
|
list(int) -> list(int)
|
Abbreviate separate words (III)
|
('692', 'Soderstrom')
|
6.S.
|
list(char) -> list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=2 and n=4
|
([2, 3, 1],)
|
[0, 1, 3]
|
list(int) -> list(int)
|
Prepend '170' to first word
|
('Malissa 500',)
|
170Malissa
|
list(char) -> list(char)
|
remove gt 2
|
([0, 6, 2, 2, 2],)
|
[0, 2, 2, 2]
|
list(int) -> list(int)
|
Extract word delimited by '(' - '('
|
('Andria(Honda125(+75(Malissa',)
|
Honda125
|
list(char) -> list(char)
|
slice-k-n with k=5 and n=2
|
([6, 13, 14, 5, 13, 15, 16, 5, 8, 3, 15, 2, 0, 12, 6],)
|
[13, 15]
|
list(int) -> list(int)
|
Extract word delimited by ',' - ','
|
('7,Soderstrom,S,A',)
|
Soderstrom
|
list(char) -> list(char)
|
Abbreviate separate words (III)
|
('+189', '856')
|
+.8.
|
list(char) -> list(char) -> list(char)
|
Take first character and append ','
|
('Covelli',)
|
C,
|
list(char) -> list(char)
|
drop first word delimited by ' '
|
('Bess Berkeley',)
|
Berkeley
|
list(char) -> list(char)
|
ensure suffix `997`
|
('+163 +129997',)
|
+163 +129997
|
list(char) -> list(char)
|
is-mod-k with k=2
|
([6, 10, 9, 1],)
|
False
|
list(int) -> bool
|
kth-smallest with k=1
|
([3, 3, 12],)
|
3
|
list(int) -> int
|
bool-identify-k with k=5
|
([5, 16, 11, 5],)
|
[True, False, False, True]
|
list(int) -> list(bool)
|
nth (n=0) word delimited by '-'
|
('Jeff-Lara-Karrie',)
|
Jeff
|
list(char) -> list(char)
|
Replace ',' w/ '.'
|
('Ducati,+147',)
|
Ducati.+147
|
list(char) -> list(char)
|
repeat-k with k=2
|
([],)
|
[]
|
list(int) -> list(int)
|
parentheses around word delimited by ' ' & ' '
|
('Honda250 Melodi +9-Kotas',)
|
Honda250 (Melodi) +9-Kotas
|
list(char) -> list(char)
|
max
|
([4, 12],)
|
12
|
list(int) -> int
|
Prepend '086' to first word
|
('35 Lara',)
|
08635
|
list(char) -> list(char)
|
prepend-k with k=1
|
([15, 15, 15, 12, 8, 12],)
|
[1, 15, 15, 15, 12, 8, 12]
|
list(int) -> list(int)
|
has-head-in-tail
|
([7, 7, 7],)
|
True
|
list(int) -> bool
|
Append two words delimited by '..'
|
('568', 'Teddy')
|
568..Teddy
|
list(char) -> list(char) -> list(char)
|
Prepend 'Jani'
|
('Andria',)
|
JaniAndria
|
list(char) -> list(char)
|
bool-identify-geq-k with k=0
|
([12],)
|
[True]
|
list(int) -> list(bool)
|
bool-identify-is-mod-k with k=5
|
([5, 5, 5],)
|
[True, True, True]
|
list(int) -> list(bool)
|
modulo-k with k=2
|
([5, 16, 10, 16, 8, 7],)
|
[1, 0, 0, 0, 0, 1]
|
list(int) -> list(int)
|
kth-smallest with k=1
|
([0, 10, 4, 11, 14],)
|
0
|
list(int) -> int
|
nth (n=-1) word delimited by '.'
|
('Latimore.Joaquin.Bobo.G',)
|
G
|
list(char) -> list(char)
|
nth (n=1) word delimited by '.'
|
('Bogle.Jani',)
|
Jani
|
list(char) -> list(char)
|
range +1 maximum list
|
([5, 2, 3, 1],)
|
[0, 1, 2, 3, 4, 5]
|
list(int) -> list(int)
|
sort
|
([15],)
|
[15]
|
list(int) -> list(int)
|
index-k with k=4
|
([9, 13, 4, 8, 10, 3],)
|
8
|
list(int) -> int
|
Extract word delimited by '(' - '('
|
('Ducati250(+183(Richert(Park',)
|
+183
|
list(char) -> list(char)
|
nth (n=-1) word delimited by '.'
|
('N.Annalisa.Houston',)
|
Houston
|
list(char) -> list(char)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.