Skip to content

Instantly share code, notes, and snippets.

@Heimdell
Last active August 29, 2015 14:24
Show Gist options
  • Save Heimdell/dc2d7b792c61c44ccd90 to your computer and use it in GitHub Desktop.
Save Heimdell/dc2d7b792c61c44ccd90 to your computer and use it in GitHub Desktop.
import Data.List (foldl')
avg list =
let (count, sum) = foldl' collect (0, 0) list
in fromIntegral sum / count
where
collect (count, sum) item =
count `seq`
sum `seq`
(count + 1, sum + item)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment