summaryrefslogtreecommitdiff
path: root/prolog/problems/license_plates/getdigits_2/en.py
diff options
context:
space:
mode:
Diffstat (limited to 'prolog/problems/license_plates/getdigits_2/en.py')
-rw-r--r--prolog/problems/license_plates/getdigits_2/en.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/prolog/problems/license_plates/getdigits_2/en.py b/prolog/problems/license_plates/getdigits_2/en.py
index afc41d4..cfa66a0 100644
--- a/prolog/problems/license_plates/getdigits_2/en.py
+++ b/prolog/problems/license_plates/getdigits_2/en.py
@@ -6,8 +6,8 @@ slug = 'remove non-numeric elements from a list'
description = '''\
<p><code>getdigits(L, DL)</code>: the list <code>DL</code> contains the numeric elements of <code>L</code>, in the same order as in the original list.</p>
<pre>
- ?- getdigits([2,3,e,-,4,b], DL).
- DL = [2,3,4].
+?- getdigits([2,3,e,-,4,b], DL).
+ DL = [2,3,4].
</pre>'''
hint = {}