Keep High Values

Filtering a dictionary is useful when you want to keep only important records, like products above a certain price or players with enough points. The function filter_dict_by_value receives a dictionary d and a number threshold. Return a new dictionary containing only the pairs whose value is at least threshold; smaller values should be left out.

Примеры

Ввод
({"a": 1, "b": 5, "c": 3}, 3)
Вывод
{"b": 5, "c": 3}
Ввод
({}, 0)
Вывод
{}
Ввод
({"x": 10}, 20)
Вывод
{}

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

def filter_dict_by_value(d: dict, threshold: int) -> dict:

Теги

dict
PostgreSQLv16

Itt jelenik meg a kód futtatásának eredménye

Tests12
Visible tests
Rejtett teszt 7
Rejtett teszt 8
Rejtett teszt 9
Rejtett teszt 10
Rejtett teszt 11
Rejtett teszt 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