mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-21 13:32:23 -05:00
clippy3 solution
This commit is contained in:
parent
a0e810b471
commit
09c94bef2d
2 changed files with 38 additions and 6 deletions
|
@ -1,25 +1,27 @@
|
||||||
// Here's a couple more easy Clippy fixes, so you can see its utility.
|
// Here are some more easy Clippy fixes so you can see its utility 📎
|
||||||
|
// TODO: Fix all the Clippy lints.
|
||||||
|
|
||||||
|
#[rustfmt::skip]
|
||||||
#[allow(unused_variables, unused_assignments)]
|
#[allow(unused_variables, unused_assignments)]
|
||||||
fn main() {
|
fn main() {
|
||||||
let my_option: Option<()> = None;
|
let my_option: Option<()> = None;
|
||||||
if my_option.is_none() {
|
if my_option.is_none() {
|
||||||
my_option.unwrap();
|
println!("{:?}", my_option.unwrap());
|
||||||
}
|
}
|
||||||
|
|
||||||
let my_arr = &[
|
let my_arr = &[
|
||||||
-1, -2, -3
|
-1, -2, -3
|
||||||
-4, -5, -6
|
-4, -5, -6
|
||||||
];
|
];
|
||||||
println!("My array! Here it is: {:?}", my_arr);
|
println!("My array! Here it is: {my_arr:?}");
|
||||||
|
|
||||||
let my_empty_vec = vec![1, 2, 3, 4, 5].resize(0, 5);
|
let my_empty_vec = vec![1, 2, 3, 4, 5].resize(0, 5);
|
||||||
println!("This Vec is empty, see? {:?}", my_empty_vec);
|
println!("This Vec is empty, see? {my_empty_vec:?}");
|
||||||
|
|
||||||
let mut value_a = 45;
|
let mut value_a = 45;
|
||||||
let mut value_b = 66;
|
let mut value_b = 66;
|
||||||
// Let's swap these two!
|
// Let's swap these two!
|
||||||
value_a = value_b;
|
value_a = value_b;
|
||||||
value_b = value_a;
|
value_b = value_a;
|
||||||
println!("value a: {}; value b: {}", value_a, value_b);
|
println!("value a: {value_a}; value b: {value_b}");
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1,31 @@
|
||||||
// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
|
use std::mem;
|
||||||
|
|
||||||
|
#[rustfmt::skip]
|
||||||
|
#[allow(unused_variables, unused_assignments)]
|
||||||
|
fn main() {
|
||||||
|
let my_option: Option<()> = None;
|
||||||
|
// `unwrap` of an `Option` after checking if it is `None` will panic.
|
||||||
|
// Use `if-let` instead.
|
||||||
|
if let Some(value) = my_option {
|
||||||
|
println!("{value:?}");
|
||||||
|
}
|
||||||
|
|
||||||
|
// A comma was missing.
|
||||||
|
let my_arr = &[
|
||||||
|
-1, -2, -3,
|
||||||
|
-4, -5, -6,
|
||||||
|
];
|
||||||
|
println!("My array! Here it is: {:?}", my_arr);
|
||||||
|
|
||||||
|
let mut my_empty_vec = vec![1, 2, 3, 4, 5];
|
||||||
|
// `resize` mutates a vector instead of returning a new one.
|
||||||
|
// `resize(0, …)` clears a vector, so it is better to use `clear`.
|
||||||
|
my_empty_vec.clear();
|
||||||
|
println!("This Vec is empty, see? {my_empty_vec:?}");
|
||||||
|
|
||||||
|
let mut value_a = 45;
|
||||||
|
let mut value_b = 66;
|
||||||
|
// Use `mem::swap` to correctly swap two values.
|
||||||
|
mem::swap(&mut value_a, &mut value_b);
|
||||||
|
println!("value a: {}; value b: {}", value_a, value_b);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue