I need to write a recursive function that receives 2 lists and returns a new list with the subtraction of the elements of the first ones, for example:
>>> subtrai([2, 3, 4, 5], [2, 3])
[4, 5]
I know that I need to know if an elem...
asked by
23.12.2018 / 19:54