1323. Maximum 69 Number
給予一個只包含數字六和九的整數,若我們最多可以把一個數字從6改成9,求出這個
改完後的最大數字是多少。
Example:
Input: num = 9669
Output: 9969
Explanation:
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.
思路:
1.把數字當成字串解析,如果數字全部都是9999就不用變,否則把從左邊往右邊
scan找到的第一個6改成9就是最大數字。
Java Code: