add solution links for recently added chapters

This commit is contained in:
sunface 2022-03-06 09:36:31 +08:00
parent 9405c576ff
commit 2a8e014329
4 changed files with 12 additions and 4 deletions

View File

@ -274,4 +274,6 @@ fn main() {
let w = Pretty("hello".to_string());
println!("w = {}", w);
}
```
```
> You can find the solutions [here](https://github.com/sunface/rust-by-practice)(under the solutions path), but only use it when you need it :)

View File

@ -140,4 +140,6 @@ pub enum Assert<const CHECK: bool> {}
pub trait IsTrue {}
impl IsTrue for Assert<true> {}
```
```
> You can find the solutions [here](https://github.com/sunface/rust-by-practice)(under the solutions path), but only use it when you need it :)

View File

@ -224,4 +224,6 @@ fn main() {
println!("Success!")
}
```
```
> You can find the solutions [here](https://github.com/sunface/rust-by-practice)(under the solutions path), but only use it when you need it :)

View File

@ -465,4 +465,6 @@ fn main() {
println!("Success!")
}
```
```
> You can find the solutions [here](https://github.com/sunface/rust-by-practice)(under the solutions path), but only use it when you need it :)