getCoefficient method

int getCoefficient(
  1. int degree
)

Implementation

int getCoefficient(int degree) {
  return coefficients[getDegree() - degree];
}