「每日LeetCode」2021年5月17日
本文最后更新于:2023年3月19日 晚上
Lt1773. 统计匹配检索规则的物品数量
1773. 统计匹配检索规则的物品数量
给你一个数组 items
,其中 items[i] = [type, color, name]
,描述第 i
件物品的类型、颜色以及名称。
另给你一条由两个字符串 ruleKey
和 ruleValue
表示的检索规则。
如果第 i
件物品能满足下述条件之一,则认为该物品与给定的检索规则 匹配 :
ruleKey == "type"
且ruleValue == type
。ruleKey == "color"
且ruleValue == color
。ruleKey == "name"
且ruleValue == name
。
统计并返回 匹配检索规则的物品数量 。
示例 1:
1 |
|
示例 2:
1 |
|
提示:
1 <= items.length <= 10
1 <= type.length, color.length, name.length, ruleValue.length <= 10
ruleKey
等于"type"
、"color"
或"name"
- 所有字符串仅由小写字母组成
思路
按照题意,根据 ruleKey 决定下标值,然后遍历数组判断值是否相等计数即可。
解答
1 |
|
本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!