Remove pointless variable assignment.

This commit is contained in:
Brandon Scott 2022-12-09 01:47:05 -06:00
parent 2217a5d1ea
commit c9a483b2f4
1 changed files with 0 additions and 1 deletions

View File

@ -23,7 +23,6 @@ pub fn run() {
if current_elf_calories > 0 {
println!("Adding to current elf total: {:?}", current_elf_calories);
calorie_totals.push(current_elf_calories);
current_elf_calories = 0;
}
calorie_totals.sort();