Python program to implement pow(x, n)Finding powers of multiple array pairsPython graph challengeCount numbers with atleast one common factor, excluding one (updated)Efficient integer input / output (with a use case)Implement OO interfaces in PythonCalculate co-occurrences of some words in documents datasetImplement LinkedList class in pythonCompare every combination of variables within the powersetImplement BinarySearchTree class in pythonPython program for a simple calculator

I think I may have violated academic integrity last year - what should I do?

Adding spaces to string based on list

Installed Electric Tankless Water Heater - Internet loss when active

Would jet fuel for an F-16 or F-35 be producible during WW2?

Why is this Simple Puzzle impossible to solve?

Employer asking for online access to bank account - Is this a scam?

Is there a way to make it so the cursor is included when I prtscr key?

Simple function that simulates survey results based on sample size and probability

Where is the logic in castrating fighters?

Is the field of q-series 'dead'?

Why did David Cameron offer a referendum on the European Union?

How should I introduce map drawing to my players?

the meaning of 'carry' in a novel

Pirate democracy at its finest

Line of lights moving in a straight line , with a few following

Use backslash or single-quotes for field separation

Count Even Digits In Number

Is the Starlink array really visible from Earth?

Ticket to ride, 1910: What are the big cities

In general, would I need to season a meat when making a sauce?

Why does Mjolnir fall down in Age of Ultron but not in Endgame?

What is quasi-aromaticity?

What are these arcade games in Ghostbusters 1984?

Why does this if-statement combining assignment and an equality check return true?



Python program to implement pow(x, n)


Finding powers of multiple array pairsPython graph challengeCount numbers with atleast one common factor, excluding one (updated)Efficient integer input / output (with a use case)Implement OO interfaces in PythonCalculate co-occurrences of some words in documents datasetImplement LinkedList class in pythonCompare every combination of variables within the powersetImplement BinarySearchTree class in pythonPython program for a simple calculator






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1












$begingroup$


This is a Leetcode problem:




Implement pow(x, n), which calculates x raised to the power n ($x^n$).



Note -



  • -100.0 < x < 100.0


  • n is a 32-bit signed integer, within the range [$-2^31$, $2^31$ − 1]




def pow(x, n):
if n == 0:
return 1
if x == 0 and n < 0:
return
result = 1
if n > 0:
while n > 0:
pre_result = result
result *= x
if pre_result == result or pre_result == -result:
if result >= 0:
return result
if n % 2 == 0:
return -result
else:
return result
n -= 1
return result
else:
while n < 0:
pre_result = result
result /= x
if pre_result == result or pre_result == -result:
if result >= 0:
return result
if n % 2 == 0:
return -result
else:
return result
n += 1
return result


NOTE - My solution is $O(n)$.



Here are some example inputs/outputs:



#print(pow(2.00000, 10))

>>> 1024.0

#print(pow(2.10000, 3))

>>> 9.261

#print(pow(2.00000, -2))

>>> 0.25

#print(pow(-1.00000, -2147483648))

>>> 1.0


Here are the times taken for each output:



#%timeit pow(2.00000, 10)

>>> 1.88 µs ± 14 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

#%timeit pow(2.10000, 3)

>>> 805 ns ± 17.2 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

#%timeit pow(2.00000, -2)

>>> 643 ns ± 9.55 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

#%timeit pow(-1.00000, -2147483648)

>>> 594 ns ± 20 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)


So, I would like to know whether I could make this program shorter and more efficient.



Any help would be highly appreciated.










share|improve this question









$endgroup$











  • $begingroup$
    I'm assuming you're trying to reinvent the wheel here and importing a function from a library is out?
    $endgroup$
    – Mast
    9 hours ago










  • $begingroup$
    Python does has it's own pow() function.
    $endgroup$
    – Mast
    9 hours ago










  • $begingroup$
    @Mast - Yes, according to Leetcode, I am trying to reinvent Python's pow() function.
    $endgroup$
    – Justin
    9 hours ago










  • $begingroup$
    Is your code supposed to work for all -100.0 < x < 100.0 and 32-bit integers n? As an example, pow(10.0, 1000000) returns inf.
    $endgroup$
    – Martin R
    8 hours ago











  • $begingroup$
    @MartinR - I should think so. If not, is there any way to do that? I'm concerned mainly about efficiency.
    $endgroup$
    – Justin
    8 hours ago


















1












$begingroup$


This is a Leetcode problem:




Implement pow(x, n), which calculates x raised to the power n ($x^n$).



Note -



  • -100.0 < x < 100.0


  • n is a 32-bit signed integer, within the range [$-2^31$, $2^31$ − 1]




def pow(x, n):
if n == 0:
return 1
if x == 0 and n < 0:
return
result = 1
if n > 0:
while n > 0:
pre_result = result
result *= x
if pre_result == result or pre_result == -result:
if result >= 0:
return result
if n % 2 == 0:
return -result
else:
return result
n -= 1
return result
else:
while n < 0:
pre_result = result
result /= x
if pre_result == result or pre_result == -result:
if result >= 0:
return result
if n % 2 == 0:
return -result
else:
return result
n += 1
return result


NOTE - My solution is $O(n)$.



Here are some example inputs/outputs:



#print(pow(2.00000, 10))

>>> 1024.0

#print(pow(2.10000, 3))

>>> 9.261

#print(pow(2.00000, -2))

>>> 0.25

#print(pow(-1.00000, -2147483648))

>>> 1.0


Here are the times taken for each output:



#%timeit pow(2.00000, 10)

>>> 1.88 µs ± 14 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

#%timeit pow(2.10000, 3)

>>> 805 ns ± 17.2 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

#%timeit pow(2.00000, -2)

>>> 643 ns ± 9.55 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

#%timeit pow(-1.00000, -2147483648)

>>> 594 ns ± 20 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)


So, I would like to know whether I could make this program shorter and more efficient.



Any help would be highly appreciated.










share|improve this question









$endgroup$











  • $begingroup$
    I'm assuming you're trying to reinvent the wheel here and importing a function from a library is out?
    $endgroup$
    – Mast
    9 hours ago










  • $begingroup$
    Python does has it's own pow() function.
    $endgroup$
    – Mast
    9 hours ago










  • $begingroup$
    @Mast - Yes, according to Leetcode, I am trying to reinvent Python's pow() function.
    $endgroup$
    – Justin
    9 hours ago










  • $begingroup$
    Is your code supposed to work for all -100.0 < x < 100.0 and 32-bit integers n? As an example, pow(10.0, 1000000) returns inf.
    $endgroup$
    – Martin R
    8 hours ago











  • $begingroup$
    @MartinR - I should think so. If not, is there any way to do that? I'm concerned mainly about efficiency.
    $endgroup$
    – Justin
    8 hours ago














1












1








1


2



$begingroup$


This is a Leetcode problem:




Implement pow(x, n), which calculates x raised to the power n ($x^n$).



Note -



  • -100.0 < x < 100.0


  • n is a 32-bit signed integer, within the range [$-2^31$, $2^31$ − 1]




def pow(x, n):
if n == 0:
return 1
if x == 0 and n < 0:
return
result = 1
if n > 0:
while n > 0:
pre_result = result
result *= x
if pre_result == result or pre_result == -result:
if result >= 0:
return result
if n % 2 == 0:
return -result
else:
return result
n -= 1
return result
else:
while n < 0:
pre_result = result
result /= x
if pre_result == result or pre_result == -result:
if result >= 0:
return result
if n % 2 == 0:
return -result
else:
return result
n += 1
return result


NOTE - My solution is $O(n)$.



Here are some example inputs/outputs:



#print(pow(2.00000, 10))

>>> 1024.0

#print(pow(2.10000, 3))

>>> 9.261

#print(pow(2.00000, -2))

>>> 0.25

#print(pow(-1.00000, -2147483648))

>>> 1.0


Here are the times taken for each output:



#%timeit pow(2.00000, 10)

>>> 1.88 µs ± 14 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

#%timeit pow(2.10000, 3)

>>> 805 ns ± 17.2 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

#%timeit pow(2.00000, -2)

>>> 643 ns ± 9.55 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

#%timeit pow(-1.00000, -2147483648)

>>> 594 ns ± 20 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)


So, I would like to know whether I could make this program shorter and more efficient.



Any help would be highly appreciated.










share|improve this question









$endgroup$




This is a Leetcode problem:




Implement pow(x, n), which calculates x raised to the power n ($x^n$).



Note -



  • -100.0 < x < 100.0


  • n is a 32-bit signed integer, within the range [$-2^31$, $2^31$ − 1]




def pow(x, n):
if n == 0:
return 1
if x == 0 and n < 0:
return
result = 1
if n > 0:
while n > 0:
pre_result = result
result *= x
if pre_result == result or pre_result == -result:
if result >= 0:
return result
if n % 2 == 0:
return -result
else:
return result
n -= 1
return result
else:
while n < 0:
pre_result = result
result /= x
if pre_result == result or pre_result == -result:
if result >= 0:
return result
if n % 2 == 0:
return -result
else:
return result
n += 1
return result


NOTE - My solution is $O(n)$.



Here are some example inputs/outputs:



#print(pow(2.00000, 10))

>>> 1024.0

#print(pow(2.10000, 3))

>>> 9.261

#print(pow(2.00000, -2))

>>> 0.25

#print(pow(-1.00000, -2147483648))

>>> 1.0


Here are the times taken for each output:



#%timeit pow(2.00000, 10)

>>> 1.88 µs ± 14 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

#%timeit pow(2.10000, 3)

>>> 805 ns ± 17.2 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

#%timeit pow(2.00000, -2)

>>> 643 ns ± 9.55 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

#%timeit pow(-1.00000, -2147483648)

>>> 594 ns ± 20 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)


So, I would like to know whether I could make this program shorter and more efficient.



Any help would be highly appreciated.







python performance python-3.x time-limit-exceeded






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 9 hours ago









JustinJustin

551222




551222











  • $begingroup$
    I'm assuming you're trying to reinvent the wheel here and importing a function from a library is out?
    $endgroup$
    – Mast
    9 hours ago










  • $begingroup$
    Python does has it's own pow() function.
    $endgroup$
    – Mast
    9 hours ago










  • $begingroup$
    @Mast - Yes, according to Leetcode, I am trying to reinvent Python's pow() function.
    $endgroup$
    – Justin
    9 hours ago










  • $begingroup$
    Is your code supposed to work for all -100.0 < x < 100.0 and 32-bit integers n? As an example, pow(10.0, 1000000) returns inf.
    $endgroup$
    – Martin R
    8 hours ago











  • $begingroup$
    @MartinR - I should think so. If not, is there any way to do that? I'm concerned mainly about efficiency.
    $endgroup$
    – Justin
    8 hours ago

















  • $begingroup$
    I'm assuming you're trying to reinvent the wheel here and importing a function from a library is out?
    $endgroup$
    – Mast
    9 hours ago










  • $begingroup$
    Python does has it's own pow() function.
    $endgroup$
    – Mast
    9 hours ago










  • $begingroup$
    @Mast - Yes, according to Leetcode, I am trying to reinvent Python's pow() function.
    $endgroup$
    – Justin
    9 hours ago










  • $begingroup$
    Is your code supposed to work for all -100.0 < x < 100.0 and 32-bit integers n? As an example, pow(10.0, 1000000) returns inf.
    $endgroup$
    – Martin R
    8 hours ago











  • $begingroup$
    @MartinR - I should think so. If not, is there any way to do that? I'm concerned mainly about efficiency.
    $endgroup$
    – Justin
    8 hours ago
















$begingroup$
I'm assuming you're trying to reinvent the wheel here and importing a function from a library is out?
$endgroup$
– Mast
9 hours ago




$begingroup$
I'm assuming you're trying to reinvent the wheel here and importing a function from a library is out?
$endgroup$
– Mast
9 hours ago












$begingroup$
Python does has it's own pow() function.
$endgroup$
– Mast
9 hours ago




$begingroup$
Python does has it's own pow() function.
$endgroup$
– Mast
9 hours ago












$begingroup$
@Mast - Yes, according to Leetcode, I am trying to reinvent Python's pow() function.
$endgroup$
– Justin
9 hours ago




$begingroup$
@Mast - Yes, according to Leetcode, I am trying to reinvent Python's pow() function.
$endgroup$
– Justin
9 hours ago












$begingroup$
Is your code supposed to work for all -100.0 < x < 100.0 and 32-bit integers n? As an example, pow(10.0, 1000000) returns inf.
$endgroup$
– Martin R
8 hours ago





$begingroup$
Is your code supposed to work for all -100.0 < x < 100.0 and 32-bit integers n? As an example, pow(10.0, 1000000) returns inf.
$endgroup$
– Martin R
8 hours ago













$begingroup$
@MartinR - I should think so. If not, is there any way to do that? I'm concerned mainly about efficiency.
$endgroup$
– Justin
8 hours ago





$begingroup$
@MartinR - I should think so. If not, is there any way to do that? I'm concerned mainly about efficiency.
$endgroup$
– Justin
8 hours ago











2 Answers
2






active

oldest

votes


















3












$begingroup$

Do less writing



You can half the code by using the fact $x^-n = frac1x^n$



if n > 0:
while n > 0:
...
else:
while n < 0:
...


would become



if n < 0:
# x**(-n) == 1 / x**n
return 1 / old_code(x, -n)

return old_code(x, n)


(with old code being the code you have from the while loop down)




Likewise $(-x)^n = x^n$ if n is even, otherwise $-(x^n)$. This extra check can be done at the start rather than in the middle of a loop. Combining the two you get



if n < 0:
power = -n
else:
power = n

if x < 0:
base = -x
else:
base = x

result = old_code(base, power)

if base != x and power % 2:
# (-x)**n == -(x**n) if n is odd, otherwise x**n
result = -result

if power != n:
# x**(-n) == 1 / x**n
result = 1 / result

return result


This probably could bit a little nicer, but hopefully it is very clear what is happening. From this you can write your code assuming both the base and power are positive.




Better algorithm



We can improve the algorithm from O(n) to O(log n), where n is the power, using the idea from russian peasant exponentiation. Alternatively you could implement exponentiation by squaring for the same runtime complexity. We can derive the idea by the following observation



$$x^n = overbracex times x times x times cdots times x^n$$



$$x^n = overbracex times x times x times cdots times x^n/2 times overbracex times x times x times cdots times x^n/2$$



$$x^n = y times y, y = overbracex times x times x times cdots times x^n/2$$



We need to make a slight adjustment if n is odd, as n/2 wont be an integer



$$x^n = x times overbracex times x times x times cdots times x^lfloor n/2 rfloor times overbracex times x times x times cdots times x^lfloor n/2 rfloor$$



$$x^n = x times y times y, y = overbracex times x times x times cdots times x^lfloor n/2 rfloor$$



We can then work out $x^n/2$ recursively until some easy to compute base case.



Note: To turn this into a loop we can do the same thing, but starting at lower powers and working up. See the pdf for how to continue.



All in all my suggested code would look something like this



def pow(x, n):
if n == 0:
return 1
if x == 1:
# New easy check
return 1
if x == 0:
if n < 0:
# builtin pow throws an exception rather than returning None
raise ZeroDivisionError("...")
return 0

if n < 0:
power = -n
else:
power = n

if x < 0:
base = -x
else:
base = x

result = _pow(base, power)

if base != x and power % 2:
# (-x)**n == -(x**n) if n is odd, otherwise x**n
result = -result

if power != n:
# x**(-n) == 1 / x**n
result = 1 / result

return result

def _pow(base, power):
"""Return base**power
Assume base > 0, power > 0"""
if power == 1:
return base

y = _pow(base, power // 2)
result = y * y
if power % 2:
result *= base
return result





share|improve this answer









$endgroup$












  • $begingroup$
    Amazing answer! Some really good stuff in there. Your answer has really helped me a lot. Thank you.
    $endgroup$
    – Justin
    8 hours ago


















2












$begingroup$

One obvious thing to do is to take advantage of some math. If you want to calculate 2¹⁶, you don't need to calculate it with 2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2. You could instead calculate it as (2⁸)²=(2⁴)²=((2²)²)². With your approach, you will calculate the value of 2⁸ twice.



Here is a simplified version that shows the idea. You might want to change it to a non-recursive version for performance.



def pow(x, n):
if(n==1):
return x
p = pow(x, n//2)
p = p*p
if(n%2 == 1):
p = p*x
return p


And here is code that passes the test and is quicker than 92.14%



class Solution:
def myPow(self, x: float, n: int) -> float:
if(n==1):
return x
if(x==0 and n<=0):
return
if(n==0):
return 1
if(n<0):
return 1/self.myPow(x,-n)
p = self.myPow(x, n//2)
ret = p*p
if(n%2 == 1):
return ret*x
return ret


The time complexity here is $O(log (n))$






share|improve this answer











$endgroup$








  • 1




    $begingroup$
    Is floor supposed to float?
    $endgroup$
    – Justin
    9 hours ago










  • $begingroup$
    @Justin Don't know. As I said, that was only to show the idea. But I have completed it with working code now.
    $endgroup$
    – Broman
    8 hours ago











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "196"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f220996%2fpython-program-to-implement-powx-n%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









3












$begingroup$

Do less writing



You can half the code by using the fact $x^-n = frac1x^n$



if n > 0:
while n > 0:
...
else:
while n < 0:
...


would become



if n < 0:
# x**(-n) == 1 / x**n
return 1 / old_code(x, -n)

return old_code(x, n)


(with old code being the code you have from the while loop down)




Likewise $(-x)^n = x^n$ if n is even, otherwise $-(x^n)$. This extra check can be done at the start rather than in the middle of a loop. Combining the two you get



if n < 0:
power = -n
else:
power = n

if x < 0:
base = -x
else:
base = x

result = old_code(base, power)

if base != x and power % 2:
# (-x)**n == -(x**n) if n is odd, otherwise x**n
result = -result

if power != n:
# x**(-n) == 1 / x**n
result = 1 / result

return result


This probably could bit a little nicer, but hopefully it is very clear what is happening. From this you can write your code assuming both the base and power are positive.




Better algorithm



We can improve the algorithm from O(n) to O(log n), where n is the power, using the idea from russian peasant exponentiation. Alternatively you could implement exponentiation by squaring for the same runtime complexity. We can derive the idea by the following observation



$$x^n = overbracex times x times x times cdots times x^n$$



$$x^n = overbracex times x times x times cdots times x^n/2 times overbracex times x times x times cdots times x^n/2$$



$$x^n = y times y, y = overbracex times x times x times cdots times x^n/2$$



We need to make a slight adjustment if n is odd, as n/2 wont be an integer



$$x^n = x times overbracex times x times x times cdots times x^lfloor n/2 rfloor times overbracex times x times x times cdots times x^lfloor n/2 rfloor$$



$$x^n = x times y times y, y = overbracex times x times x times cdots times x^lfloor n/2 rfloor$$



We can then work out $x^n/2$ recursively until some easy to compute base case.



Note: To turn this into a loop we can do the same thing, but starting at lower powers and working up. See the pdf for how to continue.



All in all my suggested code would look something like this



def pow(x, n):
if n == 0:
return 1
if x == 1:
# New easy check
return 1
if x == 0:
if n < 0:
# builtin pow throws an exception rather than returning None
raise ZeroDivisionError("...")
return 0

if n < 0:
power = -n
else:
power = n

if x < 0:
base = -x
else:
base = x

result = _pow(base, power)

if base != x and power % 2:
# (-x)**n == -(x**n) if n is odd, otherwise x**n
result = -result

if power != n:
# x**(-n) == 1 / x**n
result = 1 / result

return result

def _pow(base, power):
"""Return base**power
Assume base > 0, power > 0"""
if power == 1:
return base

y = _pow(base, power // 2)
result = y * y
if power % 2:
result *= base
return result





share|improve this answer









$endgroup$












  • $begingroup$
    Amazing answer! Some really good stuff in there. Your answer has really helped me a lot. Thank you.
    $endgroup$
    – Justin
    8 hours ago















3












$begingroup$

Do less writing



You can half the code by using the fact $x^-n = frac1x^n$



if n > 0:
while n > 0:
...
else:
while n < 0:
...


would become



if n < 0:
# x**(-n) == 1 / x**n
return 1 / old_code(x, -n)

return old_code(x, n)


(with old code being the code you have from the while loop down)




Likewise $(-x)^n = x^n$ if n is even, otherwise $-(x^n)$. This extra check can be done at the start rather than in the middle of a loop. Combining the two you get



if n < 0:
power = -n
else:
power = n

if x < 0:
base = -x
else:
base = x

result = old_code(base, power)

if base != x and power % 2:
# (-x)**n == -(x**n) if n is odd, otherwise x**n
result = -result

if power != n:
# x**(-n) == 1 / x**n
result = 1 / result

return result


This probably could bit a little nicer, but hopefully it is very clear what is happening. From this you can write your code assuming both the base and power are positive.




Better algorithm



We can improve the algorithm from O(n) to O(log n), where n is the power, using the idea from russian peasant exponentiation. Alternatively you could implement exponentiation by squaring for the same runtime complexity. We can derive the idea by the following observation



$$x^n = overbracex times x times x times cdots times x^n$$



$$x^n = overbracex times x times x times cdots times x^n/2 times overbracex times x times x times cdots times x^n/2$$



$$x^n = y times y, y = overbracex times x times x times cdots times x^n/2$$



We need to make a slight adjustment if n is odd, as n/2 wont be an integer



$$x^n = x times overbracex times x times x times cdots times x^lfloor n/2 rfloor times overbracex times x times x times cdots times x^lfloor n/2 rfloor$$



$$x^n = x times y times y, y = overbracex times x times x times cdots times x^lfloor n/2 rfloor$$



We can then work out $x^n/2$ recursively until some easy to compute base case.



Note: To turn this into a loop we can do the same thing, but starting at lower powers and working up. See the pdf for how to continue.



All in all my suggested code would look something like this



def pow(x, n):
if n == 0:
return 1
if x == 1:
# New easy check
return 1
if x == 0:
if n < 0:
# builtin pow throws an exception rather than returning None
raise ZeroDivisionError("...")
return 0

if n < 0:
power = -n
else:
power = n

if x < 0:
base = -x
else:
base = x

result = _pow(base, power)

if base != x and power % 2:
# (-x)**n == -(x**n) if n is odd, otherwise x**n
result = -result

if power != n:
# x**(-n) == 1 / x**n
result = 1 / result

return result

def _pow(base, power):
"""Return base**power
Assume base > 0, power > 0"""
if power == 1:
return base

y = _pow(base, power // 2)
result = y * y
if power % 2:
result *= base
return result





share|improve this answer









$endgroup$












  • $begingroup$
    Amazing answer! Some really good stuff in there. Your answer has really helped me a lot. Thank you.
    $endgroup$
    – Justin
    8 hours ago













3












3








3





$begingroup$

Do less writing



You can half the code by using the fact $x^-n = frac1x^n$



if n > 0:
while n > 0:
...
else:
while n < 0:
...


would become



if n < 0:
# x**(-n) == 1 / x**n
return 1 / old_code(x, -n)

return old_code(x, n)


(with old code being the code you have from the while loop down)




Likewise $(-x)^n = x^n$ if n is even, otherwise $-(x^n)$. This extra check can be done at the start rather than in the middle of a loop. Combining the two you get



if n < 0:
power = -n
else:
power = n

if x < 0:
base = -x
else:
base = x

result = old_code(base, power)

if base != x and power % 2:
# (-x)**n == -(x**n) if n is odd, otherwise x**n
result = -result

if power != n:
# x**(-n) == 1 / x**n
result = 1 / result

return result


This probably could bit a little nicer, but hopefully it is very clear what is happening. From this you can write your code assuming both the base and power are positive.




Better algorithm



We can improve the algorithm from O(n) to O(log n), where n is the power, using the idea from russian peasant exponentiation. Alternatively you could implement exponentiation by squaring for the same runtime complexity. We can derive the idea by the following observation



$$x^n = overbracex times x times x times cdots times x^n$$



$$x^n = overbracex times x times x times cdots times x^n/2 times overbracex times x times x times cdots times x^n/2$$



$$x^n = y times y, y = overbracex times x times x times cdots times x^n/2$$



We need to make a slight adjustment if n is odd, as n/2 wont be an integer



$$x^n = x times overbracex times x times x times cdots times x^lfloor n/2 rfloor times overbracex times x times x times cdots times x^lfloor n/2 rfloor$$



$$x^n = x times y times y, y = overbracex times x times x times cdots times x^lfloor n/2 rfloor$$



We can then work out $x^n/2$ recursively until some easy to compute base case.



Note: To turn this into a loop we can do the same thing, but starting at lower powers and working up. See the pdf for how to continue.



All in all my suggested code would look something like this



def pow(x, n):
if n == 0:
return 1
if x == 1:
# New easy check
return 1
if x == 0:
if n < 0:
# builtin pow throws an exception rather than returning None
raise ZeroDivisionError("...")
return 0

if n < 0:
power = -n
else:
power = n

if x < 0:
base = -x
else:
base = x

result = _pow(base, power)

if base != x and power % 2:
# (-x)**n == -(x**n) if n is odd, otherwise x**n
result = -result

if power != n:
# x**(-n) == 1 / x**n
result = 1 / result

return result

def _pow(base, power):
"""Return base**power
Assume base > 0, power > 0"""
if power == 1:
return base

y = _pow(base, power // 2)
result = y * y
if power % 2:
result *= base
return result





share|improve this answer









$endgroup$



Do less writing



You can half the code by using the fact $x^-n = frac1x^n$



if n > 0:
while n > 0:
...
else:
while n < 0:
...


would become



if n < 0:
# x**(-n) == 1 / x**n
return 1 / old_code(x, -n)

return old_code(x, n)


(with old code being the code you have from the while loop down)




Likewise $(-x)^n = x^n$ if n is even, otherwise $-(x^n)$. This extra check can be done at the start rather than in the middle of a loop. Combining the two you get



if n < 0:
power = -n
else:
power = n

if x < 0:
base = -x
else:
base = x

result = old_code(base, power)

if base != x and power % 2:
# (-x)**n == -(x**n) if n is odd, otherwise x**n
result = -result

if power != n:
# x**(-n) == 1 / x**n
result = 1 / result

return result


This probably could bit a little nicer, but hopefully it is very clear what is happening. From this you can write your code assuming both the base and power are positive.




Better algorithm



We can improve the algorithm from O(n) to O(log n), where n is the power, using the idea from russian peasant exponentiation. Alternatively you could implement exponentiation by squaring for the same runtime complexity. We can derive the idea by the following observation



$$x^n = overbracex times x times x times cdots times x^n$$



$$x^n = overbracex times x times x times cdots times x^n/2 times overbracex times x times x times cdots times x^n/2$$



$$x^n = y times y, y = overbracex times x times x times cdots times x^n/2$$



We need to make a slight adjustment if n is odd, as n/2 wont be an integer



$$x^n = x times overbracex times x times x times cdots times x^lfloor n/2 rfloor times overbracex times x times x times cdots times x^lfloor n/2 rfloor$$



$$x^n = x times y times y, y = overbracex times x times x times cdots times x^lfloor n/2 rfloor$$



We can then work out $x^n/2$ recursively until some easy to compute base case.



Note: To turn this into a loop we can do the same thing, but starting at lower powers and working up. See the pdf for how to continue.



All in all my suggested code would look something like this



def pow(x, n):
if n == 0:
return 1
if x == 1:
# New easy check
return 1
if x == 0:
if n < 0:
# builtin pow throws an exception rather than returning None
raise ZeroDivisionError("...")
return 0

if n < 0:
power = -n
else:
power = n

if x < 0:
base = -x
else:
base = x

result = _pow(base, power)

if base != x and power % 2:
# (-x)**n == -(x**n) if n is odd, otherwise x**n
result = -result

if power != n:
# x**(-n) == 1 / x**n
result = 1 / result

return result

def _pow(base, power):
"""Return base**power
Assume base > 0, power > 0"""
if power == 1:
return base

y = _pow(base, power // 2)
result = y * y
if power % 2:
result *= base
return result






share|improve this answer












share|improve this answer



share|improve this answer










answered 8 hours ago









spyr03spyr03

1,401520




1,401520











  • $begingroup$
    Amazing answer! Some really good stuff in there. Your answer has really helped me a lot. Thank you.
    $endgroup$
    – Justin
    8 hours ago
















  • $begingroup$
    Amazing answer! Some really good stuff in there. Your answer has really helped me a lot. Thank you.
    $endgroup$
    – Justin
    8 hours ago















$begingroup$
Amazing answer! Some really good stuff in there. Your answer has really helped me a lot. Thank you.
$endgroup$
– Justin
8 hours ago




$begingroup$
Amazing answer! Some really good stuff in there. Your answer has really helped me a lot. Thank you.
$endgroup$
– Justin
8 hours ago













2












$begingroup$

One obvious thing to do is to take advantage of some math. If you want to calculate 2¹⁶, you don't need to calculate it with 2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2. You could instead calculate it as (2⁸)²=(2⁴)²=((2²)²)². With your approach, you will calculate the value of 2⁸ twice.



Here is a simplified version that shows the idea. You might want to change it to a non-recursive version for performance.



def pow(x, n):
if(n==1):
return x
p = pow(x, n//2)
p = p*p
if(n%2 == 1):
p = p*x
return p


And here is code that passes the test and is quicker than 92.14%



class Solution:
def myPow(self, x: float, n: int) -> float:
if(n==1):
return x
if(x==0 and n<=0):
return
if(n==0):
return 1
if(n<0):
return 1/self.myPow(x,-n)
p = self.myPow(x, n//2)
ret = p*p
if(n%2 == 1):
return ret*x
return ret


The time complexity here is $O(log (n))$






share|improve this answer











$endgroup$








  • 1




    $begingroup$
    Is floor supposed to float?
    $endgroup$
    – Justin
    9 hours ago










  • $begingroup$
    @Justin Don't know. As I said, that was only to show the idea. But I have completed it with working code now.
    $endgroup$
    – Broman
    8 hours ago















2












$begingroup$

One obvious thing to do is to take advantage of some math. If you want to calculate 2¹⁶, you don't need to calculate it with 2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2. You could instead calculate it as (2⁸)²=(2⁴)²=((2²)²)². With your approach, you will calculate the value of 2⁸ twice.



Here is a simplified version that shows the idea. You might want to change it to a non-recursive version for performance.



def pow(x, n):
if(n==1):
return x
p = pow(x, n//2)
p = p*p
if(n%2 == 1):
p = p*x
return p


And here is code that passes the test and is quicker than 92.14%



class Solution:
def myPow(self, x: float, n: int) -> float:
if(n==1):
return x
if(x==0 and n<=0):
return
if(n==0):
return 1
if(n<0):
return 1/self.myPow(x,-n)
p = self.myPow(x, n//2)
ret = p*p
if(n%2 == 1):
return ret*x
return ret


The time complexity here is $O(log (n))$






share|improve this answer











$endgroup$








  • 1




    $begingroup$
    Is floor supposed to float?
    $endgroup$
    – Justin
    9 hours ago










  • $begingroup$
    @Justin Don't know. As I said, that was only to show the idea. But I have completed it with working code now.
    $endgroup$
    – Broman
    8 hours ago













2












2








2





$begingroup$

One obvious thing to do is to take advantage of some math. If you want to calculate 2¹⁶, you don't need to calculate it with 2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2. You could instead calculate it as (2⁸)²=(2⁴)²=((2²)²)². With your approach, you will calculate the value of 2⁸ twice.



Here is a simplified version that shows the idea. You might want to change it to a non-recursive version for performance.



def pow(x, n):
if(n==1):
return x
p = pow(x, n//2)
p = p*p
if(n%2 == 1):
p = p*x
return p


And here is code that passes the test and is quicker than 92.14%



class Solution:
def myPow(self, x: float, n: int) -> float:
if(n==1):
return x
if(x==0 and n<=0):
return
if(n==0):
return 1
if(n<0):
return 1/self.myPow(x,-n)
p = self.myPow(x, n//2)
ret = p*p
if(n%2 == 1):
return ret*x
return ret


The time complexity here is $O(log (n))$






share|improve this answer











$endgroup$



One obvious thing to do is to take advantage of some math. If you want to calculate 2¹⁶, you don't need to calculate it with 2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2. You could instead calculate it as (2⁸)²=(2⁴)²=((2²)²)². With your approach, you will calculate the value of 2⁸ twice.



Here is a simplified version that shows the idea. You might want to change it to a non-recursive version for performance.



def pow(x, n):
if(n==1):
return x
p = pow(x, n//2)
p = p*p
if(n%2 == 1):
p = p*x
return p


And here is code that passes the test and is quicker than 92.14%



class Solution:
def myPow(self, x: float, n: int) -> float:
if(n==1):
return x
if(x==0 and n<=0):
return
if(n==0):
return 1
if(n<0):
return 1/self.myPow(x,-n)
p = self.myPow(x, n//2)
ret = p*p
if(n%2 == 1):
return ret*x
return ret


The time complexity here is $O(log (n))$







share|improve this answer














share|improve this answer



share|improve this answer








edited 8 hours ago

























answered 9 hours ago









BromanBroman

519211




519211







  • 1




    $begingroup$
    Is floor supposed to float?
    $endgroup$
    – Justin
    9 hours ago










  • $begingroup$
    @Justin Don't know. As I said, that was only to show the idea. But I have completed it with working code now.
    $endgroup$
    – Broman
    8 hours ago












  • 1




    $begingroup$
    Is floor supposed to float?
    $endgroup$
    – Justin
    9 hours ago










  • $begingroup$
    @Justin Don't know. As I said, that was only to show the idea. But I have completed it with working code now.
    $endgroup$
    – Broman
    8 hours ago







1




1




$begingroup$
Is floor supposed to float?
$endgroup$
– Justin
9 hours ago




$begingroup$
Is floor supposed to float?
$endgroup$
– Justin
9 hours ago












$begingroup$
@Justin Don't know. As I said, that was only to show the idea. But I have completed it with working code now.
$endgroup$
– Broman
8 hours ago




$begingroup$
@Justin Don't know. As I said, that was only to show the idea. But I have completed it with working code now.
$endgroup$
– Broman
8 hours ago

















draft saved

draft discarded
















































Thanks for contributing an answer to Code Review Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f220996%2fpython-program-to-implement-powx-n%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

ParseJSON using SSJSUsing AMPscript with SSJS ActivitiesHow to resubscribe a user in Marketing cloud using SSJS?Pulling Subscriber Status from Lists using SSJSRetrieving Emails using SSJSProblem in updating DE using SSJSUsing SSJS to send single email in Marketing CloudError adding EmailSendDefinition using SSJS

Кампала Садржај Географија Географија Историја Становништво Привреда Партнерски градови Референце Спољашње везе Мени за навигацију0°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.340°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.34МедијиПодациЗванични веб-сајту

19. јануар Садржај Догађаји Рођења Смрти Празници и дани сећања Види још Референце Мени за навигацијуу