We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
foldl'
1 parent 2ac748b commit 78850fcCopy full SHA for 78850fc
1 file changed
exercises/practice/list-ops/src/ListOps.hs
@@ -10,7 +10,7 @@ module ListOps
10
) where
11
12
import Prelude hiding
13
- ( length, reverse, map, filter, foldr, (++), concat )
+ ( length, reverse, map, filter, foldl', foldr, (++), concat )
14
15
foldl' :: (b -> a -> b) -> b -> [a] -> b
16
foldl' f z xs = error "You need to implement this function."
0 commit comments