Fix infilling example
#4
by
MichaelFried
- opened
app.py
CHANGED
@@ -98,7 +98,7 @@ examples = [
|
|
98 |
"X_train, y_train, X_test, y_test = train_test_split(X, y, test_size=0.1)\n\n# Train a logistic regression model, predict the labels on the test set and compute the accuracy score",
|
99 |
"// Returns every other value in the array as a new array.\nfunction everyOther(arr) {",
|
100 |
"Poor English: She no went to the market. Corrected English:",
|
101 |
-
"def alternating(list1, list2):\n results = []\n for i in range(min(len(list1), len(list2))):\n results.append(list1[i])\n results.append(list2[i])\n if len(list1) > len(list2):\n <
|
102 |
"def remove_non_ascii(s: str) -> str:\n \"\"\" <FILL_ME>\nprint(remove_non_ascii('afkdj$$('))",
|
103 |
]
|
104 |
|
|
|
98 |
"X_train, y_train, X_test, y_test = train_test_split(X, y, test_size=0.1)\n\n# Train a logistic regression model, predict the labels on the test set and compute the accuracy score",
|
99 |
"// Returns every other value in the array as a new array.\nfunction everyOther(arr) {",
|
100 |
"Poor English: She no went to the market. Corrected English:",
|
101 |
+
"def alternating(list1, list2):\n results = []\n for i in range(min(len(list1), len(list2))):\n results.append(list1[i])\n results.append(list2[i])\n if len(list1) > len(list2):\n <FILL_ME>\n else:\n results.extend(list2[i+1:])\n return results",
|
102 |
"def remove_non_ascii(s: str) -> str:\n \"\"\" <FILL_ME>\nprint(remove_non_ascii('afkdj$$('))",
|
103 |
]
|
104 |
|