Skip to content

Instantly share code, notes, and snippets.

@craigmaslowski
Created August 29, 2013 02:53
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 craigmaslowski/6373765 to your computer and use it in GitHub Desktop.
Save craigmaslowski/6373765 to your computer and use it in GitHub Desktop.
Euler Solutions in Haskell
sum [x | x <- [1..999], x `mod` 3 == 0 || x `mod` 5 == 0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment