Technical reviewed:
WebAssembly in Action
With examples using C++ and Emscripten
Gerard Gallant
November 2019 ISBN 9781617295744 448 pages
https://www.manning.com/books/webassembly-in-action
Technical reviewed:
WebAssembly in Action
With examples using C++ and Emscripten
Gerard Gallant
November 2019 ISBN 9781617295744 448 pages
https://www.manning.com/books/webassembly-in-action
An exercise with my son.
The Computer Science Activity Book
24 Pen-and-Paper Projects to Explore the Wonderful World of Coding (No Computer Required!)
by Christine Liu and Tera Johnson
https://nostarch.com/csactivities
When there are rows/columns, where each row is a job and each row is a worker.
We need to find the lowest cost to pair (row, column):
| Job 1 | Job 2 | Job 3 | |
|---|---|---|---|
| Worker 1 |
2 | 3 | 3 |
| Worker 2 |
3 | 2 | 3 |
| Worker 3 |
3 | 3 | 2 |
Solution: 2, 2, 2 = 6
UPDATE1 (14.04.2021): There are other writings from Fowler about the approach of this strategy (different names, with some minor changes).
https://www.martinfowler.com/bliki/ParallelChange.html (The API expand-contract pattern)
https://martinfowler.com/articles/consumerDrivenContracts.html