소수 만들기1 [프로그래머스] L2 소수 만들기 [프로그래머스] L2 소수 만들기 [풀이] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 class Solution { static int answer = 0; static boolean[] primeN= new boolean[3001]; static boolean[] chk = new boolean[3001]; public int solution(int[] nums) { solve(0,0,0,nums); return answer; } static void solve(int idx, int sum, int cnt, int[] nums){ for(int i=0; i 2020. 12. 15. 이전 1 다음