[프로그래머스,C#] 배열 두 배 만들기
정수 배열 numbers가 매개변수로 주어집니다. numbers의 각 원소에 두배한 원소를 가진 배열을 return하도록 solution 함수를 완성해주세요. ▼ 첫번째 풀이 public int[] solution(int[] numbers) { int[] answer = new int[numbers.Length]; for(int i =0;i ▼ 두번째 풀이 (Linq.Select()를 써서한 경우)using System.Linq; // 안쓰면 에러가 난다 중요!!!public class Solution { public int[] solution(int[] numbers) { int[] answer = numbers.Sel..