invers method

int invers(
  1. int num
)

Implementation

int invers(int num) {
  return aLogTbl[(size - 1) - logTbl[num]];
}