(no commit message)
[lambda.git] / assignment2.mdwn
index 96ac3bb..bcfba91 100644 (file)
@@ -72,13 +72,11 @@ For these exercises, assume that `LIST` is the result of evaluating:
        (make-list a (make-list b (make-list c (make-list d (make-list e empty)))))
 
 
-(16).  What would be the result of evaluating:
+16.    What would be the result of evaluating [[Assignment 2 hint 1]]:
 
                LIST make-list empty
 
-        [[Assignment 2 hint 1]]
-
-(17).  Based on your answer to question 1, how might you implement the **map** function? Expected behavior:
+17.    Based on your answer to question 1, how might you implement the **map** function? Expected behavior:
 
        <pre><code>map f LIST <~~> (make-list (f a) (make-list (f b) (make-list (f c) (make-list (f d) (make-list (f e) empty)))))</code></pre>