Delete Week-15/Day-99_Final-Hello-World directory

This commit is contained in:
Dom Sec 2023-03-25 19:03:12 -04:00 committed by GitHub
parent 8106aaff2a
commit 1ed4fde3cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,36 +0,0 @@
## How is the Weather?
You intend to visit **Brazil** and get to know its main tourist spots on your well-deserved vacation.
To make the most of this period, from the list of municipalities in your travel itinerary, you would like to know the weather conditions for the next 5 days (including the current day) of each municipality informed.
Write a function that displays the weather forecast for a municipality informed for the next 5 days (including the current day).
### Input parameters:
- Name of the municipality (it can be a partial name, the system must do a best guess)
- State abbreviation (all uppercase, 2 characters long)
## Output:
Object with the following structure:
- Name of the municipality
- State abbreviation
- List/Vector/Array containing 5 forecasts (one for each day, including today). Each forecast has:
- Morning:
- Minimum Temperature (° C)
- Maximum Temperature (° C)
- Resume
- Afternoon:
- Minimum Temperature (° C)
- Maximum Temperature (° C)
- Resume
- Evening:
- Minimum Temperature (° C)
- Maximum Temperature (° C)
- Resume
### Notes:
- You can make use of the public [API](https://servicodados.ibge.gov.br/api/v1/localidades/municipios) of the Brazilian Institute of Geography and Statistics (IBGE) to get more information about municipalities and states. This API was used on [day-98 challenge](../../Week-14/day-98/README.md).
- You can make use of the public [weather forecast API](https://portal.inmet.gov.br/manual/manual-de-uso-da-api-de-previs%C3%A3o) of the Brazilian Institute of Geography and Statistics (IBGE).
- If the forecast is not available in all three times of the day, use a single forecast for the whole day. This is specially common for days after day 3.