Write a function that divides one number by another, without using the division operator, and make it better than O(n).
Anonymous
Use logarithms? O(1) log(x/y) = log(x) - log(y) = log(answer) answer = 10 ^ log(answer)
Check out your Company Bowl for anonymous work chats.