check_input_parameters

Check the input parameters for the day_of_week function.

Arguments

  • date - The date of the month
  • month - The month of the year
  • year - The year

Returns

  • true - If the input parameters are valid
  • false - If the input parameters are invalid

Fully qualified path: alexandria_math::zellers_congruence::check_input_parameters

#![allow(unused)]
fn main() {
pub fn check_input_parameters(date: u128, month: u128, year: u128) -> bool
}