I’m trying to write a recursive function that takes two parameters – an integer input, n, and an integer base, m – and returns a string representation of the number in Base m. I’m stuck can someone help? Answer You forgot to include base in recursive call And to reduce complexity, the …