We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 193ee04 commit 9ac61bcCopy full SHA for 9ac61bc
50_powx,_n__medium.md
@@ -19,7 +19,8 @@ It could be faster to be O(lgn) using divide and conquer.
19
20
### Solutions:
21
22
-
+Note:
23
+-Integer.MIN_VALUE = Integer.MIN_VALUE
24
25
```java
26
public class Solution {
@@ -43,4 +44,27 @@ public class Solution {
43
44
}
45
}//power
46
47
+```
48
+
49
+```java
50
+class Solution {
51
+ public double myPow(double x, int n) {
52
+ return pow(x, n);
53
+ }
54
+ private double pow(double x, long n) {
55
+ if (n == 0) {
56
+ return 1;
57
58
+ if (n < 0) {
59
+ return 1 / pow(x, -n);
60
61
+ double v = pow(x, n / 2);
62
+ if (n % 2 == 0) {
63
+ return v*v;
64
65
+ else {
66
+ return v*v*x;
67
68
69
+}
70
```
0 commit comments