欢迎光临散文网 会员登陆 & 注册

Leetcode 1323. Maximum 69 Number

2023-01-06 15:23 作者:您是打尖儿还是住店呢  | 我要投稿

You are given a positive integer num consisting only of digits 6 and 9.

Return the maximum number you can get by changing at most one digit (6 becomes 9, and 9 becomes 6).

 

Example 1:

Input: num = 9669Output: 9969Explanation: Changing the first digit results in 6669. Changing the second digit results in 9969. Changing the third digit results in 9699. Changing the fourth digit results in 9666. The maximum number is 9969.

Example 2:

Input: num = 9996Output: 9999Explanation: Changing the last digit 6 to 9 results in the maximum number.

Example 3:

Input: num = 9999Output: 9999Explanation: It is better not to apply any change.

 

Constraints:

  • 1 <= num <= 104

  • num consists of only 6 and 9 digits.

找到第一个是6的数字,将这个数字转化为9就可以了,


Runtime2 ms

Beats

40.65%

Memory41.4 MB

Beats

18.55%


Leetcode 1323. Maximum 69 Number的评论 (共 条)

分享到微博请遵守国家法律