Leetcode 1773. Count Items Matching a Rule

Posted SnailTyan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 1773. Count Items Matching a Rule相关的知识,希望对你有一定的参考价值。

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Count Items Matching a Rule

2. Solution

**解析:**根据对应的索引比较对应的值即可。

  • Version 1
class Solution:
    def countMatches(self, items: List[List[str]], ruleKey: str, ruleValue: str) -> int:
        index = 0
        if ruleKey == 'color':
            index = 1
        elif ruleKey == 'name':
            index = 2
        count = 0
        for item in items:
            if item[index] == ruleValue:
                count += 1
        return count

Reference

  1. https://leetcode.com/problems/count-items-matching-a-rule/

以上是关于Leetcode 1773. Count Items Matching a Rule的主要内容,如果未能解决你的问题,请参考以下文章

51nod1773 A国的贸易

1773:消息传递

51NOD 1773:A国的贸易——题解

每日一题1773. 统计匹配检索规则的物品数量

每日一题1773. 统计匹配检索规则的物品数量

「 每日一练,快乐水题 」1773. 统计匹配检索规则的物品数量