Thanks to visit codestin.com Credit goes to github.com
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.
1 parent e0b9c93 commit 19a4fd6Copy full SHA for 19a4fd6
1323-maximum-69-number.js
@@ -1,6 +1,6 @@
1
/**
2
* 1323. Maximum 69 Number
3
- * https://leetcode.com/problems/maximum-69-number/submissions/
+ * https://leetcode.com/problems/maximum-69-number/
4
* Difficulty: Easy
5
*
6
* Given a positive integer num consisting only of digits 6 and 9.
@@ -13,6 +13,6 @@
13
* @param {number} num
14
* @return {number}
15
*/
16
-var maximum69Number = function(num) {
+var maximum69Number = function(num) {
17
return +String(num).replace(6, 9);
18
};
0 commit comments