feat: 🎸 added solutions for clippy exercises

This commit is contained in:
Karan Kadam 2022-12-28 11:55:03 +10:30
parent 9e6f99d90f
commit 85ba2e3c7b
3 changed files with 11 additions and 18 deletions

View File

@ -6,15 +6,13 @@
// check clippy's suggestions from the output to solve the exercise.
// Execute `rustlings hint clippy1` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
use std::f32;
use std::f32::consts::PI;
fn main() {
let pi = 3.14f32;
let radius = 5.00f32;
let area = pi * f32::powi(radius, 2);
let area = PI * f32::powi(radius, 2);
println!(
"The area of a circle with radius {:.2} is {:.5}!",

View File

@ -1,12 +1,10 @@
// clippy2.rs
// Execute `rustlings hint clippy2` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
let mut res = 42;
let option = Some(12);
for x in option {
if let Some(x) = option {
res += x;
}
println!("{}", res);

View File

@ -1,28 +1,25 @@
// clippy3.rs
// Here's a couple more easy Clippy fixes, so you can see its utility.
// I AM NOT DONE
#[allow(unused_variables, unused_assignments)]
fn main() {
let my_option: Option<()> = None;
if my_option.is_none() {
if let Some(x) = my_option {
my_option.unwrap();
}
let my_arr = &[
-1, -2, -3
-4, -5, -6
];
let my_arr = &[-1, -2, -3, -4, -5, -6];
println!("My array! Here it is: {:?}", my_arr);
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? {:?}",
vec![1, 2, 3, 4, 5].resize(0, 5)
);
let mut value_a = 45;
let mut value_b = 66;
// Let's swap these two!
value_a = value_b;
value_b = value_a;
std::mem::swap(&mut value_a, &mut value_b);
println!("value a: {}; value b: {}", value_a, value_b);
}