코딩테스트자바1 조건에 맞게 수열 변환하기 1_자바 https://school.programmers.co.kr/learn/courses/30/lessons/181882 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int[] solution(int[] arr) { int[] answer = new int[arr.length]; for(int i = 0; i= 50 && arr[i] %2 == 0){ answer[i] = arr[i] /2; }else if(arr[i] < 50 && arr[i] %2 != 0){ answer[i] = arr[i] *2; }else{.. 2023. 12. 9. 이전 1 다음