1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-18 21:56:57 +02:00
CodeWars/8kyu/calculate_average/solution.hs

5 lines
90 B
Haskell
Raw Permalink Normal View History

module Average where
avg :: [Float] -> Float
avg l = (sum l) / (fromIntegral $ length l)