description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
Prepend '+167' to first word
|
('172 Hayley',)
|
+167172
|
list(char) -> list(char)
|
prepend-k with k=1
|
([9, 6, 16, 11],)
|
[1, 9, 6, 16, 11]
|
list(int) -> list(int)
|
ensure suffix `Columbia`
|
('Cambridge MD 875 Ducati125',)
|
Cambridge MD 875 Ducati125Columbia
|
list(char) -> list(char)
|
count-k with k=4
|
([4, 4, 14, 4, 16],)
|
3
|
list(int) -> int
|
nth (n=1) word delimited by ','
|
('473,Phialdelphia',)
|
Phialdelphia
|
list(char) -> list(char)
|
Drop last 5 characters
|
('Mcgaughey',)
|
Mcga
|
list(char) -> list(char)
|
remove gt 1
|
([3, 5, 2, 6, 3],)
|
[]
|
list(int) -> list(int)
|
Prepend '+167' to first word
|
('Launa 845',)
|
+167Launa
|
list(char) -> list(char)
|
modulo-k with k=5
|
([11],)
|
[1]
|
list(int) -> list(int)
|
keep-mod-k with k=3
|
([],)
|
[]
|
list(int) -> list(int)
|
Abbreviate separate words (IIII)
|
('+140', 'Partida')
|
+.P.
|
list(char) -> list(char) -> list(char)
|
modulo-k with k=5
|
([10],)
|
[0]
|
list(int) -> list(int)
|
drop first word delimited by ')'
|
('Heintz)Babiarz)University',)
|
Babiarz)University
|
list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=4 and n=5
|
([2, 3, 3],)
|
[1, 2, 2]
|
list(int) -> list(int)
|
append-k with k=5
|
([2, 13],)
|
[2, 13, 5]
|
list(int) -> list(int)
|
keep-mod-k with k=4
|
([2, 8, 5, 7],)
|
[8]
|
list(int) -> list(int)
|
slice-k-n with k=4 and n=5
|
([5, 14, 2, 6, 12, 5, 6, 10, 4, 8, 14, 12],)
|
[6, 12, 5, 6, 10]
|
list(int) -> list(int)
|
Abbreviate separate words (IIII)
|
('M', '145')
|
M.1.
|
list(char) -> list(char) -> list(char)
|
caesar-cipher-k-modulo-n with k=5 and n=3
|
([1, 0, 1, 1],)
|
[0, 2, 0, 0]
|
list(int) -> list(int)
|
ensure suffix `Ramthun`
|
('107 CollegeRamthun',)
|
107 CollegeRamthun
|
list(char) -> list(char)
|
kth-smallest with k=5
|
([9, 5, 0, 0, 13, 1, 16, 0, 9, 3, 1],)
|
1
|
list(int) -> int
|
Abbreviate words separated by '('
|
('+180(P',)
|
+.P.
|
list(char) -> list(char)
|
Take first character and append ','
|
('546',)
|
5,
|
list(char) -> list(char)
|
nth (n=-1) word delimited by ' '
|
('Park +183 186',)
|
186
|
list(char) -> list(char)
|
Append 'Cornell'
|
('Akiyama',)
|
AkiyamaCornell
|
list(char) -> list(char)
|
Take first character and append ' '
|
('MI',)
|
M
|
list(char) -> list(char)
|
drop first word delimited by '-'
|
('Cambridge-+7-+140-29',)
|
+7-+140-29
|
list(char) -> list(char)
|
replace-all-with-index-k with k=4
|
([12, 11, 1, 13, 14, 2, 11, 6, 6, 5, 6],)
|
[13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]
|
list(int) -> list(int)
|
Prepend '086' to first word
|
('35 Lara',)
|
08635
|
list(char) -> list(char)
|
Append two words delimited by ','
|
('UIUC', '608')
|
UIUC,608
|
list(char) -> list(char) -> list(char)
|
ensure suffix `Ramthun`
|
('107 CollegeRamthun',)
|
107 CollegeRamthun
|
list(char) -> list(char)
|
rotate-k with k=1
|
([1, 13, 14, 2, 11, 6, 6, 5, 6, 13, 16, 7, 6, 13],)
|
[13, 1, 13, 14, 2, 11, 6, 6, 5, 6, 13, 16, 7, 6]
|
list(int) -> list(int)
|
sort-and-deduplicate
|
([3, 2, 10, 5],)
|
[2, 3, 5, 10]
|
list(int) -> list(int)
|
bool-identify-is-mod-k with k=5
|
([11, 10, 12, 13, 2],)
|
[False, True, False, False, False]
|
list(int) -> list(bool)
|
is-mod-k with k=2
|
([18, 24, 14, 22, 12, 28],)
|
True
|
list(int) -> bool
|
Append two words delimited by '.-'
|
('Salley', '29')
|
Salley.-29
|
list(char) -> list(char) -> list(char)
|
odds
|
([2, 5, 4, 2, 0, 5, 1, 1],)
|
[5, 5, 1, 1]
|
list(int) -> list(int)
|
drop first word delimited by '-'
|
('California-+158-Ghoston-82',)
|
+158-Ghoston-82
|
list(char) -> list(char)
|
empty
|
([0],)
|
False
|
list(int) -> bool
|
slice-k-n with k=3 and n=3
|
([6, 1, 1, 7, 1, 12, 3, 5, 1, 12, 11],)
|
[1, 7, 1]
|
list(int) -> list(int)
|
Take first 5 characters
|
('Ducati250',)
|
Ducat
|
list(char) -> list(char)
|
Append 2 strings (I)
|
('I', '+172')
|
I+172
|
list(char) -> list(char) -> list(char)
|
keep eq 0
|
([0, 4, 6, 2, 6],)
|
[0]
|
list(int) -> list(int)
|
Extract word delimited by ',' - ','
|
('+75,FreeHafer,861,Babiarz',)
|
FreeHafer
|
list(char) -> list(char)
|
Drop last 5 characters
|
('Mcgaughey',)
|
Mcga
|
list(char) -> list(char)
|
has-k with k=2
|
([12, 4, 7, 15],)
|
False
|
list(int) -> bool
|
nth (n=-1) word delimited by '('
|
('N(Spell(Babiarz(MD',)
|
MD
|
list(char) -> list(char)
|
ensure suffix `Scalia`
|
('UIUC 526',)
|
UIUC 526Scalia
|
list(char) -> list(char)
|
rotate-k with k=2
|
([6, 0, 12, 11, 3, 15, 14, 13, 13, 4],)
|
[13, 4, 6, 0, 12, 11, 3, 15, 14, 13]
|
list(int) -> list(int)
|
Replace '.' w/ ')'
|
('Lakenya.876.18.064',)
|
Lakenya)876)18)064
|
list(char) -> list(char)
|
Take first character and append ' '
|
('Alida',)
|
A
|
list(char) -> list(char)
|
nth (n=0) word delimited by ' '
|
('Brescia A 56',)
|
Brescia
|
list(char) -> list(char)
|
Take first 3 characters
|
('Trinidad',)
|
Tri
|
list(char) -> list(char)
|
count-k with k=2
|
([14, 0, 2, 6],)
|
1
|
list(int) -> int
|
slice-k-n with k=2 and n=2
|
([2, 7, 11, 0, 2, 7, 2, 2, 10, 6, 0],)
|
[7, 11]
|
list(int) -> list(int)
|
Drop last 2 characters
|
('Stefany',)
|
Stefa
|
list(char) -> list(char)
|
drop first word delimited by ')'
|
('Heintz)Babiarz)University',)
|
Babiarz)University
|
list(char) -> list(char)
|
parentheses around first word
|
('018 +176 Houston',)
|
(018)
|
list(char) -> list(char)
|
bool-identify-k with k=0
|
([3, 14, 15, 0],)
|
[False, False, False, True]
|
list(int) -> list(bool)
|
Prepend '086' to first word
|
('Georgina 72',)
|
086Georgina
|
list(char) -> list(char)
|
First letters of words (IIIII)
|
('46 439',)
|
44
|
list(char) -> list(char)
|
bool-identify-is-mod-k with k=3
|
([3],)
|
[True]
|
list(int) -> list(bool)
|
Take first 2 characters
|
('Dermody',)
|
De
|
list(char) -> list(char)
|
replace-all-with-index-k with k=2
|
([10, 11, 9, 13],)
|
[11, 11, 11, 11]
|
list(int) -> list(int)
|
prepend-k with k=3
|
([5, 3, 0, 3, 7],)
|
[3, 5, 3, 0, 3, 7]
|
list(int) -> list(int)
|
First letters of words (IIII)
|
('CT FreeHafer Bogle',)
|
CFB
|
list(char) -> list(char)
|
keep primes
|
([19, 11, 17, 23, 8, 4, 0],)
|
[19, 11, 17, 23]
|
list(int) -> list(int)
|
mult-k with k=2
|
([12, 13, 2, 4, 7, 15, 12],)
|
[24, 26, 4, 8, 14, 30, 24]
|
list(int) -> list(int)
|
remove-index-k with k=3
|
([9, 11, 13, 2, 9],)
|
[9, 11, 2, 9]
|
list(int) -> list(int)
|
Replace ',' w/ '.'
|
('Ducati,+147',)
|
Ducati.+147
|
list(char) -> list(char)
|
Extract word delimited by ',' - ','
|
('Jeff,Scalia,Gertude,877',)
|
Scalia
|
list(char) -> list(char)
|
prepend-index-k with k=2
|
([9, 12, 3, 13],)
|
[12, 9, 12, 3, 13]
|
list(int) -> list(int)
|
nth (n=1) word delimited by '('
|
('W(517(+199',)
|
517
|
list(char) -> list(char)
|
append-k with k=4
|
([5, 10, 10, 6, 11, 0],)
|
[5, 10, 10, 6, 11, 0, 4]
|
list(int) -> list(int)
|
drop-k with k=2
|
([13, 0],)
|
[]
|
list(int) -> list(int)
|
caesar-cipher-k-modulo-n with k=2 and n=5
|
([3, 3, 0, 2, 1, 0],)
|
[0, 0, 2, 4, 3, 2]
|
list(int) -> list(int)
|
Extract word delimited by ')' - '-'
|
('141)Penn-Jani-Clasen',)
|
Penn
|
list(char) -> list(char)
|
Replace '.' w/ ')'
|
('Beata.21.119',)
|
Beata)21)119
|
list(char) -> list(char)
|
Take first 4 characters
|
('+106',)
|
+106
|
list(char) -> list(char)
|
bool-identify-is-mod-k with k=3
|
([11, 0, 1],)
|
[False, True, False]
|
list(int) -> list(bool)
|
ensure suffix `997`
|
('Marcus +108 Ramthun Rudolf',)
|
Marcus +108 Ramthun Rudolf997
|
list(char) -> list(char)
|
append-index-k with k=5
|
([0, 12, 0, 0, 15, 9, 9, 9, 2],)
|
[0, 12, 0, 0, 15, 9, 9, 9, 2, 15]
|
list(int) -> list(int)
|
Append two words delimited by ' '
|
('051', '+174')
|
051 +174
|
list(char) -> list(char) -> list(char)
|
index-k with k=1
|
([10, 4, 16, 1],)
|
10
|
list(int) -> int
|
nth (n=-1) word delimited by '('
|
('Berkeley(557(29',)
|
29
|
list(char) -> list(char)
|
Prepend 'UCLA'
|
('Santa',)
|
UCLASanta
|
list(char) -> list(char)
|
slice-k-n with k=5 and n=5
|
([12, 15, 0, 13, 13, 9, 2, 11, 6, 7, 3, 3, 12, 10, 2, 10],)
|
[13, 9, 2, 11, 6]
|
list(int) -> list(int)
|
nth (n=0) word delimited by '-'
|
('Olague-Bradford-+115-N',)
|
Olague
|
list(char) -> list(char)
|
Append two words delimited by '.-'
|
('Mackenzie', '163')
|
Mackenzie.-163
|
list(char) -> list(char) -> list(char)
|
parentheses around word delimited by ' ' & '-'
|
(' +194-9',)
|
(+194)-9
|
list(char) -> list(char)
|
mult-k with k=3
|
([12, 7, 7],)
|
[36, 21, 21]
|
list(int) -> list(int)
|
prepend-k with k=1
|
([9, 15, 2],)
|
[1, 9, 15, 2]
|
list(int) -> list(int)
|
nth (n=-1) word delimited by ')'
|
('+151)50)Withers',)
|
Withers
|
list(char) -> list(char)
|
parentheses around word delimited by '-' & '.'
|
('-Spell.Rowden Arbor',)
|
-(Spell).Rowden Arbor
|
list(char) -> list(char)
|
slice-k-n with k=4 and n=2
|
([5, 5, 10, 13, 4, 1, 14, 4],)
|
[13, 4]
|
list(int) -> list(int)
|
modulo-k with k=2
|
([7, 0, 3, 12, 12],)
|
[1, 0, 1, 0, 0]
|
list(int) -> list(int)
|
Abbreviate separate words (III)
|
('+189', '856')
|
+.8.
|
list(char) -> list(char) -> list(char)
|
Prepend 'Ghoston' to first word
|
('Samuel Hage',)
|
GhostonSamuel
|
list(char) -> list(char)
|
min
|
([10, 14, 2],)
|
2
|
list(int) -> int
|
nth (n=1) word delimited by ','
|
('Tobias,986,FreeHafer,+9',)
|
986
|
list(char) -> list(char)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.