Clippy suggestions
This commit is contained in:
parent
92306ca539
commit
0db7712260
1 changed files with 4 additions and 4 deletions
|
@ -11,7 +11,7 @@ fn main() {
|
|||
let reader = io::BufReader::new(file);
|
||||
|
||||
println!("PART ONE ---------------");
|
||||
let lines = reader.lines().try_collect().expect("Expected all lines to be valid");
|
||||
let lines: Vec<String> = reader.lines().try_collect().expect("Expected all lines to be valid");
|
||||
part1(&lines);
|
||||
|
||||
println!("\n PART TWO ---------------");
|
||||
|
@ -28,11 +28,11 @@ fn to_priority(c: char) -> Result<u32, &'static str> {
|
|||
}
|
||||
}
|
||||
|
||||
fn part1(lines: &Vec<String>) {
|
||||
fn part1(lines: &[String]) {
|
||||
let mut sum: u32 = 0;
|
||||
for line in lines {
|
||||
let (left, right) = line.split_at(line.len() / 2);
|
||||
let left_set = HashSet::<char>::from_iter(left.chars());
|
||||
let left_set: HashSet<char> = left.chars().collect();
|
||||
let mut right_set = HashSet::<char>::new();
|
||||
let outlier = right.chars().find(|c| {
|
||||
right_set.insert(*c);
|
||||
|
@ -47,7 +47,7 @@ fn part1(lines: &Vec<String>) {
|
|||
println!("Sum: {}", sum);
|
||||
}
|
||||
|
||||
fn part2(_lines: &Vec<String>) {
|
||||
fn part2(_lines: &[String]) {
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
|
|
Loading…
Reference in a new issue