source-academy / sicp

XML sources of SICP and SICP JS, and support for generating Interactive SICP JS, PDF, e-book and comparison editions

Home Page:https://sourceacademy.org/sicpjs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

2.2.3 Exercise 2.37, page 105

martin-henz opened this issue · comments

   const cols = transpose(n);
   return map(<??>, m);
}```
order of arguments switched. Should be:
```function matrix_times_matrix(m, n) {
   const cols = transpose(n);
   return map(<??>, m);
}```
as in SICP.