summaryrefslogtreecommitdiff
path: root/prolog/problems/clp_r/max_adj_pair_2/en.py
blob: 66a938b50676530376a0d3dcbdd56d21290a1ebb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
name = 'max_adj_pair/2'
slug = 'find the maximal pair of adjacent elements'

description = '''\
<p><code>max_adj_pair(List, Max)</code>: <code>Max</code> is the maximal sum of two adjacent elements in <code>List</code>.</p>
<pre>
?- max_adj_pair([4.5, 3.6, 1.2, 6.7], Max).
  Max = 8.1.
?- max_adj_pair([1.1, 1.2, -12.3, 8.8], Max).
  Max = 2.3.
</pre>'''

hint = {}