Given the goals chart for a football season, your task is to find the players with the highest goals per team.
Input
The Goals table will have 4 columns: player
, team
, goals_scored
, played
. Each player would appear only once in the table.
Output
Find the players with the highest number of goals based on goals_scored
per team. There can be many players who scored the highest number of goals. Print all the players first order by the team name and then the player name.
If there are multiple players within a team who scored highest number of goals; print all of them.