mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-26 13:20:32 +01:00
Replace format("{}") with .to_string() where possible.
This commit is contained in:
@@ -50,7 +50,7 @@ impl common::Solution for Day02 {
|
||||
}
|
||||
}
|
||||
|
||||
return format!("{}", twos * threes);
|
||||
(twos * threes).to_string()
|
||||
}
|
||||
|
||||
fn part2(&mut self, input: &mut io::Read) -> String {
|
||||
|
||||
Reference in New Issue
Block a user