Merge 74a8c7959f4fe6ff8e32bc1d979b3454c0bec525 into 064f057b102bd6bb0090d4ee3e307b40c28f4fa4

This commit is contained in:
Grimace of Despair 2026-03-13 10:05:03 +08:00 committed by GitHub
commit 260a9b5f8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,6 @@ fn array_and_vec() -> ([i32; 4], Vec<i32>) {
let a = [10, 20, 30, 40]; // Array
// TODO: Create a vector called `v` which contains the exact same elements as in the array `a`.
// Use the vector macro.
// let v = ???;
(a, v)