업데이트 :: 2018.08.15 문제코드결과학습문제Counting Elements > PermCheck Check whether array A is a permutation. 코드첫 번째 풀이import java.util.*; // you can write to stdout for debugging purposes, e.g. // System.out.println("this is a debug message"); class Solution { public int solution(int[] A) { // [배열의 순열을 파악하는 문제] // A의 길이 1~10000000000 (충분히큰수) // N의 크기 1~10000000000 (층븐히큰수) // => 배열이 반드시 1부터 시작하나 ? 아니라고 가정 ..