You've already forked comprehensive-rust
mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-06-17 06:37:34 +02:00
I've taken some work by @fw-immunant and others on the new organization of the course and condensed it into a form amenable to a text editor and some computational analysis. You can see the inputs in `course.py` but the interesting bits are the output: `outline.md` and `slides.md`. The idea is to break the course into more, smaller segments with exercises at the ends and breaks in between. So `outline.md` lists the segments, their duration, and sums those durations up per-day. It shows we're about an hour too long right now! There are more details of the segments in `slides.md`, or you can see mostly the same stuff in `course.py`. This now contains all of the content from the v1 course, ensuring both that we've covered everything and that we'll have somewhere to redirect every page. Fixes #1082. Fixes #1465. --------- Co-authored-by: Nicole LeGare <dlegare.1001@gmail.com> Co-authored-by: Martin Geisler <mgeisler@google.com>
61 lines
1.5 KiB
Rust
61 lines
1.5 KiB
Rust
// 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.
|
|
|
|
// ANCHOR: solution
|
|
// 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];
|
|
}
|
|
}
|
|
result
|
|
}
|
|
|
|
// ANCHOR: tests
|
|
#[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],
|
|
]
|
|
);
|
|
}
|
|
// ANCHOR_END: tests
|
|
|
|
// 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
|