> For the complete documentation index, see [llms.txt](https://mayanktyagi3111.gitbook.io/interview-prep/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mayanktyagi3111.gitbook.io/interview-prep/hashmap-and-hashset-and-sliding-window/untitled-7.md).

# Least Number of Unique Integers after K Removals

Given an array of integers `arr` and an integer `k`. Find the *least number of unique integers* after removing **exactly** `k` element&#x73;**.**

**Example 1:**

```
Input: arr = [5,5,4], k = 1
Output: 1
Explanation: Remove the single 4, only 5 is left.
```

**Example 2:**

```
Input: arr = [4,3,1,1,3,3,2], k = 3
Output: 2
Explanation: Remove 4, 2 and either one of the two 1s or three 3s. 1 and 3 will be left.
```

**Constraints:**

* `1 <= arr.length <= 10^5`
* `1 <= arr[i] <= 10^9`
* `0 <= k <= arr.length`

```java
class Solution {
    public int findLeastNumOfUniqueInts(int[] arr, int k) {
        Map<Integer, Integer> map = new HashMap<>();
        int max = 0;
        int count = 0;
        for (int x : arr) {
            if (!map.containsKey(x)) {
                map.put(x, 1);
                count++;
            } else
                map.put(x, map.get(x) + 1);
            max = Math.max(max, map.get(x));
        }
        List<Integer>[] freq = new ArrayList[max + 1];
        for (int i = 0; i <= max; i++)
            freq[i] = new ArrayList<>();
        for (int x : map.keySet())
            freq[map.get(x)].add(x);
        int removed = 0, pointer = 1;
        // Start removing the lowest frequency number to remove max unique digits
        // This will result in min answer
        while (removed < k) {
            if (freq[pointer].size() > 0) {
                // If we can remove all the difits with this frequency
                if (removed + pointer * freq[pointer].size() <= k) {
                    count -= freq[pointer].size();
                    removed += pointer * freq[pointer].size();
                }
                // else we will remove what we can
                else {
                    int possible = (k - removed) / pointer;
                    removed = k;
                    count -= possible;
                }
            }
            pointer++;
        }
        return count;
    }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://mayanktyagi3111.gitbook.io/interview-prep/hashmap-and-hashset-and-sliding-window/untitled-7.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
