Catalog Rule Match

Imagine a simple product catalog filter where you need to count how many items match a chosen rule. Write a function count_matches where each item is a list of three strings: type, color, and name. The rule_key is one of "type", "color", or "name", and rule_value is the value to match. Return the number of items whose selected field equals rule_value.

Примеры

Ввод
[["phone", "blue", "pixel"], ["computer", "silver", "lenovo"], ["phone", "gold", "iphone"]], "color", "silver"
Вывод
1
Ввод
[["phone", "blue", "pixel"], ["phone", "gold", "iphone"]], "type", "phone"
Вывод
2
Ввод
[["a", "b", "c"]], "name", "c"
Вывод
1

Нужно реализовать

def count_matches(items: list[list[str]], rule_key: str, rule_value: str) -> int:

Теги

arraystrings
PostgreSQLv16

Hier verschijnt het resultaat van je code

Tests12
Visible tests
Verborgen test 7
Verborgen test 8
Verborgen test 9
Verborgen test 10
Verborgen test 11
Verborgen test 12

They run when you press "Submit" — your whole solution is checked against them so you can't hard-code answers for the visible cases.

Focus radio
Paused · SomaFM · Fluid