mirror of
https://github.com/Sosokker/Calculator-for-Matrix-and-Algebra.git
synced 2025-12-18 20:54:05 +01:00
6 lines
189 B
Python
6 lines
189 B
Python
from parser.parser import polynomial_parse
|
|
|
|
class Polynomial:
|
|
def __init__(self, poly):
|
|
self.coeff = polynomial_parse(poly)
|
|
self.degree = len(polynomial_parse(poly)) - 1 |