Browse Source

update rust readme quest 01 to quest 03

content-update^2
davidrobert99 2 years ago
parent
commit
e5ebd60303
  1. 2
      subjects/arrays/README.md
  2. 6
      subjects/bigger/README.md
  3. 2
      subjects/borrow/README.md
  4. 4
      subjects/borrow_me_the_reference/README.md
  5. 4
      subjects/card_deck/README.md
  6. 4
      subjects/changes/README.md
  7. 2
      subjects/hashing/README.md
  8. 2
      subjects/simple_hash/README.md
  9. 4
      subjects/string_literals/README.md
  10. 2
      subjects/string_permutation/README.md

2
subjects/arrays/README.md

@ -11,7 +11,7 @@ Write a **function** that takes an array of i32 and returns the sum of the eleme
### Notions
[arrays](https://doc.rust-lang.org/std/primitive.array.html)
- [arrays](https://doc.rust-lang.org/std/primitive.array.html)
### Expected functions

6
subjects/bigger/README.md

@ -6,11 +6,7 @@ Create the function `bigger` that gets the biggest positive number in the `HashM
### Notions
[hash maps](https://doc.rust-lang.org/book/ch08-03-hash-maps.html)
### Dependencies
rand = "0.7"
- [hash maps](https://doc.rust-lang.org/book/ch08-03-hash-maps.html)
### Expected Function

2
subjects/borrow/README.md

@ -13,7 +13,7 @@ pub fn str_len(s: ) -> usize {
### Notions
[Primitive Type str](https://doc.rust-lang.org/std/primitive.str.html)
- [Primitive Type str](https://doc.rust-lang.org/std/primitive.str.html)
### Usage

4
subjects/borrow_me_the_reference/README.md

@ -28,8 +28,8 @@ pub fn is_correct(v: &mut Vec<&str>) -> usize {
### Notions
- https://doc.rust-lang.org/book/ch04-00-understanding-ownership.html
- https://docs.rs/meval/0.2.0/meval/
- [ownership](https://doc.rust-lang.org/book/ch04-00-understanding-ownership.html)
- [meval](https://docs.rs/meval/0.2.0/meval/)
### Usage

4
subjects/card_deck/README.md

@ -25,8 +25,8 @@ Define:
### Notions
[Crate rand](https://docs.rs/rand/0.3.14/rand/)
[Enums](https://doc.rust-lang.org/book/ch06-00-enums.html)
- [Crate rand](https://docs.rs/rand/0.3.14/rand/)
- [Enums](https://doc.rust-lang.org/book/ch06-00-enums.html)
### Dependencies

4
subjects/changes/README.md

@ -10,8 +10,8 @@ Define the **function** `change_brightness` that receives a `Vec` of lights, an
### Notions
[Example of Structs](https://doc.rust-lang.org/book/ch05-02-example-structs.html)
[Keyword Self](https://doc.rust-lang.org/std/keyword.Self.html)
- [Example of Structs](https://doc.rust-lang.org/book/ch05-02-example-structs.html)
- [Keyword Self](https://doc.rust-lang.org/std/keyword.Self.html)
### Expected Functions and Structure

2
subjects/hashing/README.md

@ -13,7 +13,7 @@ that appears more often).
### Notions
[hash maps](https://doc.rust-lang.org/book/ch08-03-hash-maps.html)
- [hash maps](https://doc.rust-lang.org/book/ch08-03-hash-maps.html)
### Expected Functions

2
subjects/simple_hash/README.md

@ -10,7 +10,7 @@ Create a **function** `remove` that removes a given key from the `HashMap`.
### Notions
- https://doc.rust-lang.org/rust-by-example/std/hash.html
- [HashMap](https://doc.rust-lang.org/rust-by-example/std/hash.html)
### Expected functions

4
subjects/string_literals/README.md

@ -15,8 +15,8 @@ Create the following functions:
### Notions
- https://doc.rust-lang.org/1.22.0/book/first-edition/the-stack-and-the-heap.html
- https://doc.rust-lang.org/rust-by-example/primitives/literals.html
- [stack and heap](https://doc.rust-lang.org/1.22.0/book/first-edition/the-stack-and-the-heap.html)
- [Literals](https://doc.rust-lang.org/rust-by-example/primitives/literals.html)
### Expected Functions

2
subjects/string_permutation/README.md

@ -9,7 +9,7 @@ Define the **function** `is_permutation` that returns true if:
### Notions
[hash maps](https://doc.rust-lang.org/book/ch08-03-hash-maps.html)
- [hash maps](https://doc.rust-lang.org/book/ch08-03-hash-maps.html)
### Expected Function

Loading…
Cancel
Save