Create a function that returns the integral part from the result of a division between two numbers. This process of division can be achieved via repetitive subtraction, thus, it can be done recursively.
divide(10, 2) ➞ 5
divide(-51, -4) ➞ 12
divide(3, 9) ➞ 0
divide(-21, 5) ➞ -4
divide(1024, 7) ➞ 146
divide(273, -6) ➞ -45