프로그래머스 - 약수구하기Problem Description정수 n이 매개변수로 주어질 때, n의 약수를 오름차순으로 담은 배열을 return하도록 solution 함수를 완성해주세요. Constraints:1 ≤ n ≤ 10,000 My Solution (C#)using System;using System.Collections.Generic;public class Solution { public int[] solution(int n) { List factors = new List(); for(int i= 1; i Generic 네임스페이스 사용 깜빡했었음