Created
May 13, 2015 15:54
-
-
Save iporsut/5e3b29029cae1ff57a1e to your computer and use it in GitHub Desktop.
rotate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rotate xs n | n >= 0 = drop n xs ++ take n xs | |
| otherwise = drop (length xs + n) xs ++ take (length xs + n) xs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment