백준의 N과 M으로 알아보는 순열과 조합 뽑기 순열 -모두 출력하는 순열 (동일 수 중복) N과M 1 static class Permutation{ int n; int r; int now[]; ArrayList result; public Permutation(int n, int r){ this.n = n; this.r = r; now = new int[r]; result = new ArrayList(); } public void perm(int[] arr, int depth){ if(depth == r){ for(int i = 0; i < now.length; i++){ System.out.print(now[i] + " "); } System.out.println(); return; } for(int i..