728x90
반응형
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;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 순서쌍의 개수 (0) | 2023.02.23 |
---|---|
프로그래머스 - 중복된 숫자 개수 (0) | 2023.02.23 |
프로그래머스 - 아이스 아메리카노 (0) | 2023.02.23 |
프로그래머스 - 삼각형의 완성조건 (1) (0) | 2023.02.22 |
프로그래머스 - 문자 반복 출력하기 (0) | 2023.02.22 |