primitive_types4 solution

This commit is contained in:
mo8it
2024-06-08 23:42:15 +02:00
parent 0338b1cbdf
commit 98db579014
4 changed files with 28 additions and 9 deletions
+2 -2
View File
@@ -267,8 +267,8 @@ dir = "04_primitive_types"
hint = """
Take a look at the 'Understanding Ownership -> Slices -> Other Slices' section
of the book: https://doc.rust-lang.org/book/ch04-03-slices.html and use the
starting and ending (plus one) indices of the items in the `Array` that you
want to end up in the slice.
starting and ending (plus one) indices of the items in the array that you want
to end up in the slice.
If you're curious why the first argument of `assert_eq!` does not have an
ampersand for a reference since the second argument is a reference, take a look