[SOLVED] (Thank you) Top of the leaderboard
I'm working on top of the leaderboard challenge which reads like this: "You need to write a program for the game to sort player scores. The program you are given takes N number as input, which represents the number of players, and defines a score list. Complete the program to take N count of numbers (the scores) as input, store them in a scores list, sort and output them, each separated by a space. Sample Input 3 12 4 5 Sample Output 4 5 12 You need to execute the Add() method inside the while loop" my code is here: https://code.sololearn.com/ca4a9a76A10a its taking the input correctly but refusing to output. I'd appreciate it if someone could take a look and nudge me in the direction of where I'm going wrong please.