summaryrefslogtreecommitdiff
path: root/prolog/problems/lists/max_2/en.py
diff options
context:
space:
mode:
Diffstat (limited to 'prolog/problems/lists/max_2/en.py')
-rw-r--r--prolog/problems/lists/max_2/en.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/prolog/problems/lists/max_2/en.py b/prolog/problems/lists/max_2/en.py
new file mode 100644
index 0000000..dfb4d60
--- /dev/null
+++ b/prolog/problems/lists/max_2/en.py
@@ -0,0 +1,14 @@
+id = 109
+name = 'max/2'
+slug = 'find the largest element in list'
+
+description = '''\
+<p><code>max(L, Max)</code>: <code>Max</code> is the largest value in the list <code>L</code>.</p>
+<pre>
+ ?- max([5,4,1,6], M).
+ M = 6.
+ ?- max([3,2,2], M).
+ M = 3.
+</pre>'''
+
+hint = {}