I am trying to find the list with the smallest sum of elements.:
shortest :: (Num a) => [[a]] -> [a]
shortest [] = []
shortest (x:xs) = if sum x < sum (shortest xs) then x else shortest xs
That gives me the following error:
Could not deduce (Ord a) arising from a use of `<' from the context (Eq a) bound by the type signature for shortest :: Eq a => [[a]] -> [a] at code.hs:(8,1)-(9,71) Possible fix: add (Ord a) to the context of the type signature for shortest :: Eq a => [[a]] -> [a] In the expression: sum x < sum (shortest xs) In the expression: if sum x < sum (shortest xs) then x else shortest xs In an equation for `shortest': shortest (x : xs) = if sum x < sum (shortest xs) then x else shortest xs
Why doesn't the function typecheck?
shortestisn't really the right name for this, is it? — Consider usingminimumBy (compare `on` sum), with higher-order functions fromData.ListandData.Function. – leftaroundabout Oct 22 '12 at 1:201+2i; there is no canonical way of ordering them. – dflemstr Oct 22 '12 at 9:13shortest []or, in other words, what should be the basis of the recursion (hint:minimumandmaximumare usually not defined for empty lists). – Rafael Caetano Oct 22 '12 at 9:57