Define the function normalizes that given a polynomial, it returns the corresponding polynomial, after being normalized.
Example:
normaliza [(1,2),(3,4),(3,2)]
[(4,1),(3,4)]
type Polinomio = [Monomio]
type Monomio = (Float,Int)
normaliz...
asked by
17.12.2017 / 11:46