글
프로그래머스 C# 배열 두 배 만들기(P, J)
프로그래밍
2023. 2. 4. 13:38
728x90
SMALL
using System;
public class Solution {
public int[] solution(int[] numbers) {
int[] answer = new int[numbers.Length];
for(int i=0;i<numbers.Length;i++)
answer[i] = numbers[i] * 2;
return answer;
}
}
/////
파이썬
/////
def solution(numbers):
return [num*2 for num in numbers]
자바
class Solution {
public int[] solution(int[] numbers) {
int[] answer = {};
answer = new int[numbers.length];
for(int i=0; i<answer.length; i++)
{
answer[i] = numbers[i]*2;
}
return answer;
}
}
import java.util.*;
class Solution {
public ArrayList solution(int[] numbers) {
ArrayList<Integer> answer = new ArrayList<>();
for(int num : numbers)
{
answer.add(num*2);
}
return answer;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 음양 더하기(파이썬, 자바) (0) | 2023.02.05 |
---|---|
프로그래머스 C# H-Index(Array.Sort(), 파이썬, 자바) (0) | 2023.02.04 |
프로그래머스 C# 몫 구하기(개쉬움, 파이썬, 자바) (0) | 2023.02.02 |
프로그래머스 C# 이진 변환 반환하기(이진수, 이진법 Convert.ToString) (0) | 2023.02.01 |
프로그래머스 C# 내적 (0) | 2023.02.01 |