modSub function

int modSub(
  1. int a,
  2. int b,
  3. int m
)

Implementation

int modSub(int a, int b, int m) => mod(a - b, m);