rust-by-practice icon indicating copy to clipboard operation
rust-by-practice copied to clipboard

Learning Rust By Practice, narrowing the gap between beginner and skilled-dev through challenging examples, exercises and projects.

Results 83 rust-by-practice issues
Sort by recently updated
recently updated
newest added

If you look at the video below, the next button in the index chapters isn't clickable, like it is in child chapters. [screen-capture.webm](https://github.com/sunface/rust-by-practice/assets/11130898/b3dded91-6c1f-4a34-a37c-a5bb99abe0ea)

I have added only exercise, soon Ill add notes and solution wrt to file.

This project is wonderful and convenient, which allows me learn and try rust on my phone whenever am free. And I am also learning c++, though that might not be...

solutions/ownership/borrowing.md In solution 11, the last line is `r1.push_str` - it should be `r2.push_str` I'd like to solve this and push if possible

# New editor shortcut keys for smoother use. ### Shortcut key list - reset:ctrl/cmd + i - copy:ctrl/cmd + c - run:ctrl/cmd + enter ### Sample graph ![20240307-153339](https://github.com/sunface/rust-by-practice/assets/26102884/570b787c-7b77-458e-9547-ebcc35eba607)

Bumps [mio](https://github.com/tokio-rs/mio) from 0.8.5 to 0.8.11. Changelog Sourced from mio's changelog. 0.8.11 Fix receiving IOCP events after deregistering a Windows named pipe (tokio-rs/mio#1760, backport pr: tokio-rs/mio#1761). 0.8.10 Added Solaris support...

dependencies

hashmap 章节第二题 答案如下 ```rust use std::collections::HashMap; fn main() { let teams = [ ("Chinese Team", 100), ("American Team", 10), ("France Team", 50), ]; let mut teams_map1 = HashMap::new(); for team...

I was really confused, why should I print out the result of subtracting two numbers in a loop (even though I'm very much aware of the ASCII characters). I hope...