# Score Board Library (simple)Live Football World Cup Score Board that shows matches and scores## ContentThis module includes:- API for the library- Generic implementation- Reference implementation## DescriptionThe board supports the following operations:1. Start a game. When a game starts, it should capture (being initial score 0 – 0): a. Home team b. Away team2. Finish game. It will remove a match from the scoreboard.3. Update score. Receiving the pair score; home team score and away team score updates a game score.4. Get a summary of games by total score. Those games with the same total score will be returned ordered by the most recently added to our system.As an example, being the current data in the system:``` a. Mexico - Canada: 0 - 5 b. Spain - Brazil: 10 – 2 c. Germany - France: 2 – 2 d. Uruguay - Italy: 6 – 6 e. Argentina - Australia: 3 - 1``` The summary would provide with the following information:```5. Uruguay 6 - Italy 66. Spain 10 - Brazil 27. Mexico 0 - Canada 58. Argentina 3 - Australia 19. Germany 2 - France 2```