pub fn is_congruent(a: i64, b: i64, modulus: i64) -> bool
Returns true when a and b are congruent modulo modulus.
true
a
b
modulus
Returns false when modulus <= 0.
false
modulus <= 0