Created
October 25, 2014 17:16
-
-
Save shigemk2/5d7d2e6455fc016b7f13 to your computer and use it in GitHub Desktop.
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
| mtake x = | |
| take key x | |
| where | |
| key = (div (length x - 1) 2) + 1 | |
| mdrop x = | |
| drop key x | |
| where | |
| key = (div (length x - 1) 2) + 1 | |
| main = do | |
| print $ mtake x | |
| print $ mdrop x | |
| where | |
| x = [1,2,3,4,5,6] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment