mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
35 lines
1.4 KiB
HTML
35 lines
1.4 KiB
HTML
<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> </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> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= nums.length <= 20</code></li>
|
||
<li><code>1 <= nums[i], k <= 1000</code></li>
|
||
</ul>
|