description
stringlengths 3
46
| input
stringlengths 4
74
| output
stringlengths 1
90
⌀ | types
stringclasses 9
values |
---|---|---|---|
caesar-cipher-k-modulo-n with k=4 and n=5 | ([0, 0, 2, 4, 0, 1, 0],) | [4, 4, 1, 3, 4, 0, 4] | list(int) -> list(int) |
nth (n=0) word delimited by ')' | ('L)40)591)W',) | L | list(char) -> list(char) |
Replace '-' w/ ' ' | ('+106-Yale-+130-+141',) | +106 Yale +130 +141 | list(char) -> list(char) |
ensure suffix `Columbia` | ('647 Seamons 40 Teddy',) | 647 Seamons 40 TeddyColumbia | list(char) -> list(char) |
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) |
slice-k-n with k=4 and n=4 | ([12, 1, 5, 12, 7, 10, 5, 16, 10, 9, 3, 8, 15],) | [12, 7, 10, 5] | list(int) -> list(int) |
kth-smallest with k=5 | ([6, 2, 6, 9, 12, 3, 13, 5],) | 6 | list(int) -> int |
keep-mod-k with k=5 | ([2, 20],) | [20] | list(int) -> list(int) |
Prepend 'Ghoston' to first word | ('125 +118',) | Ghoston125 | list(char) -> list(char) |
slice-k-n with k=4 and n=2 | ([0, 14, 0, 16, 0, 12, 0, 2, 7, 8, 5, 9, 10, 2],) | [16, 0] | list(int) -> list(int) |
nth (n=1) word delimited by '(' | ('+188(45(+9',) | 45 | list(char) -> list(char) |
has-k with k=4 | ([11, 11, 4, 14, 6, 14, 0],) | True | list(int) -> bool |
is-mod-k with k=4 | ([0, 7, 13, 8, 10],) | False | list(int) -> bool |
drop first word delimited by '.' | ('Angeles.+115.+140',) | +115.+140 | list(char) -> list(char) |
kth-largest with k=1 | ([9, 9, 15],) | 15 | list(int) -> int |
is-mod-k with k=4 | ([28, 0, 44],) | True | list(int) -> bool |
index-k with k=5 | ([13, 15, 6, 5, 2, 13, 14, 5, 12],) | 2 | list(int) -> int |
slice-k-n with k=1 and n=5 | ([1, 15, 4, 2, 11, 12, 11, 9, 16, 11, 16, 12, 2, 1],) | [1, 15, 4, 2, 11] | list(int) -> list(int) |
Append two words delimited by ')' | ('Storrs', 'Jacquiline') | Storrs)Jacquiline | list(char) -> list(char) -> list(char) |
ensure suffix `769` | ('520 T769',) | 520 T769 | list(char) -> list(char) |
parentheses around word delimited by '.' & ',' | ('20.066,TX-Pannell',) | 20.(066),TX-Pannell | list(char) -> list(char) |
Extract word delimited by ',' - ',' | ('Barbara,+86,95,Urbana',) | +86 | list(char) -> list(char) |
pow-k with k=2 | ([10, 14, 8, 2, 12, 10, 3],) | [100, 196, 64, 4, 144, 100, 9] | list(int) -> list(int) |
slice-k-n with k=2 and n=4 | ([6, 10, 16, 7, 14, 1, 5, 11, 15, 11, 13, 6, 14, 14],) | [10, 16, 7, 14] | list(int) -> list(int) |
Take first 2 characters | ('334',) | 33 | list(char) -> list(char) |
Extract word delimited by ')' - '-' | ('141)Penn-Jani-Clasen',) | Penn | list(char) -> list(char) |
drop-k with k=5 | ([5, 10, 1, 5, 6, 16, 12, 9, 2, 7, 13],) | [16, 12, 9, 2, 7, 13] | list(int) -> list(int) |
remove-mod-head | ([3, 4, 8, 5, 8],) | [4, 8, 5, 8] | list(int) -> list(int) |
append-index-k with k=1 | ([10, 0, 8, 6, 4, 9, 7, 7],) | [10, 0, 8, 6, 4, 9, 7, 7, 10] | list(int) -> list(int) |
Replace ',' w/ '.' | ('017,Celsa',) | 017.Celsa | list(char) -> list(char) |
keep eq 2 | ([0, 3, 3, 5, 2],) | [2] | list(int) -> list(int) |
Extract word delimited by ')' - ',' | ('244)Karrie,Lashanda)Kimberley',) | Karrie | list(char) -> list(char) |
Drop last 3 characters | ('012',) | null | list(char) -> list(char) |
nth (n=1) word delimited by '(' | ('W(517(+199',) | 517 | list(char) -> list(char) |
is-mod-k with k=1 | ([14, 13, 12, 6],) | True | list(int) -> bool |
Append two words delimited by ')' | ('Vena', 'Eccleston') | Vena)Eccleston | list(char) -> list(char) -> list(char) |
sort-and-deduplicate | ([10, 6],) | [6, 10] | list(int) -> list(int) |
Append two words delimited by ' ' | ('Malissa', 'Philadelphia') | Malissa Philadelphia | list(char) -> list(char) -> list(char) |
keep squares | ([9, 0, 16, 1, 16, 0, 3],) | [9, 0, 16, 1, 16, 0] | list(int) -> list(int) |
Prepend 'UCLA' | ('Ferrari',) | UCLAFerrari | list(char) -> list(char) |
nth (n=0) word delimited by ',' | ('Neil,Heintz,Malissa,Berkeley',) | Neil | list(char) -> list(char) |
len | ([],) | 0 | list(int) -> int |
take-k with k=5 | ([5, 10, 13, 14, 6, 5, 13],) | [5, 10, 13, 14, 6] | list(int) -> list(int) |
Prepend '177' to first word | ('Jacqualine +180',) | 177Jacqualine | list(char) -> list(char) |
has-k with k=2 | ([12, 4, 7, 15],) | False | list(int) -> bool |
remove gt 1 | ([3, 5, 2, 6, 3],) | [] | list(int) -> list(int) |
nth (n=1) word delimited by ',' | ('473,Phialdelphia',) | Phialdelphia | list(char) -> list(char) |
mult-k with k=4 | ([5, 14, 6, 5, 8],) | [20, 56, 24, 20, 32] | list(int) -> list(int) |
slice-k-n with k=3 and n=3 | ([3, 10, 15, 15, 6, 3, 4, 10, 12, 11, 7, 15],) | [15, 15, 6] | list(int) -> list(int) |
Drop last 5 characters | ('Cencici',) | Ce | list(char) -> list(char) |
parentheses around word delimited by ' ' & ' ' | ('94 Heintz Q',) | 94 (Heintz) Q | list(char) -> list(char) |
Prepend 'Sergienko' | ('Stefany',) | SergienkoStefany | list(char) -> list(char) |
is-mod-k with k=5 | ([2, 6, 8],) | False | list(int) -> bool |
Append 2 strings (IIIIII) | ('+199', '919') | +199919 | list(char) -> list(char) -> list(char) |
modulo-k with k=1 | ([0, 15, 15, 16, 9],) | [0, 0, 0, 0, 0] | list(int) -> list(int) |
Append two words delimited by '.' | ('R', 'Rowden') | R.Rowden | list(char) -> list(char) -> list(char) |
Append 'Beata' | ('S',) | SBeata | list(char) -> list(char) |
Replace '(' w/ ')' | ('Babiarz(Annalisa(+151(Samuel',) | Babiarz)Annalisa)+151)Samuel | list(char) -> list(char) |
nth (n=-1) word delimited by ')' | ('+151)50)Withers',) | Withers | list(char) -> list(char) |
replace-all-with-index-k with k=2 | ([11, 14, 12],) | [14, 14, 14] | list(int) -> list(int) |
prepend-k with k=5 | ([5, 9],) | [5, 5, 9] | list(int) -> list(int) |
dup | ([14, 3, 7, 3, 12, 8],) | [14, 14, 3, 3, 7, 7, 3, 3, 12, 12, 8, 8] | list(int) -> list(int) |
Append 2 strings (II) | ('245', 'Casler') | 245Casler | list(char) -> list(char) -> list(char) |
Take first character and append ')' | ('+169',) | +) | list(char) -> list(char) |
take-k with k=2 | ([15, 0, 14, 12, 16, 15, 1, 14],) | [15, 0] | list(int) -> list(int) |
append-index-k with k=2 | ([4, 11, 8, 4, 10, 11, 4],) | [4, 11, 8, 4, 10, 11, 4, 11] | list(int) -> list(int) |
Replace '(' w/ ')' | ('14(Micha',) | 14)Micha | list(char) -> list(char) |
First letters of words (IIIII) | ('Honda550 +180 Q',) | H+Q | list(char) -> list(char) |
prepend-index-k with k=5 | ([11, 2, 5, 11, 1, 1, 9, 13, 4, 15],) | [1, 11, 2, 5, 11, 1, 1, 9, 13, 4, 15] | list(int) -> list(int) |
caesar-cipher-k-modulo-n with k=3 and n=2 | ([1],) | [0] | list(int) -> list(int) |
Extract word delimited by ')' - ',' | ('244)Karrie,Lashanda)Kimberley',) | Karrie | list(char) -> list(char) |
parentheses around word delimited by ' ' & '-' | (' Reily-Withers,Urbana',) | (Reily)-Withers,Urbana | list(char) -> list(char) |
kth-largest with k=1 | ([8],) | 8 | list(int) -> int |
Take first character and append '(' | ('Pennsylvania',) | P( | list(char) -> list(char) |
Append two words delimited by '-' | ('119', 'Harvard') | 119-Harvard | list(char) -> list(char) -> list(char) |
caesar-cipher-k-modulo-n with k=5 and n=2 | ([],) | [] | list(int) -> list(int) |
First letters of words (IIIIII) | ('+155 174 Dr Haven',) | +1DH | list(char) -> list(char) |
Take first 4 characters | ('Reily',) | Reil | list(char) -> list(char) |
ensure suffix `Ramthun` | ('107 CollegeRamthun',) | 107 CollegeRamthun | list(char) -> list(char) |
parentheses around word delimited by '.' & ',' | ('.+197,64',) | .(+197),64 | list(char) -> list(char) |
repeat | ([3, 7],) | [7, 7, 7] | list(int) -> list(int) |
Extract word delimited by '-' - ')' | ('NY-Philadelphia)Ferrari-PA',) | Philadelphia | list(char) -> list(char) |
Append 2 strings (IIII) | ('Marcus', '776') | Marcus776 | list(char) -> list(char) -> list(char) |
nth (n=0) word delimited by ',' | ('R,Miah,Arbor',) | R | list(char) -> list(char) |
Append two words delimited by ' ' | ('Malissa', 'Philadelphia') | Malissa Philadelphia | list(char) -> list(char) -> list(char) |
modulo-k with k=4 | ([15, 4, 8, 1, 0, 10],) | [3, 0, 0, 1, 0, 2] | list(int) -> list(int) |
is-mod-k with k=1 | ([4],) | True | list(int) -> bool |
Abbreviate words separated by ' ' | ('038 Cruz',) | 0.C. | list(char) -> list(char) |
Append two words delimited by '(' | ('176', 'C') | 176(C | list(char) -> list(char) -> list(char) |
drop first word delimited by ')' | ('Jenee)Jenee)151)UC',) | Jenee)151)UC | list(char) -> list(char) |
Drop last 4 characters | ('Santa',) | S | list(char) -> list(char) |
drop first word delimited by '-' | ('Coralee-862',) | 862 | list(char) -> list(char) |
Take first character and append '-' | ('+158',) | +- | 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) |
head | ([0, 5],) | 0 | list(int) -> int |
sum | ([0],) | 0 | list(int) -> int |
Replace '(' w/ '.' | ('75(University',) | 75.University | list(char) -> list(char) |
parentheses around a single word (IIII) | ('Harvard',) | (Harvard) | list(char) -> list(char) |
Abbreviate words separated by ' ' | ('038 Cruz',) | 0.C. | list(char) -> list(char) |
+1 maximum list | ([5, 0, 7],) | 8 | list(int) -> int |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.