description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
slice-k-n with k=2 and n=3
|
([14, 11, 0, 1, 0, 12, 14, 10, 7],)
|
[11, 0, 1]
|
list(int) -> list(int)
|
keep gt 0
|
([0, 2, 6, 0, 4],)
|
[2, 6, 4]
|
list(int) -> list(int)
|
append-index-k with k=5
|
([7, 7, 5, 15, 2],)
|
[7, 7, 5, 15, 2, 2]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=1 and n=3
|
([0, 0, 0, 2, 2],)
|
[1, 1, 1, 0, 0]
|
list(int) -> list(int)
|
Prepend 'Sergienko'
|
('F',)
|
SergienkoF
|
list(char) -> list(char)
|
Replace '-' w/ ','
|
('2-FreeHafer-+188',)
|
2,FreeHafer,+188
|
list(char) -> list(char)
|
Take first character and append '('
|
('Melodi',)
|
M(
|
list(char) -> list(char)
|
Prepend '+174'
|
('S',)
|
+174S
|
list(char) -> list(char)
|
keep-mod-k with k=5
|
([],)
|
[]
|
list(int) -> list(int)
|
nth (n=0) word delimited by '('
|
('C(98',)
|
C
|
list(char) -> list(char)
|
Extract word delimited by ')' - '-'
|
('141)Penn-Jani-Clasen',)
|
Penn
|
list(char) -> list(char)
|
Replace '(' w/ ')'
|
('+194(+185(+147(Rice',)
|
+194)+185)+147)Rice
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=1 and n=5
|
([],)
|
[]
|
list(int) -> list(int)
|
Append 2 strings (IIIII)
|
('Soderstrom', '+199')
|
Soderstrom+199
|
list(char) -> list(char) -> list(char)
|
max
|
([4, 9],)
|
9
|
list(int) -> int
|
pop
|
([9, 14],)
|
[9]
|
list(int) -> list(int)
|
nth (n=-1) word delimited by '('
|
('N(Spell(Babiarz(MD',)
|
MD
|
list(char) -> list(char)
|
parentheses around a single word (I)
|
('+140',)
|
(+140)
|
list(char) -> list(char)
|
First letters of words (I)
|
('C 461 +140 Phillip',)
|
C4+P
|
list(char) -> list(char)
|
slice-k-n with k=4 and n=1
|
([0, 0, 3, 2, 15, 14, 2],)
|
[2]
|
list(int) -> list(int)
|
Extract word delimited by ')' - '-'
|
('+144)060-Soderstrom)68',)
|
060
|
list(char) -> list(char)
|
keep eq 1
|
([6, 6, 4, 2, 3],)
|
[]
|
list(int) -> list(int)
|
Append 2 strings (IIII)
|
('426', '369')
|
426369
|
list(char) -> list(char) -> list(char)
|
parentheses around a single word (III)
|
('NY',)
|
(NY)
|
list(char) -> list(char)
|
nth (n=0) word delimited by '('
|
('C(98',)
|
C
|
list(char) -> list(char)
|
slice-k-n with k=1 and n=4
|
([15, 10, 11, 14, 12, 12, 14],)
|
[15, 10, 11, 14]
|
list(int) -> list(int)
|
slice-k-n with k=3 and n=3
|
([8, 13, 13, 11, 6, 15, 7, 8, 5, 10, 1],)
|
[13, 11, 6]
|
list(int) -> list(int)
|
append-k with k=2
|
([4, 5, 15, 0],)
|
[4, 5, 15, 0, 2]
|
list(int) -> list(int)
|
append-k with k=1
|
([15, 5, 12, 2, 8],)
|
[15, 5, 12, 2, 8, 1]
|
list(int) -> list(int)
|
append-k with k=0
|
([14, 1, 4, 15, 11],)
|
[14, 1, 4, 15, 11, 0]
|
list(int) -> list(int)
|
Extract word delimited by ',' - ','
|
('Jeff,Scalia,Gertude,877',)
|
Scalia
|
list(char) -> list(char)
|
remove-index-k with k=4
|
([6, 7, 13, 8, 13, 16, 7, 10],)
|
[6, 7, 13, 13, 16, 7, 10]
|
list(int) -> list(int)
|
slice-k-n with k=1 and n=4
|
([9, 6, 11, 4, 14, 7, 16, 7, 3],)
|
[9, 6, 11, 4]
|
list(int) -> list(int)
|
reverse
|
([2, 5, 4, 2, 0, 5, 1, 1],)
|
[1, 1, 5, 0, 2, 4, 5, 2]
|
list(int) -> list(int)
|
replace-all-with-index-k with k=2
|
([9, 10, 9, 13, 0],)
|
[10, 10, 10, 10, 10]
|
list(int) -> list(int)
|
Prepend '+174'
|
('52',)
|
+17452
|
list(char) -> list(char)
|
Take first character and append ')'
|
('DPhiladelphia',)
|
D)
|
list(char) -> list(char)
|
nth (n=-1) word delimited by ')'
|
('T)+197',)
|
+197
|
list(char) -> list(char)
|
bool-identify-geq-k with k=4
|
([2, 15],)
|
[False, True]
|
list(int) -> list(bool)
|
Take first character and append ','
|
('Ramthun',)
|
R,
|
list(char) -> list(char)
|
nth (n=-1) word delimited by '-'
|
('Alaina-Jacquiline',)
|
Jacquiline
|
list(char) -> list(char)
|
mult-k with k=4
|
([1, 12, 8, 11, 2, 7],)
|
[4, 48, 32, 44, 8, 28]
|
list(int) -> list(int)
|
Drop last 4 characters
|
('Andria',)
|
An
|
list(char) -> list(char)
|
Prepend 'Spell'
|
('+105',)
|
Spell+105
|
list(char) -> list(char)
|
slice-k-n with k=1 and n=1
|
([16, 4, 9, 6, 6, 1],)
|
[16]
|
list(int) -> list(int)
|
Prepend '+167' to first word
|
('+169 29',)
|
+167+169
|
list(char) -> list(char)
|
nth (n=0) word delimited by ','
|
('R,Miah,Arbor',)
|
R
|
list(char) -> list(char)
|
Append 'Dermody'
|
('Columbia',)
|
ColumbiaDermody
|
list(char) -> list(char)
|
add-k with k=3
|
([],)
|
[]
|
list(int) -> list(int)
|
Append 2 strings (IIIII)
|
('Madelaine', '29')
|
Madelaine29
|
list(char) -> list(char) -> list(char)
|
has-k with k=2
|
([1, 7, 3, 2, 3],)
|
True
|
list(int) -> bool
|
Abbreviate words separated by '-'
|
('941-162',)
|
9.1.
|
list(char) -> list(char)
|
pow-k with k=2
|
([15],)
|
[225]
|
list(int) -> list(int)
|
replace-all-with-index-k with k=2
|
([4, 16, 6, 0, 5, 10],)
|
[16, 16, 16, 16, 16, 16]
|
list(int) -> list(int)
|
Replace '(' w/ ')'
|
('14(Micha',)
|
14)Micha
|
list(char) -> list(char)
|
Take first character and append '('
|
('Melodi',)
|
M(
|
list(char) -> list(char)
|
slice-k-n with k=2 and n=3
|
([2, 15, 1, 6, 7, 10, 1, 8, 8, 7, 8],)
|
[15, 1, 6]
|
list(int) -> list(int)
|
has-k with k=5
|
([3, 6, 1, 15, 12, 13],)
|
False
|
list(int) -> bool
|
nth (n=0) word delimited by '('
|
('B(23',)
|
B
|
list(char) -> list(char)
|
slice-k-n with k=1 and n=5
|
([7, 8, 2, 14, 6, 14, 5, 5],)
|
[7, 8, 2, 14, 6]
|
list(int) -> list(int)
|
take-k with k=2
|
([14, 2, 11, 4, 1, 6, 11, 4, 1],)
|
[14, 2]
|
list(int) -> list(int)
|
parentheses around word delimited by ',' & ' '
|
('29,10 Stefany +158',)
|
29,(10) Stefany +158
|
list(char) -> list(char)
|
Abbreviate separate words (IIIIII)
|
('O', 'Dr')
|
O.D.
|
list(char) -> list(char) -> list(char)
|
Append two words delimited by '. '
|
('771', '5')
|
771. 5
|
list(char) -> list(char) -> list(char)
|
ensure suffix `568`
|
('+23 10 IL 844',)
|
+23 10 IL 844568
|
list(char) -> list(char)
|
count-k with k=3
|
([11, 0, 3, 3, 3, 3, 3],)
|
5
|
list(int) -> int
|
count-k with k=5
|
([0, 1, 2, 14, 3, 9, 12],)
|
0
|
list(int) -> int
|
has-k with k=1
|
([16, 10, 7, 12, 13, 3],)
|
False
|
list(int) -> bool
|
Take first 2 characters
|
('+2',)
|
+2
|
list(char) -> list(char)
|
Extract word delimited by '(' - '('
|
('Montiel(Temple(Heintz(Teddy',)
|
Temple
|
list(char) -> list(char)
|
Prepend '086' to first word
|
('Ducati Penn',)
|
086Ducati
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=2 and n=5
|
([],)
|
[]
|
list(int) -> list(int)
|
Append 2 strings (IIII)
|
('Seamons', 'Lakenya')
|
SeamonsLakenya
|
list(char) -> list(char) -> list(char)
|
index-k with k=4
|
([1, 1, 7, 3, 11, 16, 4, 10, 7, 5, 7],)
|
3
|
list(int) -> int
|
Append two words delimited by ' '
|
('Lain', 'Irwin')
|
Lain Irwin
|
list(char) -> list(char) -> list(char)
|
Replace '(' w/ '.'
|
('C(40',)
|
C.40
|
list(char) -> list(char)
|
Extract word delimited by '(' - '('
|
('Ducati250(+183(Richert(Park',)
|
+183
|
list(char) -> list(char)
|
Replace '.' w/ ')'
|
('83.Ramthun',)
|
83)Ramthun
|
list(char) -> list(char)
|
take-k with k=1
|
([4, 9, 4],)
|
[4]
|
list(int) -> list(int)
|
kth-smallest with k=4
|
([4, 9, 11, 5, 11, 1],)
|
9
|
list(int) -> int
|
product
|
([3, 10, 8, 13, 11],)
|
34320
|
list(int) -> int
|
Abbreviate words separated by ','
|
('Trinidad,58',)
|
T.5.
|
list(char) -> list(char)
|
sum
|
([14, 6],)
|
20
|
list(int) -> int
|
pow-k with k=5
|
([14, 13, 8, 15, 8, 10, 0],)
|
[537824, 371293, 32768, 759375, 32768, 100000, 0]
|
list(int) -> list(int)
|
nth (n=0) word delimited by '.'
|
('505.+46',)
|
505
|
list(char) -> list(char)
|
Abbreviate separate words (III)
|
('038', 'Hornak')
|
0.H.
|
list(char) -> list(char) -> list(char)
|
Abbreviate separate words (II)
|
('395', '082')
|
3.0.
|
list(char) -> list(char) -> list(char)
|
Extract word delimited by ')' - '-'
|
('+60)Lain-Ducati100-Bradford',)
|
Lain
|
list(char) -> list(char)
|
append-index-k with k=4
|
([8, 1, 16, 6, 16],)
|
[8, 1, 16, 6, 16, 6]
|
list(int) -> list(int)
|
Take first 4 characters
|
('Reily',)
|
Reil
|
list(char) -> list(char)
|
mult-k with k=2
|
([11, 2, 7, 10, 4],)
|
[22, 4, 14, 20, 8]
|
list(int) -> list(int)
|
remove-mod-k with k=2
|
([7, 10],)
|
[7]
|
list(int) -> list(int)
|
bool-identify-geq-k with k=5
|
([],)
|
[]
|
list(int) -> list(bool)
|
kth-smallest with k=4
|
([6, 14, 4, 7, 12, 4, 3],)
|
6
|
list(int) -> int
|
Prepend 'Ghoston' to first word
|
('Samuel Hage',)
|
GhostonSamuel
|
list(char) -> list(char)
|
remove gt 2
|
([0, 6, 0, 5, 6],)
|
[0, 0]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=1 and n=4
|
([0, 3, 3],)
|
[1, 0, 0]
|
list(int) -> list(int)
|
Prepend '+174'
|
('Jurgens',)
|
+174Jurgens
|
list(char) -> list(char)
|
ensure suffix `Ramthun`
|
('Annalisa Latimore ChismRamthun',)
|
Annalisa Latimore ChismRamthun
|
list(char) -> list(char)
|
Append two words delimited by ')'
|
('Park', 'Hopkins')
|
Park)Hopkins
|
list(char) -> list(char) -> list(char)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.