Given the goals chart for a football season, your task is to find the player with the highest goals.
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 player with highest number of goals based on goals_scored
. Assume that there can only be exactly one highest goal scorer in the input.