삼총사
재귀를 할때 N을 비교해주는자리와 cnt를 비교해주는 자리가 바껴있어서 답이 안나왔다.. 재귀를 설계할때 어떻게 해야할지 난감하다. 아직감이 안오는데, 관련자료를 찾아봐야겠다. class Solution { static int answer = 0; static public void back(int sum ,int[] number, boolean visit[],int depth,int n ,int cnt) { if(cnt == 3) { if(sum==0) { answer++; } return; } if(depth ==n) { return; } visit[depth] = true; back(sum + number[depth],number,visit,depth+1,n,cnt+1); visit[depth] = ..
더보기