We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
https://leetcode.com/problems/powx-n/description/
注意x和n都可能是负数。
递归,二分折半,比如3的5次方就是两个3^2相乘再乘3。