pub fn check_above_12(numeric_dates: &[Vec<i32>]) -> Option<bool>Expand description
Takes an array of numeric dates and tries to understand if the days come
before the month or the other way around by checking if numbers go above
12.
Output is true if days are first, false if they are second, or None if
it failed to understand the order.