나는 이렇게 학습한다/Algorithm & SQL

1103. Welcome!

daco2020 2022. 11. 4. 01:30
반응형

Your start-up's BA has told marketing that your website has a large audience in Scandinavia and surrounding countries. Marketing thinks it would be great to welcome visitors to the site in their own language. Luckily you already use an API that detects the user's location, so this is an easy win.

The Task

  • Think of a way to store the languages as a database (eg an object). The languages are listed below so you can copy and paste!
  • Write a 'welcome' function that takes a parameter 'language' (always a string), and returns a greeting - if you have it in your database. It should default to English if the language is not in the database, or in the event of an invalid input.

The Database

'english': 'Welcome',
'czech': 'Vitejte',
'danish': 'Velkomst',
'dutch': 'Welkom',
'estonian': 'Tere tulemast',
'finnish': 'Tervetuloa',
'flemish': 'Welgekomen',
'french': 'Bienvenue',
'german': 'Willkommen',
'irish': 'Failte',
'italian': 'Benvenuto',
'latvian': 'Gaidits',
'lithuanian': 'Laukiamas',
'polish': 'Witamy',
'spanish': 'Bienvenido',
'swedish': 'Valkommen',
'welsh': 'Croeso'



Solution:

DATABASE = {
    'english': 'Welcome',
    'czech': 'Vitejte',
    'danish': 'Velkomst',
    'dutch': 'Welkom',
    'estonian': 'Tere tulemast',
    'finnish': 'Tervetuloa',
    'flemish': 'Welgekomen',
    'french': 'Bienvenue',
    'german': 'Willkommen',
    'irish': 'Failte',
    'italian': 'Benvenuto',
    'latvian': 'Gaidits',
    'lithuanian': 'Laukiamas',
    'polish': 'Witamy',
    'spanish': 'Bienvenido',
    'swedish': 'Valkommen',
    'welsh': 'Croeso'
}

def greet(language: str, db: dict[str, str] = DATABASE) -> str:
    return db.get(language, db["english"])


반응형

'나는 이렇게 학습한다 > Algorithm & SQL' 카테고리의 다른 글

1105. Remove exclamation marks  (0) 2022.11.05
1104. Sum Mixed Array  (0) 2022.11.04
1102. Welcome to the City  (0) 2022.11.02
1101. Fix your code before the garden dies!  (0) 2022.11.01
1031. Vowel remover  (0) 2022.10.31