Created
September 27, 2012 14:25
-
-
Save aifreedom/3794281 to your computer and use it in GitHub Desktop.
This file contains 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
sumOfLastTwo xs = iter xs 0 0 | |
where iter xs s1 s2 = case xs of | |
[] -> s1 + s2 | |
(y:ys) -> iter ys s2 y | |
removeSuccessiveDuplicate xs = reverse (iter xs []) | |
where iter ori rst = case ori of | |
[] -> rst | |
(x:xs) -> case rst of | |
(y:_) | |
| x==y -> iter xs rst | |
| otherwise -> iter xs (x:rst) | |
[] -> iter xs (x:rst) | |
takeWhile condition list = reverse (iter condition list []) | |
where iter condition ori rst = | |
case ori of | |
[] -> rst | |
(x:xs) | condition x -> iter condition xs (x:rst) | |
| otherwise -> rst |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment