Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions exercises/saddle-points/.meta/hints.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## Rust Indices Start At 0

By convention, ordered sequences of values in Rust have their contents numbered
("indexed") starting from 0. This applies regardless of what the rest of the
exercise description in this README says, such as references to indices that
start at 1, so you will have to subtract 1 to translate those index numbers
to Rust index numbers.

## Efficiency Notice

This exercise uses a _vector of vectors_ to store the content of matrices. While
Expand Down
8 changes: 8 additions & 0 deletions exercises/saddle-points/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ The matrix can have a different number of rows and columns (Non square).
Note that you may find other definitions of matrix saddle points online,
but the tests for this exercise follow the above unambiguous definition.

## Rust Indices Start At 0

By convention, ordered sequences of values in Rust have their contents numbered
("indexed") starting from 0. This applies regardless of what the rest of the
exercise description in this README says, such as references to indices that
start at 1, so you will have to subtract 1 to translate those index numbers
to Rust index numbers.

## Efficiency Notice

This exercise uses a _vector of vectors_ to store the content of matrices. While
Expand Down