Skip to content

Commit

Permalink
Adds challenge 2 (#2)
Browse files Browse the repository at this point in the history
* Adds challenge 2
  • Loading branch information
mattmonkey83 authored Jun 12, 2020
1 parent f7af3d9 commit 4c56468
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# devops-challenges
A collection of DevOps challenges for hiring at Zestia

* [Challenge 1](challenge_1/README.md)
* [Challenge 1](challenge_1/README.md)
* [Challenge 2](challenge_2/README.md)
20 changes: 20 additions & 0 deletions challenge_2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Challenge 2

## Instructions
Using the scripting language or tools of your choice - Please provide a solution to create a CSV file containing a **full list** of countries obtained from the [REST Countries API](https://restcountries.eu) containing the following fields -

| Country Name | Capital City | Region | Population Size | Number of Currencies | Number of Languages |
| --- | --- | --- | --- | --- | --- |
| Afghanistan | Kabul | Asia | 27657145 | 1 | 3 |

For bonus points output to the console as many of the following statistics as possible -
* The country with the largest population
* The country with the most currencies
* The country with the most languages
* A count of countries per region

## Solution Submission

Please host your solution as a **private** repository and invite your interviewer as a collaborator.

Any runtime dependencies should be specified.

0 comments on commit 4c56468

Please sign in to comment.