Skip to content

Instantly share code, notes, and snippets.

@javascripter
Created October 10, 2009 07:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save javascripter/206683 to your computer and use it in GitHub Desktop.
Save javascripter/206683 to your computer and use it in GitHub Desktop.
findElem elem [] = Nothing
findElem elem (x:xs)
| x == elem = Just 0
| otherwise = findElem elem xs >>= Just . (1 +)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment