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)/奇偶位数 [number-of-even-and-odd-bits].html
2023-03-24 20:17:23 +08:00

36 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>给你一个 <strong></strong> 整数 <code>n</code></p>
<p><code>even</code> 表示在 <code>n</code> 的二进制形式(下标从 <strong>0</strong> 开始)中值为 <code>1</code> 的偶数下标的个数。</p>
<p><code>odd</code> 表示在 <code>n</code> 的二进制形式(下标从 <strong>0</strong> 开始)中值为 <code>1</code> 的奇数下标的个数。</p>
<p>返回整数数组<em> </em><code>answer</code><em> </em>,其中<em> </em><code>answer = [even, odd]</code></p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre><strong>输入:</strong>n = 17
<strong>输出:</strong>[2,0]
<strong>解释:</strong>17 的二进制形式是 10001 。
下标 0 和 下标 4 对应的值为 1 。
共有 2 个偶数下标0 个奇数下标。
</pre>
<p><strong>示例 2</strong></p>
<pre><strong>输入:</strong>n = 2
<strong>输出:</strong>[0,1]
<strong>解释:</strong>2 的二进制形式是 10 。
下标 1 对应的值为 1 。
共有 0 个偶数下标1 个奇数下标。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= n &lt;= 1000</code></li>
</ul>