Post

leetcode(리트코드)-1773 Count Items Matching a Rule(PYTHON)

leetcode(리트코드)-1773 Count Items Matching a Rule(PYTHON)

leetcode 1773 - Count Items Matching a Rule 문제입니다.

1. 문제

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


2. Input , Output


3. 분류 및 난이도

Eazy 난이도 문제입니다.


4. 문제 해석

  • ruleKey와 ruleValue가 주어지는데 items에서 일치하는 값들을 찾아 그 갯수를 리턴합니다.

5. code

코드설명

python

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Solution:
    def countMatches(self, items: List[List[str]], ruleKey: str, ruleValue: str) -> int:
        res = 0 
        idx = -1
        if ruleKey == "type" : 
            idx = 0
        elif ruleKey == "color":
            idx = 1
        else : 
            idx = 2
        for i in range(len(items)):
            if items[i][idx] == ruleValue : 
                res+=1
        return res
              
                               

6. 결과 및 후기, 개선점

필요시 c++로 짜드립니다.

설명이 필요하다면 댓글을 달아주세요.

This post is licensed under CC BY 4.0 by the author.