Compare commits
No commits in common. "07b0bf755852d84190f13485416256487a057303" and "0d7097dbf84b619dd9657a5f86afba00af2a5928" have entirely different histories.
07b0bf7558
...
0d7097dbf8
@ -1,10 +1,10 @@
|
|||||||
use advent_of_code::{prob1, prob2};
|
use advent_of_code::prob1;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let args: Vec<String> = std::env::args().collect();
|
let args: Vec<String> = std::env::args().collect();
|
||||||
let file_path = args
|
let file_path = args
|
||||||
.get(1)
|
.get(1)
|
||||||
.expect("Please provide an argument on command-line.");
|
.expect("Please provide an argument on command-line.");
|
||||||
let max = prob2::solve_part1(file_path);
|
let max = prob1::solve_part2(file_path);
|
||||||
println!("{max}");
|
println!("{max}");
|
||||||
}
|
}
|
||||||
|
@ -40,10 +40,7 @@ impl From<char> for Play {
|
|||||||
'X' => Play::Rock,
|
'X' => Play::Rock,
|
||||||
'Y' => Play::Paper,
|
'Y' => Play::Paper,
|
||||||
'Z' => Play::Scissors,
|
'Z' => Play::Scissors,
|
||||||
other => panic!(
|
_ => panic!("Only A, B, C, X, Y or Z letters are available."),
|
||||||
"Only A, B, C, X, Y or Z letters are available. Had {}",
|
|
||||||
other
|
|
||||||
),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -62,39 +59,17 @@ pub fn round_score(play: char, counter_play: char) -> i32 {
|
|||||||
let coup = Play::from(play); // translate to the play
|
let coup = Play::from(play); // translate to the play
|
||||||
let counter = Play::from(counter_play); // translate to the play
|
let counter = Play::from(counter_play); // translate to the play
|
||||||
if coup == counter {
|
if coup == counter {
|
||||||
let draw: i32 = ResultPlay::Draw.into();
|
(ResultPlay::Draw as i32) + (counter_play as i32)
|
||||||
let result: i32 = counter.into();
|
|
||||||
draw + result
|
|
||||||
} else {
|
} else {
|
||||||
use Play::*;
|
use Play::*;
|
||||||
use ResultPlay::*;
|
use ResultPlay::*;
|
||||||
let loss: i32 = Loss.into();
|
|
||||||
let win: i32 = Win.into();
|
|
||||||
match (&coup, &counter) {
|
match (&coup, &counter) {
|
||||||
(Rock, Paper) => {
|
(Rock, Paper) => (Win as i32) + (counter as i32),
|
||||||
let result: i32 = counter.into();
|
(Rock, Scissors) => (Loss as i32) + (counter as i32),
|
||||||
win + result
|
(Paper, Rock) => (Loss as i32) + (counter as i32),
|
||||||
}
|
(Paper, Scissors) => (Win as i32) + (counter as i32),
|
||||||
(Rock, Scissors) => {
|
(Scissors, Rock) => (Win as i32) + (counter as i32),
|
||||||
let result: i32 = counter.into();
|
(Scissors, Paper) => (Loss as i32) + (counter as i32),
|
||||||
loss + result
|
|
||||||
}
|
|
||||||
(Paper, Rock) => {
|
|
||||||
let result: i32 = counter.into();
|
|
||||||
loss + result
|
|
||||||
}
|
|
||||||
(Paper, Scissors) => {
|
|
||||||
let result: i32 = counter.into();
|
|
||||||
win + result
|
|
||||||
}
|
|
||||||
(Scissors, Rock) => {
|
|
||||||
let result: i32 = counter.into();
|
|
||||||
win + result
|
|
||||||
}
|
|
||||||
(Scissors, Paper) => {
|
|
||||||
let result: i32 = counter.into();
|
|
||||||
loss + result
|
|
||||||
}
|
|
||||||
_ => panic!("Case not covered, impossible to reach."),
|
_ => panic!("Case not covered, impossible to reach."),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user