Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.09 KB

File metadata and controls

40 lines (26 loc) · 1.09 KB

exercises

A list of exercises.

Table of Contents

Dependencies

Exercise 1

This exercise expect a solution that iterate between a range of numbers and print:

  • "Visual" when the number is divisible by 3.
  • "Nuts" when the number is divisible by 5.
  • "Visual Nuts" when the number is divisible by 3 and 5.
  • the given number when is not divisible by 3 or 5.

Source

Exercise 2

This exercise expect a solution that receives a json object and return:

  • The number of countries in the world.
  • The country with the most official languages where they officially speak German.
  • All languages spoken in the listed countries.
  • The country with the highest number of official languages.
  • The most common official language(s), of all countries.

Source