March 2018
Beginner
616 pages
16h 53m
English
The beautiful thing about code is that there are no wrong answers as long as you get the right results. The answers to the exercises shown here should be viewed as simply one possible solution to the problem. Especially in Haskell, there are many paths to the correct solution; if you have an alternative answer that gives the correct results, that’s the correct solution.
inc x = x + 1 double x = x*2 square x = x^2
ex3 n = if n 'mod' 2 == 0 then n - 2 else 3*n+1
ifEven n = if even n then n - 2 else 3 * n + 1
simple = (\x -> x) makeChange = (\owed given -> if given - owed > 0 then given - owed else 0)
inc = (\x -> ...