| 9 | * The members of array are coefficients and their indexes as exponents. |
| 10 | */ |
| 11 | class Polynomial { |
| 12 | constructor(array) { |
| 13 | this.coefficientArray = array // array of coefficients |
| 14 | this.polynomial = '' // in terms of x e.g., (2x) + (1) |
nothing calls this directly
no outgoing calls
no test coverage detected