Skip to content

Commit

Permalink
Rename 50. Pow(x, n).js to 0050-powx-n.js
Browse files Browse the repository at this point in the history
  • Loading branch information
neetcode-gh authored Jan 3, 2023
1 parent af34357 commit 33cde89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/50. Pow(x, n).js → javascript/0050-powx-n.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,4 @@ var fastPow = (x, n) => {
*/
var myPow = (x, n) => {
return Math.pow(x,n).toFixed(5);
}
}

0 comments on commit 33cde89

Please sign in to comment.