Schrijf de functie x_tot_de_macht_m_min_x(m: int) -> list die de veelterm \(x^m - x\) teruggeeft.

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]