mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
38 lines
2.4 KiB
HTML
38 lines
2.4 KiB
HTML
|
<p>You are given an array <code>items</code>, where each <code>items[i] = [type<sub>i</sub>, color<sub>i</sub>, name<sub>i</sub>]</code> describes the type, color, and name of the <code>i<sup>th</sup></code> item. You are also given a rule represented by two strings, <code>ruleKey</code> and <code>ruleValue</code>.</p>
|
||
|
|
||
|
<p>The <code>i<sup>th</sup></code> item is said to match the rule if <strong>one</strong> of the following is true:</p>
|
||
|
|
||
|
<ul>
|
||
|
<li><code>ruleKey == "type"</code> and <code>ruleValue == type<sub>i</sub></code>.</li>
|
||
|
<li><code>ruleKey == "color"</code> and <code>ruleValue == color<sub>i</sub></code>.</li>
|
||
|
<li><code>ruleKey == "name"</code> and <code>ruleValue == name<sub>i</sub></code>.</li>
|
||
|
</ul>
|
||
|
|
||
|
<p>Return <em>the number of items that match the given rule</em>.</p>
|
||
|
|
||
|
<p> </p>
|
||
|
<p><strong>Example 1:</strong></p>
|
||
|
|
||
|
<pre>
|
||
|
<strong>Input:</strong> items = [["phone","blue","pixel"],["computer","silver","lenovo"],["phone","gold","iphone"]], ruleKey = "color", ruleValue = "silver"
|
||
|
<strong>Output:</strong> 1
|
||
|
<strong>Explanation:</strong> There is only one item matching the given rule, which is ["computer","silver","lenovo"].
|
||
|
</pre>
|
||
|
|
||
|
<p><strong>Example 2:</strong></p>
|
||
|
|
||
|
<pre>
|
||
|
<strong>Input:</strong> items = [["phone","blue","pixel"],["computer","silver","phone"],["phone","gold","iphone"]], ruleKey = "type", ruleValue = "phone"
|
||
|
<strong>Output:</strong> 2
|
||
|
<strong>Explanation:</strong> There are only two items matching the given rule, which are ["phone","blue","pixel"] and ["phone","gold","iphone"]. Note that the item ["computer","silver","phone"] does not match.</pre>
|
||
|
|
||
|
<p> </p>
|
||
|
<p><strong>Constraints:</strong></p>
|
||
|
|
||
|
<ul>
|
||
|
<li><code>1 <= items.length <= 10<sup>4</sup></code></li>
|
||
|
<li><code>1 <= type<sub>i</sub>.length, color<sub>i</sub>.length, name<sub>i</sub>.length, ruleValue.length <= 10</code></li>
|
||
|
<li><code>ruleKey</code> is equal to either <code>"type"</code>, <code>"color"</code>, or <code>"name"</code>.</li>
|
||
|
<li>All strings consist only of lowercase letters.</li>
|
||
|
</ul>
|