🚀Day 09/180 (Math) 50. Pow(x, n)(Leetcode)
50. Pow(x, n)
#180DaysOfDSA#DailyCodingChallenge #LeetCodeJourney #GeeksforGeeks #CodingNinjas #Codechef #CodeForces #ContinuousLearning #TechCommunity
class Solution {
public:
double myPow(double x, int n) {
double ans = 1.0;
if...
codecraze.hashnode.dev2 min read