Stop show with sound -- Keyboard shortcut: 'x'  Next slide in show -- Keyboard shortcut: 'n'  3 minutes, 17 secondsHigher-order Functions - slide 9 : 34

The mapping function
A possible implementation of map, called mymap:
(define (mymap f lst)
  (if (null? lst)
      '()
      (cons (f (car lst))
            (mymap f (cdr lst)))))
Go to exercise
Iterative mapping function
Go to exercise
Table exercise: transposing, row elimination, and column elimination.