summaryrefslogtreecommitdiff
path: root/python/problems/while_and_if/minimax/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/problems/while_and_if/minimax/common.py')
-rw-r--r--python/problems/while_and_if/minimax/common.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/problems/while_and_if/minimax/common.py b/python/problems/while_and_if/minimax/common.py
index 7e367c2..8d2635b 100644
--- a/python/problems/while_and_if/minimax/common.py
+++ b/python/problems/while_and_if/minimax/common.py
@@ -32,7 +32,7 @@ hint_type = {
'average': Hint('while_condition'),
}
-def test(python, code):
+def test(python, code, aux_code=''):
# List of inputs: (expression to eval, stdin).
test_in = [
(None, '2\n4\n1\n0\n'),
@@ -51,7 +51,7 @@ def test(python, code):
]
# List of outputs: (expression result, stdout, stderr, exception).
- answers = python(code=code, inputs=test_in, timeout=1.0)
+ answers = python(code=aux_code+code, inputs=test_in, timeout=1.0)
outputs = [ans[1] for ans in answers]
n_correct = 0
@@ -73,12 +73,12 @@ def test(python, code):
'max': str(tout[3])}})
return passed, hints
-def hint(python, code):
+def hint(python, code, aux_code=''):
tokens = get_tokens(code)
# run one test first to see if there are any exceptions
test_in = [(None, '1\n1\n1\n1\n1\n0\n')]
- answer = python(code=code, inputs=test_in, timeout=1.0)
+ answer = python(code=aux_code+code, inputs=test_in, timeout=1.0)
exc = get_exception_desc(answer[0][3])
if exc:
if 'NameError' in answer[0][3]: