Skip to content

Instantly share code, notes, and snippets.

@GeorgiHristov42
Created October 8, 2014 23:06
Show Gist options
  • Select an option

  • Save GeorgiHristov42/ffd7daeeea44b8e156be to your computer and use it in GitHub Desktop.

Select an option

Save GeorgiHristov42/ffd7daeeea44b8e156be to your computer and use it in GitHub Desktop.
rotate :: Int -> [Char] -> [Char]
rotate k list | k > 0, k < length list = drop k list ++ take k list
| otherwise = "Error"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment