summaryrefslogtreecommitdiff
path: root/prolog/problems/sets
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2015-11-30 15:09:07 +0100
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2015-11-30 15:09:07 +0100
commitbb49b7add4e63f8cb10130ed860107e5eda95018 (patch)
tree3c811ed7076284db2ebdcee3d2ffcfb0b5f06411 /prolog/problems/sets
parent8d7d287e088068c661a241f88cf70412b5121a58 (diff)
Reformat Prolog test cases with lists
Diffstat (limited to 'prolog/problems/sets')
-rw-r--r--prolog/problems/sets/union_3/common.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/prolog/problems/sets/union_3/common.py b/prolog/problems/sets/union_3/common.py
index 807bce6..506913a 100644
--- a/prolog/problems/sets/union_3/common.py
+++ b/prolog/problems/sets/union_3/common.py
@@ -24,13 +24,13 @@ union([H|T], S2, U) :-
'''
test_cases = [
- ('union([], [3,2,5,1], A), msort(A, X)',
+ ('union([], [3, 2, 5, 1], A), msort(A, X)',
[{'X': '[1, 2, 3, 5]'}]),
- ('union([3,2,5,1], [], A), msort(A, X)',
+ ('union([3, 2, 5, 1], [], A), msort(A, X)',
[{'X': '[1, 2, 3, 5]'}]),
- ('union([3,2,5,1], [8,4,2,3,5,1,9], A), msort(A, X)',
+ ('union([3, 2, 5, 1], [8, 4, 2, 3, 5, 1, 9], A), msort(A, X)',
[{'X': '[1, 2, 3, 4, 5, 8, 9]'}]),
- ('union([2,3,5,1,9], [3,0,9,5,6], A), msort(A, X)',
+ ('union([2, 3, 5, 1, 9], [3, 0, 9, 5, 6], A), msort(A, X)',
[{'X': '[0, 1, 2, 3, 5, 6, 9]'}]),
]