class Polynomial { constructor (array) { this.coefficientArray = array // array of coefficients this.polynomial = '' // in terms of x e.g. (2x) + (1) this<
京公网安备 11010502049817号