Update README.md

This commit is contained in:
Ananay 2023-02-17 22:31:00 +05:30 committed by GitHub
parent 6f0e5d13ed
commit 11831ea8ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,26 +2,26 @@
| Exercise | Book Chapter | | Exercise | Book Chapter |
| ---------------------- | ------------------- | | ---------------------- | ------------------- |
| variables | §3.1 | | [variables](https://github.com/An-Yay/rustlings/tree/main/exercises/variables) | §3.1 |
| functions | §3.3 | | [functions](https://github.com/An-Yay/rustlings/tree/main/exercises/functions) | §3.3 |
| if | §3.5 | | [if](https://github.com/An-Yay/rustlings/tree/main/exercises/if) | §3.5 |
| primitive_types | §3.2, §4.3 | | [primitive_types](https://github.com/An-Yay/rustlings/tree/main/exercises/primitive_types) | §3.2, §4.3 |
| vecs | §8.1 | | [vecs](https://github.com/An-Yay/rustlings/tree/main/exercises/vecs) | §8.1 |
| move_semantics | §4.1-2 | | [move_semantics](https://github.com/An-Yay/rustlings/tree/main/exercises/move_semantics) | §4.1-2 |
| structs | §5.1, §5.3 | | [structs](https://github.com/An-Yay/rustlings/tree/main/exercises/structs) | §5.1, §5.3 |
| enums | §6, §18.3 | | [enums](https://github.com/An-Yay/rustlings/tree/main/exercises/enums) | §6, §18.3 |
| strings | §8.2 | | [strings](https://github.com/An-Yay/rustlings/tree/main/exercises/strings) | §8.2 |
| modules | §7 | | [modules](https://github.com/An-Yay/rustlings/tree/main/exercises/modules) | §7 |
| hashmaps | §8.3 | | [hashmaps](https://github.com/An-Yay/rustlings/tree/main/exercises/hashmaps) | §8.3 |
| options | §10.1 | | [options](https://github.com/An-Yay/rustlings/tree/main/exercises/options) | §10.1 |
| error_handling | §9 | | [error_handling](https://github.com/An-Yay/rustlings/tree/main/exercises/error_handling) | §9 |
| generics | §10 | | [generics](https://github.com/An-Yay/rustlings/tree/main/exercises/generics) | §10 |
| traits | §10.2 | | [traits](https://github.com/An-Yay/rustlings/tree/main/exercises/traits) | §10.2 |
| tests | §11.1 | | [tests](https://github.com/An-Yay/rustlings/tree/main/exercises/tests) | §11.1 |
| lifetimes | §10.3 | | [lifetimes](https://github.com/An-Yay/rustlings/tree/main/exercises/lifetimes) | §10.3 |
| iterators | §13.2-4 | | [iterators](https://github.com/An-Yay/rustlings/tree/main/exercises/iterators) | §13.2-4 |
| threads | §16.1-3 | | [threads](https://github.com/An-Yay/rustlings/tree/main/exercises/threads) | §16.1-3 |
| smart_pointers | §15, §16.3 | | [smart_pointers](https://github.com/An-Yay/rustlings/tree/main/exercises/smart_pointers) | §15, §16.3 |
| macros | §19.6 | | [macros](https://github.com/An-Yay/rustlings/tree/main/exercises/macros) | §19.6 |
| clippy | §21.4 | | [clippy](https://github.com/An-Yay/rustlings/tree/main/exercises/clippy) | §21.4 |
| conversions | n/a | | [conversions](https://github.com/An-Yay/rustlings/tree/main/exercises/conversions) | n/a |