Implement a function to compute cubic root what is the time complexity?
Anónimo
There are two traps in this question if you use binary search: 1. the value can be negative 2. the cubic root of any values between -1 and 1 is larger than the value I avoided the first but failed on the second