https://www.acmicpc.net/problem/10989 10989번: 수 정렬하기 3 첫째 줄에 수의 개수 N(1 ≤ N ≤ 10,000,000)이 주어진다. 둘째 줄부터 N개의 줄에는 수가 주어진다. 이 수는 10,000보다 작거나 같은 자연수이다. www.acmicpc.net // 프로덕션코드 public class Yun_10989 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int numberOfElements = scanner.nextInt(); int[] array = new int[numberOfElements]; for (int i = 0; i < numberOfEleme..