2022-12-21 16:36:30 +01:00
|
|
|
// Copyright 2022 Google LLC
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2023-09-18 11:56:55 +02:00
|
|
|
// ANCHOR: solution
|
2022-12-21 16:36:30 +01:00
|
|
|
// ANCHOR: transpose
|
|
|
|
fn transpose(matrix: [[i32; 3]; 3]) -> [[i32; 3]; 3] {
|
|
|
|
// ANCHOR_END: transpose
|
|
|
|
let mut result = [[0; 3]; 3];
|
|
|
|
for i in 0..3 {
|
|
|
|
for j in 0..3 {
|
|
|
|
result[j][i] = matrix[i][j];
|
|
|
|
}
|
|
|
|
}
|
2023-11-29 10:39:24 -05:00
|
|
|
result
|
2022-12-21 16:36:30 +01:00
|
|
|
}
|
|
|
|
|
2025-02-18 15:13:16 -05:00
|
|
|
// ANCHOR: main
|
|
|
|
fn main() {
|
|
|
|
let matrix = [
|
|
|
|
[101, 102, 103], // <-- the comment makes rustfmt add a newline
|
|
|
|
[201, 202, 203],
|
|
|
|
[301, 302, 303],
|
|
|
|
];
|
|
|
|
|
|
|
|
println!("matrix: {:#?}", matrix);
|
|
|
|
let transposed = transpose(matrix);
|
|
|
|
println!("transposed: {:#?}", transposed);
|
|
|
|
}
|
|
|
|
// ANCHOR_END: main
|
|
|
|
// ANCHOR_END: solution
|
|
|
|
|
|
|
|
// This test does not appear in the exercise, as this is very early in the course, but it verifies
|
|
|
|
// that the solution is correct.
|
2022-12-21 16:36:30 +01:00
|
|
|
#[test]
|
|
|
|
fn test_transpose() {
|
|
|
|
let matrix = [
|
|
|
|
[101, 102, 103], //
|
|
|
|
[201, 202, 203],
|
|
|
|
[301, 302, 303],
|
|
|
|
];
|
|
|
|
let transposed = transpose(matrix);
|
|
|
|
assert_eq!(
|
|
|
|
transposed,
|
|
|
|
[
|
|
|
|
[101, 201, 301], //
|
|
|
|
[102, 202, 302],
|
|
|
|
[103, 203, 303],
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|