Revert "Merge pull request #13461 from edx/cdyer/test-block-types"

This reverts commit c050ccc318, reversing
changes made to 9ba9772239.
This commit is contained in:
Eric Fischer
2016-09-30 10:06:01 -04:00
parent e00fe03d9d
commit ca287c73c7
9 changed files with 3 additions and 303 deletions

View File

@@ -1,25 +0,0 @@
<problem display_name="Exercise: apply to each 3" markdown="null" weight="5.0">
<text>
<p>
<b>ESTIMATED TIME TO COMPLETE: 4 minutes</b>
</p>
<pre>
&gt;&gt;&gt; print testList
[1, 16, 64, 81]
</pre>
</text>
<coderesponse queuename="Watcher-MITx-6.00x">
<textbox rows="10" cols="80" mode="python" tabsize="4"/>
<codeparam>
<initial_display>
# Your Code Here
</initial_display>
<answer_display>
def square(a):
return a * a
applyToEach(testList, square)
</answer_display>
<grader_payload>{"grader": "finger_exercises/L6/applyToEach3/grade_ate3.py"}</grader_payload>
</codeparam>
</coderesponse>
</problem>