Solución
solution.tsTypeScript
from typing import Any
def get_with_default(env_dict: dict, key: str, default: str) -> str:
# Retorna el valor de key en env_dict, o default si no existe
return env_dict.get(key, default)
0respuestas