mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
54 lines
1.3 KiB
HTML
54 lines
1.3 KiB
HTML
<p>「无零整数」是十进制表示中 <strong>不含任何 0</strong> 的正整数。</p>
|
||
|
||
<p>给你一个整数 <code>n</code>,请你返回一个 <strong>由两个整数组成的列表</strong> <code>[A, B]</code>,满足:</p>
|
||
|
||
<ul>
|
||
<li><code>A</code> 和 <code>B</code> 都是无零整数</li>
|
||
<li><code>A + B = n</code></li>
|
||
</ul>
|
||
|
||
<p>题目数据保证至少有一个有效的解决方案。</p>
|
||
|
||
<p>如果存在多个有效解决方案,你可以返回其中任意一个。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>n = 2
|
||
<strong>输出:</strong>[1,1]
|
||
<strong>解释:</strong>A = 1, B = 1. A + B = n 并且 A 和 B 的十进制表示形式都不包含任何 0 。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>n = 11
|
||
<strong>输出:</strong>[2,9]
|
||
</pre>
|
||
|
||
<p><strong>示例 3:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>n = 10000
|
||
<strong>输出:</strong>[1,9999]
|
||
</pre>
|
||
|
||
<p><strong>示例 4:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>n = 69
|
||
<strong>输出:</strong>[1,68]
|
||
</pre>
|
||
|
||
<p><strong>示例 5:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>n = 1010
|
||
<strong>输出:</strong>[11,999]
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>2 <= n <= 10^4</code></li>
|
||
</ul>
|