From 11831ea8ad06771bad19107a27f9fc9a3e75bf38 Mon Sep 17 00:00:00 2001 From: Ananay Date: Fri, 17 Feb 2023 22:31:00 +0530 Subject: [PATCH] Update README.md --- exercises/README.md | 46 ++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/exercises/README.md b/exercises/README.md index c7effa95..d6bae1dd 100644 --- a/exercises/README.md +++ b/exercises/README.md @@ -2,26 +2,26 @@ | Exercise | Book Chapter | | ---------------------- | ------------------- | -| variables | §3.1 | -| functions | §3.3 | -| if | §3.5 | -| primitive_types | §3.2, §4.3 | -| vecs | §8.1 | -| move_semantics | §4.1-2 | -| structs | §5.1, §5.3 | -| enums | §6, §18.3 | -| strings | §8.2 | -| modules | §7 | -| hashmaps | §8.3 | -| options | §10.1 | -| error_handling | §9 | -| generics | §10 | -| traits | §10.2 | -| tests | §11.1 | -| lifetimes | §10.3 | -| iterators | §13.2-4 | -| threads | §16.1-3 | -| smart_pointers | §15, §16.3 | -| macros | §19.6 | -| clippy | §21.4 | -| conversions | n/a | +| [variables](https://github.com/An-Yay/rustlings/tree/main/exercises/variables) | §3.1 | +| [functions](https://github.com/An-Yay/rustlings/tree/main/exercises/functions) | §3.3 | +| [if](https://github.com/An-Yay/rustlings/tree/main/exercises/if) | §3.5 | +| [primitive_types](https://github.com/An-Yay/rustlings/tree/main/exercises/primitive_types) | §3.2, §4.3 | +| [vecs](https://github.com/An-Yay/rustlings/tree/main/exercises/vecs) | §8.1 | +| [move_semantics](https://github.com/An-Yay/rustlings/tree/main/exercises/move_semantics) | §4.1-2 | +| [structs](https://github.com/An-Yay/rustlings/tree/main/exercises/structs) | §5.1, §5.3 | +| [enums](https://github.com/An-Yay/rustlings/tree/main/exercises/enums) | §6, §18.3 | +| [strings](https://github.com/An-Yay/rustlings/tree/main/exercises/strings) | §8.2 | +| [modules](https://github.com/An-Yay/rustlings/tree/main/exercises/modules) | §7 | +| [hashmaps](https://github.com/An-Yay/rustlings/tree/main/exercises/hashmaps) | §8.3 | +| [options](https://github.com/An-Yay/rustlings/tree/main/exercises/options) | §10.1 | +| [error_handling](https://github.com/An-Yay/rustlings/tree/main/exercises/error_handling) | §9 | +| [generics](https://github.com/An-Yay/rustlings/tree/main/exercises/generics) | §10 | +| [traits](https://github.com/An-Yay/rustlings/tree/main/exercises/traits) | §10.2 | +| [tests](https://github.com/An-Yay/rustlings/tree/main/exercises/tests) | §11.1 | +| [lifetimes](https://github.com/An-Yay/rustlings/tree/main/exercises/lifetimes) | §10.3 | +| [iterators](https://github.com/An-Yay/rustlings/tree/main/exercises/iterators) | §13.2-4 | +| [threads](https://github.com/An-Yay/rustlings/tree/main/exercises/threads) | §16.1-3 | +| [smart_pointers](https://github.com/An-Yay/rustlings/tree/main/exercises/smart_pointers) | §15, §16.3 | +| [macros](https://github.com/An-Yay/rustlings/tree/main/exercises/macros) | §19.6 | +| [clippy](https://github.com/An-Yay/rustlings/tree/main/exercises/clippy) | §21.4 | +| [conversions](https://github.com/An-Yay/rustlings/tree/main/exercises/conversions) | n/a |