We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3219fb1 commit 9bcddcfCopy full SHA for 9bcddcf
scripts/algorithms/P/Powx n/Pow(x, n).js
@@ -0,0 +1,4 @@
1
+// Runtime: 74 ms (Top 81.75%) | Memory: 42.1 MB (Top 63.49%)
2
+var myPow = function(x, n) {
3
+ return x**n;
4
+};
0 commit comments