Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions exercises/concept/signalers-satchel/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,8 @@ return *both* the header slice and the body slice.
## 4. Triangulate from two readings

Two consecutive signal readings give three derived measurements:
their **difference** (`a - b`), their **midpoint** (`(a + b) / 2`),
and their **ratio** (`a / b`). Each measurement uses *both*
readings.
their *difference* `a - b`, their *midpoint* `(a + b) / 2`,
and their *ratio* `a / b`. Each measurement uses both readings.

Define `triangulate` to return all three from a pair of readings.

Expand Down
Loading