1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2026-03-06 20:31:38 +01:00
rustlings/solutions
2025-12-19 19:32:24 +05:30
..
00_intro Add solutions to bins 2024-05-25 18:19:30 +02:00
01_variables Apply Clippy lints 2025-05-12 20:31:13 +02:00
02_functions Only take a u8 to avoid huge output 2024-08-17 14:59:00 +02:00
03_if Apply 2024 edition formatting to solutions 2025-02-21 13:08:34 +01:00
04_primitive_types primitive_types6 solution 2024-06-19 14:25:29 +02:00
05_vecs Remove use of map in early vecs2 exercise 2025-09-24 21:19:40 +02:00
06_move_semantics Remove TODO from 2 solutions 2025-03-17 18:36:13 +01:00
07_structs structs3 solution 2024-06-21 22:54:00 +02:00
08_enums Avoid single char variables 2024-10-09 15:27:36 +02:00
09_strings Update solution files to match exercise files 2025-12-19 19:32:24 +05:30
10_modules Allow dead code for all exercises and solutions 2024-09-13 14:56:46 +02:00
11_hashmaps Update solution files to match exercise files 2025-12-19 19:32:24 +05:30
12_options Update solution files to match exercise files 2025-12-19 19:32:24 +05:30
13_error_handling Update solution files to match exercise files 2025-12-19 19:32:24 +05:30
14_generics generics2 solution 2024-06-27 02:25:11 +02:00
15_traits Allow dead code for all exercises and solutions 2024-09-13 14:56:46 +02:00
16_lifetimes Update solution files to match exercise files 2025-12-19 19:32:24 +05:30
17_tests tests3: Fix panic message 2024-07-22 12:02:59 +02:00
18_iterators Sync solution 2025-08-21 23:46:37 +02:00
19_smart_pointers Remove TODO from 2 solutions 2025-03-17 18:36:13 +01:00
20_threads threads1: Fix typos in description 2024-10-22 16:53:23 +11:00
21_macros Update solution files to match exercise files 2025-12-19 19:32:24 +05:30
22_clippy Fix clippy3 2025-11-20 12:49:27 +01:00
23_conversions Do not use .as_bytes().len() on strings 2024-09-22 10:49:55 +02:00
quizzes Apply 2024 edition formatting to solutions 2025-02-21 13:08:34 +01:00
README.md Fix typo 2024-08-09 12:47:32 +02:00

Official Rustlings solutions

Before you finish an exercise, its solution file will only contain an empty main function. The content of this file will be automatically replaced by the actual solution once you finish the exercise.

Note that these solutions are often only one possibility to solve an exercise.