We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db88855 commit 65295baCopy full SHA for 65295ba
_2024/day_1.rs
@@ -2,6 +2,7 @@ use std::cmp;
2
use std::fs;
3
4
5
+#[allow(dead_code)]
6
fn calculate_total_distance_diff(locations_a: Vec<u32>, locations_b: Vec<u32>) -> u32 {
7
let mut location_a = locations_a.clone();
8
let mut location_b = locations_b.clone();
_2025/day_5.rs
@@ -49,6 +49,7 @@ fn get_total_fresh_items(fresh_ids: Vec<String>) -> i64 {
49
total
50
}
51
52
53
fn get_total_available_fresh_items(fresh_ids: Vec<String>, available_ids: Vec<String>) -> i32 {
54
let mut total = 0;
55
0 commit comments