The calculator module supports add, subtract, multiply, divide, and power. We should add a modulo function that returns the remainder of a division. Acceptance criteria: - Function named modulo(a, b) - Returns a % b - Raises ValueError when b == 0
The calculator module supports add, subtract, multiply, divide, and power.
We should add a modulo function that returns the remainder of a division.
Acceptance criteria: