diff options
author | Martin <martin@leo.fri1.uni-lj.si> | 2015-09-22 12:57:43 +0200 |
---|---|---|
committer | Martin <martin@leo.fri1.uni-lj.si> | 2015-09-22 12:57:43 +0200 |
commit | cb71b2083b2f87b2f0466577dbe3e11efe22410c (patch) | |
tree | c1584335a4abeb51adc91eb923ec92b4060e5c52 /python/problems/lists_and_for | |
parent | 4841519d3fb3a76b37529705b4a1ca96fbb6d6f6 (diff) | |
parent | 091f27eba8afac015386342ca3b924f0789396eb (diff) |
Merge branch 'master' of 192.168.15.97:codeq-problems
Diffstat (limited to 'python/problems/lists_and_for')
-rw-r--r-- | python/problems/lists_and_for/contains_42/common.py | 5 | ||||
-rw-r--r-- | python/problems/lists_and_for/contains_string/common.py | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/python/problems/lists_and_for/contains_42/common.py b/python/problems/lists_and_for/contains_42/common.py index 3a5a905..3ebe546 100644 --- a/python/problems/lists_and_for/contains_42/common.py +++ b/python/problems/lists_and_for/contains_42/common.py @@ -63,7 +63,10 @@ def test(python, code): if str(test_out[xs_i]) in output and \ str(not test_out[xs_i]) not in output: n_correct += 1 - return n_correct, len(test_out) + + passed = n_correct == len(test_in) + hints = [{'id': 'test_results', 'args': {'passed': n_correct, 'total': len(test_in)}}] + return passed, hints def hint(python, code): # run one test first to see if there are any exceptions diff --git a/python/problems/lists_and_for/contains_string/common.py b/python/problems/lists_and_for/contains_string/common.py index b69a4ea..5e0a46b 100644 --- a/python/problems/lists_and_for/contains_string/common.py +++ b/python/problems/lists_and_for/contains_string/common.py @@ -61,7 +61,10 @@ def test(python, code): if str(test_out[xs_i]) in output and \ str(not test_out[xs_i]) not in output: n_correct += 1 - return n_correct, len(test_out) + + passed = n_correct == len(test_in) + hints = [{'id': 'test_results', 'args': {'passed': n_correct, 'total': len(test_in)}}] + return passed, hints def hint(python, code): # run one test first to see if there are any exceptions |