codility - PermCheck 자바풀이

Sorbet·2021년 4월 7일
0

코테

목록 보기
10/35

codility - PermCheck 자바풀이

  • 등장하는 숫자가 10억이라서, 125메가인데, 이게 왠만한 코테사이트에서는 폭파당하는 크기라 pass
  • 대신 주어지는 배열이 10만개정도로 크지않아서 정렬후 탐색
import java.util.Arrays;

class Solution {
    public int solution(int[] A) {
        // write your code in Java SE 8

        Arrays.sort(A);
        for(int i=0 ; i<A.length ; i++) {
            if(A[i] != i+1) {
                return 0;
            }
        }

        return 1;
    }
}
profile
Sorbet is good...!

0개의 댓글