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)/精简对象 [compact-object].html

38 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>obj</code>,返回一个 <strong>精简对象</strong><strong>精简对象</strong> 与原始对象相同,只是将包含 <strong></strong> 值的键移除。该操作适用于对象及其嵌套对象。数组被视为索引作为键的对象。当 <code>Boolean(value)</code> 返回 <code>false</code> 时,值被视为 <strong></strong> 值。</p>
<p>你可以假设 <code>obj</code><code>JSON.parse</code> 的输出结果。换句话说,它是有效的 JSON。</p>
<p>&nbsp;</p>
<p><strong class="example">示例 1</strong></p>
<pre>
<b>输入:</b>obj = [null, 0, false, 1]
<b>输出:</b>[1]
<b>解释:</b>数组中的所有假值已被移除。
</pre>
<p><strong class="example">示例 2</strong></p>
<pre>
<b>输入:</b>obj = {"a": null, "b": [false, 1]}
<b>输出:</b>{"b": [1]}
<b>解释:</b>obj["a"] 和 obj["b"][0] 包含假值,因此被移除。</pre>
<p><strong class="example">示例 3</strong></p>
<pre>
<b>输入:</b>obj = [null, 0, 5, [0], [false, 16]]
<b>输出:</b>[5, [], [16]]
<b>解释:</b>obj[0], obj[1], obj[3][0], 和 obj[4][0] 包含假值,因此被移除。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>obj</code> 是一个有效的 JSON 对象</li>
<li><code>2 &lt;= JSON.stringify(obj).length &lt;= 10<sup>6</sup></code></li>
</ul>