Input:
csv_file, the path to a csv file where each row corresponds to a video game matched with its scores, with the first column being the name of the game and the subsequent columns being the ordered integer scores.
Output:
gameScores, a list of lists with the first element of each list being the name of the video game as a string and the subsequent elements being the integer score values as ints in order.
Input: csv_file, the path to a csv file where each row corresponds to a video game matched with its scores, with the first column being the name of the game and the subsequent columns being the ordered integer scores.
Output: gameScores, a list of lists with the first element of each list being the name of the video game as a string and the subsequent elements being the integer score values as ints in order.