takes in score file input and returns the final results for a league
'1.0.0'
10 11 12 13 14 15 16
# File 'lib/league_track_abrophy.rb', line 10 def self.process(input_array) games = input_array.map do |item| Game.new(item) end league = League.new(games) league.results.join("\n") end