Schrijf de functie x_tot_de_macht_m_min_x(m: int) -> list die de veelterm \(x^m - x\) teruggeeft.
x_tot_de_macht_m_min_x(m: int) -> list
Voorbeelden:
>>> x_tot_de_macht_m_min_x(2) [1, -1, 0] >>> x_tot_de_macht_m_min_x(3) [1, 0, -1, 0] >>> x_tot_de_macht_m_min_x(4) [1, 0, 0, -1, 0]