third :: [Int] -> Int -- testing 60 combinations of argument values -- pruning with 14/25 rules -- looking through 2 candidates of size 1 -- looking through 1 candidates of size 2 -- looking through 2 candidates of size 3 -- looking through 2 candidates of size 4 third xs = head (tail (tail xs)) product :: [Int] -> Int -- testing 60 combinations of argument values -- pruning with 14/25 rules -- looking through 2 candidates of size 1 -- looking through 1 candidates of size 2 -- looking through 2 candidates of size 3 -- looking through 2 candidates of size 4 -- looking through 5 candidates of size 5 -- looking through 5 candidates of size 6 -- looking through 15 candidates of size 7 -- looking through 27 candidates of size 8 -- looking through 57 candidates of size 9 -- looking through 119 candidates of size 10 product xs = if null xs then 1 else head xs * product (tail xs) product :: [Int] -> Int -- testing 60 combinations of argument values -- pruning with 15/26 rules -- looking through 2 candidates of size 1 -- looking through 1 candidates of size 2 -- looking through 2 candidates of size 3 -- looking through 5 candidates of size 4 product xs = foldr (*) 1 xs