Combine Settings
Dictionaries are often used for settings: first you have default values, then user choices can override them. The function merge_dicts receives two dictionaries, a and b, and combines them into a new dictionary. If the same key appears in both dictionaries, use the value from b.
Примеры
Ввод
({"x": 1}, {"y": 2})Вывод
{"x": 1, "y": 2}Ввод
({"x": 1}, {"x": 5})Вывод
{"x": 5}Ввод
({}, {})Вывод
{}Нужно реализовать
def merge_dicts(a: dict, b: dict) -> dict:
Теги
dicthashmap
Zaloguj się, aby zobaczyć historię rozwiązań
Zaloguj sięZaloguj się, aby korzystać z Mentora AI
Zaloguj sięTests12
Visible tests
Ukryty test 7
Ukryty test 8
Ukryty test 9
Ukryty test 10
Ukryty test 11
Ukryty 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