프로그래머스 가장 큰 수 찾기 문제
class Solution { public int[] solution(int[] array) { int[] answer = new int[2]; int max = array[0]; for(int i=1; i
- JAVA STUDY/프로그래머스
- · 2023. 12. 18.
프로그래머스 두 개 뽑아서 더하기 문제
import java.util.Arrays; class Solution { public int[] solution(int[] numbers) { // 두개 뽑아서 더하는 로직 시작 // numbers_combination 배열 크기 넓게 시작 int[] numbers_combination = new int[numbers.length*numbers.length]; int combination_count = 0; for(int i=0; i
- JAVA STUDY/프로그래머스
- · 2023. 12. 18.