We can't find the internet
Attempting to reconnect
Something went wrong!
Hang in there while we get back on track
Modulo
What function in Elixir helps us compute the modulo remainer of an integer division.
Hint: h Integer.mod/2
Integer._(3, 3) == 0
Integer._(5, 2) == 1
Passed 0/2