Search posts, tags, users, and pages
Amit singh
class Solution { public double myPow(double baseVal, int expVal) { long expLong = expVal; if (expLong < 0) { baseVal = 1 / baseVal; expLong = -expLong; } return fastPowCalc(baseVal, expLong...
No responses yet.