Skip to content
Snippets Groups Projects
Commit b9900a60 authored by Nicolas Alexander Stucki's avatar Nicolas Alexander Stucki
Browse files

Add back a hint

parent 7609cb21
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,9 @@ Define the function `curry2`, that curries a two arguments function. That is, `c
def curry2(f: (Double, Int) => Boolean): Double => (Int => Boolean) = ???
```
_Hint_: what should `curry2((x, y) => x < y)(1.0)` return?
## Exercise 3.2
Define the function `uncurry2`. It takes a curried function, and creates a two-argument function.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment