1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-16 20:56:57 +02:00
CodeWars/7kyu/fibonacci/solution.hs

5 lines
117 B
Haskell
Raw Permalink Normal View History

module Fibonacci where
fib :: Int -> Int
fib n = snd $ foldl (\(prev, curr) _ -> (curr, prev + curr)) (1, 1) [3..n]