Coding challenge was to hand write a function that will add, subtract, multiply, and divide only using addition and subtraction.
Anonimo
Adding and subtracting were easy. Multiplying is just adding with a loop. They allowed you to drop remainders so you subtract by a number until the mod is less than the number in a while loop.