Find Largest Set of Onion Bags π
Problem statement
You are shopping online for some bags of onion. Each listing displays the number of onions that the bag contains. You want to buy a perfect set of onion bags from the entire search results list, onionBags. A perfect set of onion bags, perfect, is defined as:
- The set contains at least two bags of onion.
- When the onion bags in the set
perfectare sorted in increasing order by count, it satisfies the conditionperfect[i] = perfect[i+1]for all1 β€ i < n. Herenis the size of the set andperfect[i]is the number of onion in bagi.
Find the largest possible set perfect and return an integer, the size of that set. If no such set is possible, then return -1. It is guaranteed that all elements in onionBags are distinct.
Function
findLargestSet(onionBags: int[]) β intExamples
Example 1
onionBags = [3, 9, 4, 2, 16]return = 3The following are the perfect sets:
- Set
perfect = [3, 91]. The size of this set is 2. - Set
perfect = [4, 2]. The size of this set is 2. - Set
perfect = [4, 16]. The size of this set is 2. - Set
perfect = [4, 2, 16]. The size of this set is 3.
The size of the largest set is 3. The image below illustrates the correct ordering of the purchased onion bags by count.
Constraints
Unknown for now