2026-03-12 20:54:14 -04:00
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
|
|
|
|
enum DivisionError {
|
|
|
|
|
// Example: 42 / 0
|
|
|
|
|
DivideByZero,
|
|
|
|
|
// Only case for `i64`: `i64::MIN / -1` because the result is `i64::MAX + 1`
|
|
|
|
|
IntegerOverflow,
|
|
|
|
|
// Example: 5 / 2 = 2.5
|
|
|
|
|
NotDivisible,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: Calculate `a` divided by `b` if `a` is evenly divisible by `b`.
|
|
|
|
|
// Otherwise, return a suitable error.
|
|
|
|
|
fn divide(a: i64, b: i64) -> Result<i64, DivisionError> {
|
2026-03-23 03:36:33 -04:00
|
|
|
match (a, b) {
|
|
|
|
|
(_, 0) => Err(DivisionError::DivideByZero),
|
|
|
|
|
(a, b) if a == i64::MIN && b == -1 => Err(DivisionError::IntegerOverflow),
|
|
|
|
|
(a, b) if a % b != 0 => Err(DivisionError::NotDivisible),
|
|
|
|
|
(a, b) => Ok(a / b),
|
|
|
|
|
}
|
2026-03-12 20:54:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: Add the correct return type and complete the function body.
|
|
|
|
|
// Desired output: `Ok([1, 11, 1426, 3])`
|
2026-03-23 03:36:33 -04:00
|
|
|
fn result_with_list() -> Result<Vec<i64>, DivisionError> {
|
2026-03-12 20:54:14 -04:00
|
|
|
let numbers = [27, 297, 38502, 81];
|
2026-03-23 03:36:33 -04:00
|
|
|
let result: Vec<i64> = numbers
|
|
|
|
|
.into_iter()
|
|
|
|
|
.map(|n| divide(n, 27))
|
|
|
|
|
.collect::<Result<Vec<i64>, DivisionError>>()?;
|
|
|
|
|
|
|
|
|
|
Ok(result)
|
2026-03-12 20:54:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: Add the correct return type and complete the function body.
|
|
|
|
|
// Desired output: `[Ok(1), Ok(11), Ok(1426), Ok(3)]`
|
2026-03-23 03:36:33 -04:00
|
|
|
fn list_of_results() -> Vec<Result<i64, DivisionError>> {
|
2026-03-12 20:54:14 -04:00
|
|
|
let numbers = [27, 297, 38502, 81];
|
2026-03-23 03:36:33 -04:00
|
|
|
let division_results: Vec<Result<i64, DivisionError>> = numbers
|
|
|
|
|
.into_iter()
|
|
|
|
|
.map(|n| divide(n, 27))
|
|
|
|
|
.collect::<Vec<Result<i64, DivisionError>>>();
|
|
|
|
|
|
|
|
|
|
division_results
|
2026-03-12 20:54:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
// You can optionally experiment here.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_success() {
|
|
|
|
|
assert_eq!(divide(81, 9), Ok(9));
|
|
|
|
|
assert_eq!(divide(81, -1), Ok(-81));
|
|
|
|
|
assert_eq!(divide(i64::MIN, i64::MIN), Ok(1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_divide_by_0() {
|
|
|
|
|
assert_eq!(divide(81, 0), Err(DivisionError::DivideByZero));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_integer_overflow() {
|
|
|
|
|
assert_eq!(divide(i64::MIN, -1), Err(DivisionError::IntegerOverflow));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_not_divisible() {
|
|
|
|
|
assert_eq!(divide(81, 6), Err(DivisionError::NotDivisible));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_divide_0_by_something() {
|
|
|
|
|
assert_eq!(divide(0, 81), Ok(0));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_result_with_list() {
|
|
|
|
|
assert_eq!(result_with_list().unwrap(), [1, 11, 1426, 3]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_list_of_results() {
|
|
|
|
|
assert_eq!(list_of_results(), [Ok(1), Ok(11), Ok(1426), Ok(3)]);
|
|
|
|
|
}
|
|
|
|
|
}
|