Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

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
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions