You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
643 B
643 B
Chapter Exercises
Review of types
[[Bool]]
- (c)
- (d)
- (b)
Reviewing currying
"woops mrow wooho!"
"1 mrow haha"
"woops mrow 2 mrow haha"
"woops mrow blue mrow haha"
"pink mrow haha mrow green mrow woops mrow blue"
"are mrow Pugs mrow awesome"
Recursion
Exercise 1
dividedBy 15 2
= go 15 2 0
= go 13 2 1
= go 11 2 2
= go 9 2 3
= go 7 2 4
= go 5 2 5
= go 3 2 6
= go 1 2 7
= (7,1)
Exercise 2 & 3
see src/recursion.hs
Exercise 4
see src/dividedby.hs
Exercise 5
see src/mccarthy91.hs
Numbers into words
see src/wordnumber.hs