Created
August 25, 2020 12:15
-
-
Save crclark96/4131696c5a316b19c9e2f4ac23397f8f to your computer and use it in GitHub Desktop.
numChars.hs
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
Prelude Data.List> numChars s c = foldr (\x acc -> if x == c then acc+1 else acc) 0 s | |
Prelude Data.List> numChars "oh heavens" 'h' | |
2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment