lvwerra HF staff commited on
Commit
f664b2f
1 Parent(s): 52d520b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -97,7 +97,7 @@ examples = [
97
  "// Returns every other value in the array as a new array.\nfunction everyOther(arr) {",
98
  "Poor English: She no went to the market. Corrected English:",
99
  "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_HERE>\n else:\n results.extend(list2[i+1:])\n return results",
100
- "def remove_non_ascii(s: str) -> str:\n \"\"\" <FILL_ME>\nprint(remove_non_ascii("afkdj$$("))",
101
  ]
102
 
103
 
 
97
  "// Returns every other value in the array as a new array.\nfunction everyOther(arr) {",
98
  "Poor English: She no went to the market. Corrected English:",
99
  "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_HERE>\n else:\n results.extend(list2[i+1:])\n return results",
100
+ "def remove_non_ascii(s: str) -> str:\n \"\"\" <FILL_ME>\nprint(remove_non_ascii('afkdj$$('))",
101
  ]
102
 
103