(Implementing Interfaces) Implement the following
interface and classes:
a. Interface IsCompetition, which has no constants
and two methods (see the classes below for details about what these
methods should do):
i. getSummary(), ii. getCompetitors()
b. Class Game: A game object is associated with
a home team, away team, home score, away score, and a date of
competition. It should only be created using the following
constructor:
Game(String HTeam, String ATeam, int HScore, int AScore,
LocalDate date).
A game is also...