feat: completed solutions

This commit is contained in:
2026-03-23 03:36:33 -04:00
parent 2279bea6f1
commit f568c094cb
65 changed files with 424 additions and 139 deletions
+3 -3
View File
@@ -39,7 +39,7 @@ mod tests {
let mut input = Cow::from(&vec);
abs_all(&mut input);
// TODO: Replace `todo!()` with `Cow::Owned(_)` or `Cow::Borrowed(_)`.
assert!(matches!(input, todo!()));
assert!(matches!(input, Cow::Borrowed(_)));
}
#[test]
@@ -52,7 +52,7 @@ mod tests {
let mut input = Cow::from(vec);
abs_all(&mut input);
// TODO: Replace `todo!()` with `Cow::Owned(_)` or `Cow::Borrowed(_)`.
assert!(matches!(input, todo!()));
assert!(matches!(input, Cow::Owned(_)));
}
#[test]
@@ -64,6 +64,6 @@ mod tests {
let mut input = Cow::from(vec);
abs_all(&mut input);
// TODO: Replace `todo!()` with `Cow::Owned(_)` or `Cow::Borrowed(_)`.
assert!(matches!(input, todo!()));
assert!(matches!(input, Cow::Owned(_)));
}
}