diff options
| -rw-r--r-- | Week7/src/polynomial/Polynomial.java | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/Week7/src/polynomial/Polynomial.java b/Week7/src/polynomial/Polynomial.java index 86f060b..f7b1194 100644 --- a/Week7/src/polynomial/Polynomial.java +++ b/Week7/src/polynomial/Polynomial.java @@ -17,7 +17,9 @@ import java.util.Scanner;  public class Polynomial {      /** -     * A polynomial is a sequence of terms here kept in an List +     * A polynomial is a sequence of terms here kept in an List. +     * The assignment tells us 'it's handy' when terms are ordered by exponent. +     * We don't seem to need that though, so there's no need to implement it.       */      List<Term> terms; | 
