We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent decfe11 commit 4d7f56cCopy full SHA for 4d7f56c
Medium/50. Pow(x,n).py
@@ -0,0 +1,5 @@
1
+# Problem Statement: https://leetcode.com/problems/powx-n/
2
+
3
+class Solution:
4
+ def myPow(self, x: float, n: int) -> float:
5
+ return x**n
0 commit comments