Question: Given an array nums of positive integers, return the longest possible length of an array prefix of nums, such that it is possible to remove

Given an array nums of positive integers, return the longest possible length of an array prefix of nums, such that it
is possible to remove exactly one element from this prefix so that every number that has appeared in it will have
the same number of occurrences.
If after removing one element there are no remaining elements, it's still considered that every appeared number
has the same number of ocurrences (0).
Example 1:
Example 2:
Input: nums =[1,1,1,2,2,2,3,3,3,4,4,4,5]
Output: 13
Constraints:
2 nums. length 105
1 nums [i]105
 Given an array nums of positive integers, return the longest possible

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!