Created
January 26, 2016 16:38
-
-
Save pmiddend/af6ff2595f4e11c6f40b 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
| count :: String -> String -> Int | |
| count _ [] = 0 | |
| count needle a@(_:xs) | needle `isPrefixOf` a = 1 + count needle xs | |
| | otherwise = count needle xs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment