From cf4e59c9d6bce337514fc7d77120baced0d6d7bc Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Thu, 17 Mar 2016 14:19:45 +0100 Subject: Prolog: split lists exercises into two groups --- prolog/problems/lists/shiftright_2/en.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 prolog/problems/lists/shiftright_2/en.py (limited to 'prolog/problems/lists/shiftright_2/en.py') diff --git a/prolog/problems/lists/shiftright_2/en.py b/prolog/problems/lists/shiftright_2/en.py deleted file mode 100644 index 63e11cf..0000000 --- a/prolog/problems/lists/shiftright_2/en.py +++ /dev/null @@ -1,13 +0,0 @@ -# coding=utf-8 - -name = 'shiftright/2' -slug = 'shift a list right' - -description = '''\ -

shiftright(L1, L2): the list L2 is obtained from L1 by shifting elements to the right by one (circular shift).

-
-?- shiftright([1,2,3,4,5], X).
-  X = [5,1,2,3,4].
-
''' - -hint = {} -- cgit v1.2.1