Skip to content

2.2.3 Exercise 2.37, page 105 #831

@martin-henz

Description

@martin-henz
   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.

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions