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
Prijavi se da vidiš povijest predaja
PrijavaPrijavi se da koristiš AI mentora
PrijavaTests12
Visible tests
Skriveni test 7
Skriveni test 8
Skriveni test 9
Skriveni test 10
Skriveni test 11
Skriveni 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