1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/6 和 9 组成的最大数字 [maximum-69-number].html
2022-03-29 12:43:11 +08:00

41 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给你一个仅由数字 6 和 9 组成的正整数&nbsp;<code>num</code></p>
<p>你最多只能翻转一位数字,将 6 变成&nbsp;9或者把&nbsp;9 变成&nbsp;6 。</p>
<p>请返回你可以得到的最大数字。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre><strong>输入:</strong>num = 9669
<strong>输出:</strong>9969
<strong>解释:</strong>
改变第一位数字可以得到 6669 。
改变第二位数字可以得到 9969 。
改变第三位数字可以得到 9699 。
改变第四位数字可以得到 9666 。
其中最大的数字是 9969 。
</pre>
<p><strong>示例 2</strong></p>
<pre><strong>输入:</strong>num = 9996
<strong>输出:</strong>9999
<strong>解释:</strong>将最后一位从 6 变到 9其结果 9999 是最大的数。</pre>
<p><strong>示例 3</strong></p>
<pre><strong>输入:</strong>num = 9999
<strong>输出:</strong>9999
<strong>解释:</strong>无需改变就已经是最大的数字了。</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= num &lt;= 10^4</code></li>
<li><code>num</code>&nbsp;每一位上的数字都是 6 或者&nbsp;9 。</li>
</ul>