s426284/DALGLI0:zad3
master
@ -7,7 +7,7 @@ class Polynomial:
def __init__(self, coef_list):
self.degree = len(coef_list) - 1
self.coefficients = coef_list
self.coefficients = [x % Polynomial.n for x in coef_list]
@staticmethod
def add(p1, p2):
The note is not visible to the blocked user.