/// Calculates the factorial (`n!`) of a given number `n`.
///
/// # Arguments
///
/// * `n` - A positive integer representing the number to calculate the factorial of.
///
/// # Examples
///
/// ```
/// use numberlab::formula::arithmetic::factorial;
///
/// let result = factorial(5);
/// assert_eq!(result, 120);
/// ```