description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
Replace ',' w/ '.' | ('+197,980,Hage,Cencici',) | +197.980.Hage.Cencici | list(char) -> list(char) |
remove-mod-k with k=2 | ([15, 2, 6],) | [15] | list(int) -> list(int) |
Drop last 5 characters | ('Ferrari250',) | Ferra | list(char) -> list(char) |
Take first 4 characters | ('Reily',) | Reil | list(char) -> list(char) |
Drop last 2 characters | ('Stefany',) | Stefa | list(char) -> list(char) |
Prepend '086' to first word | ('Georgina 72',) | 086Georgina | list(char) -> list(char) |
Append two words delimited by '. ' | ('62', 'Mackenzie') | 62. Mackenzie | list(char) -> list(char) -> list(char) |
slice-k-n with k=1 and n=4 | ([3, 8, 9, 15, 11, 10, 0, 15, 16, 8, 15, 1],) | [3, 8, 9, 15] | list(int) -> list(int) |
replace-all-with-index-k with k=3 | ([7, 10, 4, 1, 12],) | [4, 4, 4, 4, 4] | list(int) -> list(int) |
take-k with k=2 | ([13, 14, 1],) | [13, 14] | list(int) -> list(int) |
Abbreviate separate words (II) | ('395', '082') | 3.0. | list(char) -> list(char) -> list(char) |
count-k with k=2 | ([0, 8, 7, 2, 5, 2],) | 2 | list(int) -> int |
First letters of words (IIIII) | ('Honda550 +180 Q',) | H+Q | list(char) -> list(char) |
bool-identify-geq-k with k=0 | ([-1, -1, 13],) | [False, False, True] | list(int) -> list(bool) |
slice-k-n with k=5 and n=2 | ([15, 10, 14, 9, 4, 7, 1, 7, 1, 1, 5, 8],) | [4, 7] | list(int) -> list(int) |
bool-identify-is-mod-k with k=2 | ([8, 15, 16, 15],) | [True, False, True, False] | list(int) -> list(bool) |
remove-mod-k with k=3 | ([3],) | [] | list(int) -> list(int) |
parentheses around word delimited by ' ' & ' ' | ('94 Heintz Q',) | 94 (Heintz) Q | list(char) -> list(char) |
Prepend '+167' to first word | ('Launa 845',) | +167Launa | list(char) -> list(char) |
parentheses around word delimited by '-' & '.' | ('-Haven.80',) | -(Haven).80 | list(char) -> list(char) |
Prepend 'UCLA' | ('Ferrari',) | UCLAFerrari | list(char) -> list(char) |
has-k with k=5 | ([13, 7, 9, 10],) | False | list(int) -> bool |
nth (n=1) word delimited by '(' | ('Andria(736(654',) | 736 | list(char) -> list(char) |
modulo-k with k=3 | ([14, 15],) | [2, 0] | list(int) -> list(int) |
index-k with k=3 | ([13, 0, 3, 2, 9, 14, 4, 12],) | 3 | list(int) -> int |
modulo-k with k=4 | ([],) | [] | list(int) -> list(int) |
repeat-k with k=4 | ([14, 8, 6, 2, 6],) | [14, 8, 6, 2, 6, 14, 8, 6, 2, 6, 14, 8, 6, 2, 6, 14, 8, 6, 2, 6] | list(int) -> list(int) |
remove-mod-k with k=5 | ([12, 30],) | [12] | list(int) -> list(int) |
drop first word delimited by '-' | ('62-Temple',) | Temple | list(char) -> list(char) |
bool-identify-geq-k with k=5 | ([13],) | [True] | list(int) -> list(bool) |
Drop last 1 characters | ('+130',) | +13 | list(char) -> list(char) |
replace-all-with-index-k with k=1 | ([10, 8, 1, 12],) | [10, 10, 10, 10] | list(int) -> list(int) |
First letters of words (III) | ('Lango Babiarz R',) | LBR | list(char) -> list(char) |
dup | ([0],) | [0, 0] | list(int) -> list(int) |
append-index-k with k=1 | ([12, 7, 2, 2, 9, 11, 14],) | [12, 7, 2, 2, 9, 11, 14, 12] | list(int) -> list(int) |
keep-mod-k with k=3 | ([6, 10, 2, 7, 12],) | [6, 12] | list(int) -> list(int) |
drop-k with k=4 | ([7, 16, 6, 13, 16, 4, 7],) | [16, 4, 7] | list(int) -> list(int) |
slice-k-n with k=5 and n=1 | ([9, 8, 9, 8, 14, 11, 12, 14, 12, 14, 8],) | [14] | list(int) -> list(int) |
keep gt 2 | ([3, 6, 2, 2, 3],) | [3, 6, 3] | list(int) -> list(int) |
take-k with k=3 | ([14, 6, 0, 9, 4, 13],) | [14, 6, 0] | list(int) -> list(int) |
remove empty lists | ([[True, False, False], [True, True], [False, True, True], [True, True]],) | [[True, False, False], [True, True], [False, True, True], [True, True]] | list(list(bool)) -> list(list(bool)) |
rotate-k with k=1 | ([5, 14, 10, 5, 2, 16, 10, 1, 9, 16],) | [16, 5, 14, 10, 5, 2, 16, 10, 1, 9] | list(int) -> list(int) |
has-k with k=4 | ([4],) | True | list(int) -> bool |
pow-k with k=5 | ([13, 4, 11, 10],) | [371293, 1024, 161051, 100000] | list(int) -> list(int) |
keep gt 3 | ([6, 5, 2, 2, 6],) | [6, 5, 6] | list(int) -> list(int) |
Extract word delimited by ',' - ',' | ('Barbara,+86,95,Urbana',) | +86 | list(char) -> list(char) |
Append 2 strings (III) | ('35', '981') | 35981 | list(char) -> list(char) -> list(char) |
Append two words delimited by '-' | ('+196', 'O') | +196-O | list(char) -> list(char) -> list(char) |
prepend-index-k with k=1 | ([7, 13, 15, 10, 10, 8],) | [7, 7, 13, 15, 10, 10, 8] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=3 and n=5 | ([4, 0],) | [2, 3] | list(int) -> list(int) |
Replace ',' w/ '.' | ('017,Celsa',) | 017.Celsa | list(char) -> list(char) |
drop-k with k=3 | ([14, 0, 7, 11, 10, 0, 5, 2],) | [11, 10, 0, 5, 2] | list(int) -> list(int) |
Prepend '170' to first word | ('Malissa 500',) | 170Malissa | list(char) -> list(char) |
modulo-k with k=4 | ([],) | [] | list(int) -> list(int) |
remove-index-k with k=4 | ([12, 9, 10, 2, 3, 5, 1, 8],) | [12, 9, 10, 3, 5, 1, 8] | list(int) -> list(int) |
append-k with k=3 | ([5, 13, 8, 15, 13, 7, 2],) | [5, 13, 8, 15, 13, 7, 2, 3] | list(int) -> list(int) |
append-k with k=2 | ([4, 11, 8, 4, 10],) | [4, 11, 8, 4, 10, 2] | list(int) -> list(int) |
parentheses around first word | ('+108 29 95 +196 332',) | (+108) | list(char) -> list(char) |
parentheses around word delimited by '-' & '.' | ('9-Ducati125.976.Alida',) | 9-(Ducati125).976.Alida | list(char) -> list(char) |
nth (n=-1) word delimited by '(' | ('684(Ghoston',) | Ghoston | list(char) -> list(char) |
keep-mod-k with k=2 | ([1, 10, 11],) | [10] | list(int) -> list(int) |
drop-k with k=1 | ([6, 8, 8, 1, 9],) | [8, 8, 1, 9] | list(int) -> list(int) |
nth (n=0) word delimited by '.' | ('505.+46',) | 505 | list(char) -> list(char) |
Extract word delimited by '(' - '(' | ('Ducati250(+183(Richert(Park',) | +183 | list(char) -> list(char) |
ensure suffix `Columbia` | ('Cambridge MD 875 Ducati125',) | Cambridge MD 875 Ducati125Columbia | list(char) -> list(char) |
nth (n=0) word delimited by '(' | ('Pennsylvania(Marquess',) | Pennsylvania | list(char) -> list(char) |
Abbreviate separate words (IIII) | ('S', 'Beata') | S.B. | list(char) -> list(char) -> list(char) |
count-k with k=3 | ([2, 8, 0, 14, 3, 10],) | 1 | list(int) -> int |
Take first character and append '.' | ('+46',) | +. | list(char) -> list(char) |
Prepend '177' to first word | ('Alaina +141',) | 177Alaina | list(char) -> list(char) |
Prepend 'UCLA' | ('Sergienko',) | UCLASergienko | list(char) -> list(char) |
Append two words delimited by ' -' | ('Q', 'Phillip') | Q -Phillip | list(char) -> list(char) -> list(char) |
remove-index-k with k=3 | ([11, 7, 2],) | [11, 7] | list(int) -> list(int) |
Replace '(' w/ '.' | ('155(Edison(CA(29',) | 155.Edison.CA.29 | list(char) -> list(char) |
Append two words delimited by '(,' | ('50', '949') | 50(,949 | list(char) -> list(char) -> list(char) |
is-primes | ([4, 13],) | False | list(int) -> bool |
caesar-cipher-k-modulo-n with k=2 and n=3 | ([],) | [] | list(int) -> list(int) |
remove empty lists | ([[False, True], [], [], []],) | [[False, True]] | list(list(bool)) -> list(list(bool)) |
Append 2 strings (IIIIII) | ('Garrard', '+141') | Garrard+141 | list(char) -> list(char) -> list(char) |
remove eq 3 | ([4, 5, 3, 3, 5],) | [4, 5, 5] | list(int) -> list(int) |
slice-k-n with k=2 and n=1 | ([9, 0, 16, 9, 10],) | [0] | list(int) -> list(int) |
Abbreviate words separated by '.' | ('Cambridge.6',) | C.6. | list(char) -> list(char) |
Take first character and append '.' | ('290',) | 2. | list(char) -> list(char) |
Prepend '170' to first word | ('Drexel Maryann',) | 170Drexel | list(char) -> list(char) |
Append 2 strings (IIIII) | ('Alaina', '7') | Alaina7 | list(char) -> list(char) -> list(char) |
Append 2 strings (IIIII) | ('Jacquiline', 'College') | JacquilineCollege | list(char) -> list(char) -> list(char) |
keep gt 1 | ([3, 3, 3, 4, 4],) | [3, 3, 3, 4, 4] | list(int) -> list(int) |
nth (n=0) word delimited by '-' | ('64-836-197-Michigan',) | 64 | list(char) -> list(char) |
mult-k with k=5 | ([8, 13],) | [40, 65] | list(int) -> list(int) |
Abbreviate separate words (IIII) | ('413', 'Acura') | 4.A. | list(char) -> list(char) -> list(char) |
pow-k with k=2 | ([0],) | [0] | list(int) -> list(int) |
nth (n=0) word delimited by '-' | ('Olague-Bradford-+115-N',) | Olague | list(char) -> list(char) |
Prepend 'Hornak' | ('P',) | HornakP | list(char) -> list(char) |
Drop last 5 characters | ('Cencici',) | Ce | list(char) -> list(char) |
Prepend 'UCLA' | ('MI',) | UCLAMI | list(char) -> list(char) |
parentheses around first word | ('018 +176 Houston',) | (018) | list(char) -> list(char) |
Prepend 'Carlene' to first word | ('997 CA',) | Carlene997 | list(char) -> list(char) |
Append two words delimited by '.-' | ('2', 'Kotas') | 2.-Kotas | list(char) -> list(char) -> list(char) |
repeat | ([4, 5],) | [5, 5, 5, 5] | list(int) -> list(int) |
First letters of words (I) | ('Andria Richert 652 Penn',) | AR6P | list(char) -> list(char) |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.