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)/交换数字 [swap-numbers-lcci].html
2022-03-29 12:43:11 +08:00

16 lines
409 B
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>编写一个函数,不用临时变量,直接交换<code>numbers = [a, b]</code><code>a</code><code>b</code>的值。</p>
<p><strong>示例:</strong></p>
<pre>
<strong>输入:</strong> numbers = [1,2]
<strong>输出:</strong> [2,1]
</pre>
<p><strong>提示:</strong></p>
<ul>
<li><code>numbers.length == 2</code></li>
<li><code>-2147483647 <= numbers[i] <= 2147483647</code></li>
</ul>