description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
Replace ',' w/ '('
|
('+132,Tobias',)
|
+132(Tobias
|
list(char) -> list(char)
|
slice-k-n with k=5 and n=3
|
([6, 8, 14, 14, 10, 8, 3, 15, 3],)
|
[10, 8, 3]
|
list(int) -> list(int)
|
Abbreviate separate words (I)
|
('Irwin', 'Spell')
|
I.S.
|
list(char) -> list(char) -> list(char)
|
parentheses around word delimited by '-' & '.'
|
('-Spell.Rowden Arbor',)
|
-(Spell).Rowden Arbor
|
list(char) -> list(char)
|
First letters of words (IIII)
|
('Ducati250 Lashanda N Barbara',)
|
DLNB
|
list(char) -> list(char)
|
repeat-k with k=4
|
([8, 16],)
|
[8, 16, 8, 16, 8, 16, 8, 16]
|
list(int) -> list(int)
|
remove-mod-k with k=2
|
([10, 11, 7],)
|
[11, 7]
|
list(int) -> list(int)
|
prepend-k with k=1
|
([],)
|
[1]
|
list(int) -> list(int)
|
parentheses around a single word (I)
|
('+176',)
|
(+176)
|
list(char) -> list(char)
|
slice-k-n with k=1 and n=2
|
([8, 6, 10, 14, 3],)
|
[8, 6]
|
list(int) -> list(int)
|
rotate-k with k=5
|
([4, 6, 9, 11, 0, 1, 11, 7, 8, 4, 3, 7],)
|
[7, 8, 4, 3, 7, 4, 6, 9, 11, 0, 1, 11]
|
list(int) -> list(int)
|
has-k with k=3
|
([6, 3, 3, 3],)
|
True
|
list(int) -> bool
|
bool-identify-is-prime
|
([7, 7, 0],)
|
[True, True, False]
|
list(int) -> list(bool)
|
keep primes
|
([9, 11, 7, 3, 5, 6, 8],)
|
[11, 7, 3, 5]
|
list(int) -> list(int)
|
count-k with k=5
|
([14],)
|
0
|
list(int) -> int
|
replace-all-with-index-k with k=1
|
([14, 14],)
|
[14, 14]
|
list(int) -> list(int)
|
Append 2 strings (IIIIII)
|
('Miah', '81')
|
Miah81
|
list(char) -> list(char) -> list(char)
|
Append 'Beata'
|
('092',)
|
092Beata
|
list(char) -> list(char)
|
Append 2 strings (II)
|
('I', 'P')
|
IP
|
list(char) -> list(char) -> list(char)
|
slice-k-n with k=3 and n=1
|
([1, 1, 11, 16, 7, 2],)
|
[11]
|
list(int) -> list(int)
|
remove-mod-k with k=4
|
([0, 12],)
|
[]
|
list(int) -> list(int)
|
drop-k with k=4
|
([0, 13, 4, 2],)
|
[]
|
list(int) -> list(int)
|
Append two words delimited by '.-'
|
('Philadelphia', '6')
|
Philadelphia.-6
|
list(char) -> list(char) -> list(char)
|
remove-mod-k with k=4
|
([28, 6, 20, 16, 5],)
|
[6, 5]
|
list(int) -> list(int)
|
Prepend 'Spell'
|
('Aylward',)
|
SpellAylward
|
list(char) -> list(char)
|
product
|
([0],)
|
0
|
list(int) -> int
|
Abbreviate words separated by ','
|
('Trinidad,58',)
|
T.5.
|
list(char) -> list(char)
|
slice-k-n with k=2 and n=2
|
([8, 1, 15, 13, 12, 15, 14, 11, 13, 2, 5],)
|
[1, 15]
|
list(int) -> list(int)
|
Replace '-' w/ ' '
|
('+106-Yale-+130-+141',)
|
+106 Yale +130 +141
|
list(char) -> list(char)
|
min
|
([16, 11, 13],)
|
11
|
list(int) -> int
|
has-k with k=5
|
([2, 8, 0, 14, 3, 10],)
|
False
|
list(int) -> bool
|
Append 'Angeles'
|
('Celsa',)
|
CelsaAngeles
|
list(char) -> list(char)
|
Extract word delimited by ',' - ','
|
('Barbara,+86,95,Urbana',)
|
+86
|
list(char) -> list(char)
|
parentheses around word delimited by '.' & ','
|
('476.47,017',)
|
476.(47),017
|
list(char) -> list(char)
|
Replace ',' w/ '('
|
('820,Connecticut',)
|
820(Connecticut
|
list(char) -> list(char)
|
Abbreviate separate words (IIIII)
|
('Mulloy', 'V')
|
M.V.
|
list(char) -> list(char) -> list(char)
|
append-k with k=5
|
([5],)
|
[5, 5]
|
list(int) -> list(int)
|
mult-k with k=0
|
([7],)
|
[0]
|
list(int) -> list(int)
|
nth (n=1) word delimited by ')'
|
('UC)+176)Jeanice)+174',)
|
+176
|
list(char) -> list(char)
|
replace-all-with-index-k with k=4
|
([0, 10, 8, 9, 8, 1, 9, 3],)
|
[9, 9, 9, 9, 9, 9, 9, 9]
|
list(int) -> list(int)
|
nth (n=-1) word delimited by ')'
|
('+151)50)Withers',)
|
Withers
|
list(char) -> list(char)
|
nth (n=1) word delimited by ','
|
('Sergienko,009,Jacquiline,Sergienko',)
|
009
|
list(char) -> list(char)
|
bool-identify-is-mod-k with k=3
|
([],)
|
[]
|
list(int) -> list(bool)
|
has-k with k=5
|
([],)
|
False
|
list(int) -> bool
|
Append two words delimited by ' '
|
('051', '+174')
|
051 +174
|
list(char) -> list(char) -> list(char)
|
Drop last 2 characters
|
('MI',)
| null |
list(char) -> list(char)
|
Abbreviate words separated by ' '
|
('Annalisa College',)
|
A.C.
|
list(char) -> list(char)
|
bool-identify-k with k=5
|
([16],)
|
[False]
|
list(int) -> list(bool)
|
Append '636'
|
('Bess',)
|
Bess636
|
list(char) -> list(char)
|
modulo-k with k=5
|
([7, 15],)
|
[2, 0]
|
list(int) -> list(int)
|
bool-identify-geq-k with k=1
|
([-3, -3],)
|
[False, False]
|
list(int) -> list(bool)
|
nth (n=-1) word delimited by ')'
|
('539)027)42',)
|
42
|
list(char) -> list(char)
|
Append 2 strings (IIIIII)
|
('Garrard', '+141')
|
Garrard+141
|
list(char) -> list(char) -> list(char)
|
keep-mod-k with k=5
|
([8, 13, 8, 0, 14, 0],)
|
[0, 0]
|
list(int) -> list(int)
|
add-k with k=3
|
([],)
|
[]
|
list(int) -> list(int)
|
nth (n=-1) word delimited by ' '
|
('K 358 Jacquiline Columbia',)
|
Columbia
|
list(char) -> list(char)
|
ensure suffix `Andria`
|
('Hornak 575 MA JacquilineAndria',)
|
Hornak 575 MA JacquilineAndria
|
list(char) -> list(char)
|
Append two words delimited by ' '
|
('35', 'Rowden')
|
35 Rowden
|
list(char) -> list(char) -> list(char)
|
slice-k-n with k=4 and n=4
|
([6, 4, 5, 10, 15, 4, 6, 16, 15, 15, 12],)
|
[10, 15, 4, 6]
|
list(int) -> list(int)
|
mult-k with k=0
|
([3, 8, 1, 13, 5],)
|
[0, 0, 0, 0, 0]
|
list(int) -> list(int)
|
Extract word delimited by ',' - '.'
|
('504,566.20.F',)
|
566
|
list(char) -> list(char)
|
prepend-index-k with k=3
|
([5, 10, 5, 16],)
|
[5, 5, 10, 5, 16]
|
list(int) -> list(int)
|
replace-all-with-index-k with k=5
|
([8, 7, 16, 9, 3, 15],)
|
[3, 3, 3, 3, 3, 3]
|
list(int) -> list(int)
|
nth (n=0) word delimited by ','
|
('Neil,Heintz,Malissa,Berkeley',)
|
Neil
|
list(char) -> list(char)
|
nth (n=1) word delimited by '-'
|
('504-Jeanice-K',)
|
Jeanice
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=5 and n=2
|
([],)
|
[]
|
list(int) -> list(int)
|
Abbreviate words separated by '('
|
('048(Joaquin',)
|
0.J.
|
list(char) -> list(char)
|
Replace '-' w/ ' '
|
('+106-Yale-+130-+141',)
|
+106 Yale +130 +141
|
list(char) -> list(char)
|
Append two words delimited by ' -'
|
('2', 'J')
|
2 -J
|
list(char) -> list(char) -> list(char)
|
Append two words delimited by '(,'
|
('Harvard', '+183')
|
Harvard(,+183
|
list(char) -> list(char) -> list(char)
|
Append 'Beata'
|
('997',)
|
997Beata
|
list(char) -> list(char)
|
Abbreviate separate words (IIIII)
|
('Ducati125', '46')
|
D.4.
|
list(char) -> list(char) -> list(char)
|
prepend-index-k with k=3
|
([15, 12, 9, 14, 7, 9],)
|
[9, 15, 12, 9, 14, 7, 9]
|
list(int) -> list(int)
|
Drop last 2 characters
|
('MI',)
| null |
list(char) -> list(char)
|
modulo-k with k=2
|
([2, 0, 1, 11, 11, 10],)
|
[0, 0, 1, 1, 1, 0]
|
list(int) -> list(int)
|
ensure suffix `568`
|
('+194 517 Bobo568',)
|
+194 517 Bobo568
|
list(char) -> list(char)
|
Abbreviate words separated by '('
|
('G(Partida',)
|
G.P.
|
list(char) -> list(char)
|
bool-identify-k with k=4
|
([2, 7, 3, 3],)
|
[False, False, False, False]
|
list(int) -> list(bool)
|
Append 'Angeles'
|
('Celsa',)
|
CelsaAngeles
|
list(char) -> list(char)
|
bool-identify-is-prime
|
([7, 6, 11],)
|
[True, False, True]
|
list(int) -> list(bool)
|
Take first character and append '.'
|
('+189',)
|
+.
|
list(char) -> list(char)
|
Replace '-' w/ ','
|
('834-Cruz-+197-Clasen',)
|
834,Cruz,+197,Clasen
|
list(char) -> list(char)
|
reverse
|
([9, 10, 5, 8, 3],)
|
[3, 8, 5, 10, 9]
|
list(int) -> list(int)
|
Abbreviate words separated by ')'
|
('+196)253',)
|
+.2.
|
list(char) -> list(char)
|
Take first character and append '-'
|
('+158',)
|
+-
|
list(char) -> list(char)
|
bool-identify-geq-k with k=3
|
([5, 5, 16],)
|
[True, True, True]
|
list(int) -> list(bool)
|
replace-all-with-index-k with k=3
|
([5, 11, 5, 1, 16, 1],)
|
[5, 5, 5, 5, 5, 5]
|
list(int) -> list(int)
|
nth (n=-1) word delimited by '-'
|
('Alaina-Jacquiline',)
|
Jacquiline
|
list(char) -> list(char)
|
keep-mod-k with k=5
|
([15, 1, 20, 2, 2],)
|
[15, 20]
|
list(int) -> list(int)
|
Extract word delimited by ')' - '-'
|
('141)Penn-Jani-Clasen',)
|
Penn
|
list(char) -> list(char)
|
Prepend 'Spell'
|
('+197',)
|
Spell+197
|
list(char) -> list(char)
|
keep-mod-k with k=4
|
([2, 7, 3, 3],)
|
[]
|
list(int) -> list(int)
|
Append two words delimited by '. '
|
('62', 'Mackenzie')
|
62. Mackenzie
|
list(char) -> list(char) -> list(char)
|
Take first character and append ')'
|
('83',)
|
8)
|
list(char) -> list(char)
|
Prepend 'Spell'
|
('+197',)
|
Spell+197
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=1 and n=4
|
([],)
|
[]
|
list(int) -> list(int)
|
remove-index-k with k=5
|
([5, 0, 0, 13, 1, 16, 0, 9, 3],)
|
[5, 0, 0, 13, 16, 0, 9, 3]
|
list(int) -> list(int)
|
slice-k-n with k=4 and n=3
|
([1, 6, 5, 2, 6, 7, 15, 5, 5, 7],)
|
[2, 6, 7]
|
list(int) -> list(int)
|
Take first 2 characters
|
('334',)
|
33
|
list(char) -> list(char)
|
is-primes
|
([2, 0],)
|
False
|
list(int) -> bool
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.