find_remainder

Function find_remainder 

Source
pub fn find_remainder(a: isize, b: isize) -> isize
Expand description

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);