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)/美丽子集的数目 [the-number-of-beautiful-subsets].html
2023-03-24 20:17:23 +08:00

35 lines
1.4 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>给你一个由正整数组成的数组 <code>nums</code> 和一个 <strong></strong> 整数 <code>k</code></p>
<p>如果 <code>nums</code> 的子集中,任意两个整数的绝对差均不等于 <code>k</code> ,则认为该子数组是一个 <strong>美丽</strong> 子集。</p>
<p>返回数组 <code>nums</code><strong>非空</strong><strong>美丽</strong> 的子集数目。</p>
<p><code>nums</code> 的子集定义为:可以经由 <code>nums</code> 删除某些元素(也可能不删除)得到的一个数组。只有在删除元素时选择的索引不同的情况下,两个子集才会被视作是不同的子集。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre><strong>输入:</strong>nums = [2,4,6], k = 2
<strong>输出:</strong>4
<strong>解释:</strong>数组 nums 中的美丽子集有:[2], [4], [6], [2, 6] 。
可以证明数组 [2,4,6] 中只存在 4 个美丽子集。
</pre>
<p><strong>示例 2</strong></p>
<pre><strong>输入:</strong>nums = [1], k = 1
<strong>输出:</strong>1
<strong>解释:</strong>数组 nums 中的美丽数组有:[1] 。
可以证明数组 [1] 中只存在 1 个美丽子集。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= nums.length &lt;= 20</code></li>
<li><code>1 &lt;= nums[i], k &lt;= 1000</code></li>
</ul>