factorial function (Ben Lippmeier).
+{-# LANGUAGE BangPatterns #-}
-- | The Misc module contains helper functions that seem out of place
-- anywhere else.
module Misc
-- 24
--
factorial :: Int -> Int
-factorial n
- | n <= 1 = 1
- | n > 20 = error "integer overflow in factorial function"
- | otherwise = product [1..n]
-
+factorial !n
+ | n > 20 = error "integer overflow in factorial function"
+ | otherwise = go 1 n
+ where go !acc !i
+ | i <= 1 = acc
+ | otherwise = go (acc * i) (i - 1)
-- | Takes a three-dimensional list, and flattens it into a
-- one-dimensional one.