1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-11-25 01:16:12 +02:00

Exercise has a single function to implement (#1995)

Fixes #1993.
This commit is contained in:
Dustin J. Mitchell 2024-04-15 10:37:59 -04:00 committed by GitHub
parent 83e25e30ff
commit 70916261ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,10 +23,8 @@ transpose a matrix (turn rows into columns):
⎝⎣7 8 9⎦⎠ ⎣3 6 9⎦
```
Hard-code both functions to operate on 3 × 3 matrices.
Copy the code below to <https://play.rust-lang.org/> and implement the
functions:
Copy the code below to <https://play.rust-lang.org/> and implement the function.
This function only operates on 3x3 matrices.
```rust,should_panic
// TODO: remove this when you're done with your implementation.