From 388b32039898cc8f1784378689007254eb7a33b6 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Wed, 13 Jan 2016 13:51:15 +0100 Subject: Remove space-padding from
 blocks

---
 prolog/problems/license_plates/firstminus_2/en.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'prolog/problems/license_plates/firstminus_2/en.py')

diff --git a/prolog/problems/license_plates/firstminus_2/en.py b/prolog/problems/license_plates/firstminus_2/en.py
index cea521a..f939c91 100644
--- a/prolog/problems/license_plates/firstminus_2/en.py
+++ b/prolog/problems/license_plates/firstminus_2/en.py
@@ -6,9 +6,9 @@ slug = 'negate the first element in a list of numbers'
 description = '''\
 

firstMinus(L1, L2): the list L2 is the same as L1, except for the first element that may be negated. Your code should return both solutions.

-  ?- firstMinus([1,2,3], L).
-    L = [1,2,3] ;
-    L = [-1,2,3].
+?- firstMinus([1,2,3], L).
+  L = [1,2,3] ;
+  L = [-1,2,3].
 
''' hint = {} -- cgit v1.2.1