Problem Description
You are given an integer array nums
. We consider an array good if it is a permutation of an array base[n]
.
base[n] = [1, 2, ..., n - 1, n, n]
(in other words, it is an array of length n + 1
which contains 1
to n - 1
exactly once, plus two occurrences of n
). For example, base[1] = [1, 1]
and base[3] = [1, 2, 3, 3]
.
Return true
if the given array is good, otherwise return false
.
Key Insights
- The maximum element in the array determines the candidate
n
. - The length of the array must be exactly
n + 1
for it to be a valid permutation ofbase[n]
. - The elements of the array must contain all integers from
1
ton - 1
exactly once and includen
twice.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To determine if the given array nums
is a good array:
- Find the maximum element in
nums
, which will be our candidaten
. - Check if the length of
nums
is equal ton + 1
. - Create a frequency map (or count array) to track the occurrences of each number from
1
ton
. - Ensure that each number from
1
ton - 1
appears exactly once andn
appears exactly twice. - If all conditions are met, return
true
. Otherwise, returnfalse
.