pub fn find_remainder(a: isize, b: isize) -> isize
Finds the remainder of the numbers together.
Example
let num1 = 11; let num2 = 2; let answer = math_crate::find_remainder(num1, num2); assert_eq!(1);