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/shiftleft_2/en.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 prolog/problems/lists/shiftleft_2/en.py (limited to 'prolog/problems/lists/shiftleft_2/en.py') diff --git a/prolog/problems/lists/shiftleft_2/en.py b/prolog/problems/lists/shiftleft_2/en.py deleted file mode 100644 index a8dd5f0..0000000 --- a/prolog/problems/lists/shiftleft_2/en.py +++ /dev/null @@ -1,13 +0,0 @@ -# coding=utf-8 - -name = 'shiftleft/2' -slug = 'shift a list left' - -description = '''\ -

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

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