1 2 3-- TODO foldr1 vs. foldl1? -- TODO foldl1' works for larger numbers without stack overflow. Why? main = print $ foldl1 lcm [1..20]
1 2 3
-- TODO foldr1 vs. foldl1? -- TODO foldl1' works for larger numbers without stack overflow. Why? main = print $ foldl1 lcm [1..20]