formatting
[lambda.git] / exercises / assignment2_hint.mdwn
index bd17bca..470740e 100644 (file)
@@ -2,7 +2,7 @@ The problem was:
 
 25. We mentioned in the Encoding notes that `fold_left (flipped_cons, []) xs` would give us the elements of `xs` but in the reverse order. So that's how we can express `reverse` in terms of `fold_left`. How would you express `reverse` in terms of `fold_right`?
 
-    This problem does have an elegant and concise solution, but it may be hard for you to figure it out. We think it will a useful exercise for you to try, anyway. We'll give a [[hint]]. Don't look at the hint until you've gotten really worked up about the problem. Before that, it probably will just be baffling. If your mind has really gotten its talons into the problem, though, the hint might be just what you need to break it open.
+    This problem does have an elegant and concise solution, but it may be hard for you to figure it out. We think it will a useful exercise for you to try, anyway. Don't look at the hint until you've gotten really worked up about the problem. Before that, it probably will just be baffling. If your mind has really gotten its talons into the problem, though, the hint might be just what you need to break it open.
 
     There are also other, less cool answers. Perhaps you'll find one of them first.
 
@@ -30,3 +30,4 @@ And so on. That is the key to the solution. The questions you need to answer, to
 
 5. So now put it all together, and explain how to express `reverse xs` using `fold_right` and primitive syntax like `lambda`, `&`, and `[]`?
 
+The ideas in Chapter 8 of *The Little Schemer* may help you see the answer to this problem.