blob: 3f205653e74152c623f75b4708fcc06881dd9f65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# coding=utf-8
id = 114
name = 'shiftright/2'
slug = 'shift a list right'
description = '''\
<p><code>shiftright(L1, L2)</code>: the list <code>L2</code> is obtained from L1 by shifting elements to the right by one (circular shift).</p>
<pre>
?- shiftright([1,2,3,4,5], X).
X = [5,1,2,3,4].
</pre>'''
hint = {}
|