본문 바로가기
알고리즘 문제풀이/Programmers - 자바

프로그래머스 - 배열 두배 만들기

by 올리브영 2023. 2. 23.
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
반응형