description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
Replace ',' w/ '.'
|
('Ducati,+147',)
|
Ducati.+147
|
list(char) -> list(char)
|
Drop last 3 characters
|
('012',)
| null |
list(char) -> list(char)
|
Append 2 strings (III)
|
('35', '981')
|
35981
|
list(char) -> list(char) -> list(char)
|
nth (n=0) word delimited by '.'
|
('Maryann.705.Barbara',)
|
Maryann
|
list(char) -> list(char)
|
has-k with k=5
|
([10, 0, 15, 9, 13],)
|
False
|
list(int) -> bool
|
keep eq 3
|
([2, 0, 0, 0, 3],)
|
[3]
|
list(int) -> list(int)
|
Prepend 'Carlene' to first word
|
('Gertude +198',)
|
CarleneGertude
|
list(char) -> list(char)
|
remove-mod-k with k=3
|
([7],)
|
[7]
|
list(int) -> list(int)
|
Prepend 'Spell'
|
('Aylward',)
|
SpellAylward
|
list(char) -> list(char)
|
bool-identify-is-mod-k with k=5
|
([5],)
|
[True]
|
list(int) -> list(bool)
|
Replace '-' w/ ' '
|
('+183-13',)
|
+183 13
|
list(char) -> list(char)
|
Append two words delimited by '-'
|
('+196', 'O')
|
+196-O
|
list(char) -> list(char) -> list(char)
|
Drop last 3 characters
|
('012',)
| null |
list(char) -> list(char)
|
prepend-k with k=3
|
([10, 0, 8, 0],)
|
[3, 10, 0, 8, 0]
|
list(int) -> list(int)
|
bool-identify-is-mod-k with k=2
|
([2, 6],)
|
[True, True]
|
list(int) -> list(bool)
|
replace-all-with-index-k with k=5
|
([12, 13, 9, 8, 3, 4, 5],)
|
[3, 3, 3, 3, 3, 3, 3]
|
list(int) -> list(int)
|
rotate-k with k=3
|
([5, 4, 5, 2, 14, 6, 9, 15, 1, 1, 7, 3, 11],)
|
[7, 3, 11, 5, 4, 5, 2, 14, 6, 9, 15, 1, 1]
|
list(int) -> list(int)
|
Abbreviate separate words (IIIIII)
|
('O', 'Dr')
|
O.D.
|
list(char) -> list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=3 and n=2
|
([],)
|
[]
|
list(int) -> list(int)
|
slice-k-n with k=1 and n=4
|
([15, 13, 11, 10, 5, 14, 11, 13, 6, 5],)
|
[15, 13, 11, 10]
|
list(int) -> list(int)
|
append-index-k with k=3
|
([6, 15, 6, 15, 5, 13],)
|
[6, 15, 6, 15, 5, 13, 6]
|
list(int) -> list(int)
|
bool-identify-is-prime
|
([5],)
|
[True]
|
list(int) -> list(bool)
|
index-k with k=3
|
([16, 1, 14],)
|
14
|
list(int) -> int
|
nth (n=1) word delimited by ')'
|
('R)+144',)
|
+144
|
list(char) -> list(char)
|
replace-all-with-index-k with k=1
|
([16, 15, 10, 14, 4, 15, 10, 14],)
|
[16, 16, 16, 16, 16, 16, 16, 16]
|
list(int) -> list(int)
|
keep squares
|
([4, 9, 1, 16, 1, 25, 9],)
|
[4, 9, 1, 16, 1, 25, 9]
|
list(int) -> list(int)
|
append-k with k=1
|
([4, 0, 6, 13, 5, 15, 6],)
|
[4, 0, 6, 13, 5, 15, 6, 1]
|
list(int) -> list(int)
|
slice-k-n with k=1 and n=1
|
([14, 1, 5, 9, 0, 15, 14, 9, 12, 13],)
|
[14]
|
list(int) -> list(int)
|
repeat-k with k=5
|
([1, 6],)
|
[1, 6, 1, 6, 1, 6, 1, 6, 1, 6]
|
list(int) -> list(int)
|
add-k with k=3
|
([9, 14, 9],)
|
[12, 17, 12]
|
list(int) -> list(int)
|
parentheses around word delimited by ',' & ','
|
('100,066,Annalisa',)
|
100,(066),Annalisa
|
list(char) -> list(char)
|
is-mod-k with k=3
|
([1, 6, 11, 14, 7, 6, 2],)
|
False
|
list(int) -> bool
|
is-mod-k with k=4
|
([8],)
|
True
|
list(int) -> bool
|
last
|
([1, 2, 3],)
|
3
|
list(int) -> int
|
prepend-index-k with k=5
|
([3, 7, 1, 14, 7, 1, 10, 4, 2, 6],)
|
[7, 3, 7, 1, 14, 7, 1, 10, 4, 2, 6]
|
list(int) -> list(int)
|
nth (n=-1) word delimited by ')'
|
('T)+197',)
|
+197
|
list(char) -> list(char)
|
add-k with k=3
|
([1, 9, 7, 8],)
|
[4, 12, 10, 11]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=4 and n=5
|
([2, 2],)
|
[1, 1]
|
list(int) -> list(int)
|
nth (n=-1) word delimited by '.'
|
('Latimore.Joaquin.Bobo.G',)
|
G
|
list(char) -> list(char)
|
prepend-k with k=4
|
([1, 14, 7, 14, 10],)
|
[4, 1, 14, 7, 14, 10]
|
list(int) -> list(int)
|
slice-k-n with k=1 and n=5
|
([10, 12, 3, 12, 5, 14, 2, 5, 1, 13],)
|
[10, 12, 3, 12, 5]
|
list(int) -> list(int)
|
remove-index-k with k=1
|
([12, 15, 10, 10, 3, 8, 1],)
|
[15, 10, 10, 3, 8, 1]
|
list(int) -> list(int)
|
Take first 4 characters
|
('Haven',)
|
Have
|
list(char) -> list(char)
|
Append 2 strings (III)
|
('35', '981')
|
35981
|
list(char) -> list(char) -> list(char)
|
bool-identify-k with k=3
|
([],)
|
[]
|
list(int) -> list(bool)
|
nth (n=1) word delimited by ')'
|
('Mariel)Carlene)Ducati100)Jeff',)
|
Carlene
|
list(char) -> list(char)
|
nth (n=-1) word delimited by '.'
|
('+118.Mulloy.56',)
|
56
|
list(char) -> list(char)
|
sort-and-deduplicate
|
([1, 0, 3, 9, 2],)
|
[0, 1, 2, 3, 9]
|
list(int) -> list(int)
|
Prepend 'Carlene' to first word
|
('+155 45',)
|
Carlene+155
|
list(char) -> list(char)
|
drop-k with k=1
|
([13, 2],)
|
[2]
|
list(int) -> list(int)
|
mult-k with k=4
|
([15],)
|
[60]
|
list(int) -> list(int)
|
drop-k with k=3
|
([16, 9, 15, 4],)
|
[4]
|
list(int) -> list(int)
|
sort-and-deduplicate
|
([1, 6, 2, 4],)
|
[1, 2, 4, 6]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=3 and n=4
|
([2, 0],)
|
[1, 3]
|
list(int) -> list(int)
|
Abbreviate words separated by ')'
|
('585)13',)
|
5.1.
|
list(char) -> list(char)
|
modulo-k with k=3
|
([6, 8, 1, 3],)
|
[0, 2, 1, 0]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=2 and n=4
|
([],)
|
[]
|
list(int) -> list(int)
|
Append two words delimited by '.-'
|
('Philadelphia', '6')
|
Philadelphia.-6
|
list(char) -> list(char) -> list(char)
|
nth (n=0) word delimited by '('
|
('Lango(Desiree',)
|
Lango
|
list(char) -> list(char)
|
take-k with k=1
|
([10, 13, 10, 5],)
|
[10]
|
list(int) -> list(int)
|
drop first word delimited by '.'
|
('Jenee.21.80.Soderstrom',)
|
21.80.Soderstrom
|
list(char) -> list(char)
|
rotate-k with k=4
|
([8, 0, 13, 13, 1, 8, 8, 4, 5],)
|
[8, 8, 4, 5, 8, 0, 13, 13, 1]
|
list(int) -> list(int)
|
parentheses around a single word (IIIII)
|
('Acura',)
|
(Acura)
|
list(char) -> list(char)
|
Drop last 2 characters
|
('Nancy',)
|
Nan
|
list(char) -> list(char)
|
Take first character and append ','
|
('546',)
|
5,
|
list(char) -> list(char)
|
append-k with k=3
|
([12, 15, 12],)
|
[12, 15, 12, 3]
|
list(int) -> list(int)
|
prepend-index-k with k=3
|
([11, 3, 1, 8, 15, 7, 7, 14, 1],)
|
[1, 11, 3, 1, 8, 15, 7, 7, 14, 1]
|
list(int) -> list(int)
|
nth (n=0) word delimited by '('
|
('B(23',)
|
B
|
list(char) -> list(char)
|
First letters of words (III)
|
('000 Dermody +196',)
|
0D+
|
list(char) -> list(char)
|
mult-k with k=2
|
([],)
|
[]
|
list(int) -> list(int)
|
slice-k-n with k=2 and n=3
|
([7, 15, 11, 10, 13, 6, 9, 7, 2, 9, 4, 6, 4],)
|
[15, 11, 10]
|
list(int) -> list(int)
|
reverse
|
([14, 12],)
|
[12, 14]
|
list(int) -> list(int)
|
bool-identify-k with k=0
|
([16, 12, 15],)
|
[False, False, False]
|
list(int) -> list(bool)
|
kth-smallest with k=1
|
([12, 14, 13],)
|
12
|
list(int) -> int
|
Take first character and append ' '
|
('Jan',)
|
J
|
list(char) -> list(char)
|
drop first word delimited by ' '
|
('Bess Berkeley',)
|
Berkeley
|
list(char) -> list(char)
|
Replace '-' w/ ' '
|
('759-Bogle',)
|
759 Bogle
|
list(char) -> list(char)
|
take-k with k=5
|
([10, 5, 1, 13, 10, 8, 9, 10, 13, 7, 5],)
|
[10, 5, 1, 13, 10]
|
list(int) -> list(int)
|
replace-all-with-index-k with k=4
|
([0, 4, 2, 5],)
|
[5, 5, 5, 5]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=5 and n=2
|
([0],)
|
[1]
|
list(int) -> list(int)
|
parentheses around a single word (III)
|
('Lain',)
|
(Lain)
|
list(char) -> list(char)
|
slice-k-n with k=1 and n=2
|
([10, 13, 8, 0, 11, 12, 14, 7, 9, 8],)
|
[10, 13]
|
list(int) -> list(int)
|
Extract word delimited by '(' - '('
|
('Montiel(Temple(Heintz(Teddy',)
|
Temple
|
list(char) -> list(char)
|
Take first 5 characters
|
('Ducati250',)
|
Ducat
|
list(char) -> list(char)
|
keep-mod-k with k=3
|
([],)
|
[]
|
list(int) -> list(int)
|
bool-identify-is-mod-k with k=5
|
([13, 5, 5, 8],)
|
[False, True, True, False]
|
list(int) -> list(bool)
|
Abbreviate separate words (IIII)
|
('413', 'Acura')
|
4.A.
|
list(char) -> list(char) -> list(char)
|
keep-mod-k with k=2
|
([4, 9, 4, 4],)
|
[4, 4, 4]
|
list(int) -> list(int)
|
prepend-k with k=1
|
([16, 9, 10, 8, 8, 1, 0],)
|
[1, 16, 9, 10, 8, 8, 1, 0]
|
list(int) -> list(int)
|
has-k with k=4
|
([9, 4, 3, 4],)
|
True
|
list(int) -> bool
|
has-k with k=2
|
([0, 2],)
|
True
|
list(int) -> bool
|
drop first word delimited by ' '
|
('386 Georgina 720 141',)
|
Georgina 720 141
|
list(char) -> list(char)
|
remove empty lists
|
([[False, True], [True, False], [True, False], [True, False, True]],)
|
[[False, True], [True, False], [True, False], [True, False, True]]
|
list(list(bool)) -> list(list(bool))
|
Abbreviate words separated by '.'
|
('Cambridge.6',)
|
C.6.
|
list(char) -> list(char)
|
nth (n=0) word delimited by '-'
|
('+172-Penn-Chilcott-E',)
|
+172
|
list(char) -> list(char)
|
remove eq 2
|
([2, 5, 5, 4, 6],)
|
[5, 5, 4, 6]
|
list(int) -> list(int)
|
Drop last 4 characters
|
('Andria',)
|
An
|
list(char) -> list(char)
|
drop first word delimited by '-'
|
('62-Temple',)
|
Temple
|
list(char) -> list(char)
|
repeat-many
|
([1, 0, 1],)
|
[0, 1]
|
list(int) -> list(int)
|
Abbreviate words separated by '-'
|
('Cruz-150',)
|
C.1.
|
list(char) -> list(char)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.