diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-01-05 18:36:37 +0100 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-01-05 18:36:37 +0100 |
commit | 5902e5a5c40ec8fa32c7af8d4bcc57134a0bea66 (patch) | |
tree | 53b9aee47bbee39682a9c1a6c1ab0ef248a78389 /prolog/problems/lists/max_2 | |
parent | d6b6ab704d4552db052099fa2a7c9b7e9ff6a297 (diff) |
Simplify Prolog hint functions
Diffstat (limited to 'prolog/problems/lists/max_2')
-rw-r--r-- | prolog/problems/lists/max_2/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prolog/problems/lists/max_2/common.py b/prolog/problems/lists/max_2/common.py index 6fd9a4d..e06558b 100644 --- a/prolog/problems/lists/max_2/common.py +++ b/prolog/problems/lists/max_2/common.py @@ -47,6 +47,6 @@ def test(code, aux_code): hints = [{'id': 'test_results', 'args': {'passed': n_correct, 'total': len(test_cases)}}] return passed, hints -def hint(program, solved_problems): +def hint(code, aux_code): # TODO return [] |