Skip to main content

Removing Minimum and Maximum From Array - Solution & Explanation

MediumArrayGreedy14 min read
Practice this problem

Problem Statement

You are given a 0-indexed array of distinct integers nums.

There is an element in nums that has the lowest value and an element that has the highest value. We call them the minimum and maximum respectively. Your goal is to remove both these elements from the array.

A deletion is defined as either removing an element from the front of the array or removing an element from the back of the array.

Return the minimum number of deletions it would take to remove both the minimum and maximum element from the array.

 

Example 1:

Input: nums = [2,10,7,5,4,1,8,6]
Output: 5
Explanation: 
The minimum element in the array is nums[5], which is 1.
The maximum element in the array is nums[1], which is 10.
We can remove both the minimum and maximum by removing 2 elements from the front and 3 elements from the back.
This results in 2 + 3 = 5 deletions, which is the minimum number possible.

Example 2:

Input: nums = [0,-4,19,1,8,-2,-3,5]
Output: 3
Explanation: 
The minimum element in the array is nums[1], which is -4.
The maximum element in the array is nums[2], which is 19.
We can remove both the minimum and maximum by removing 3 elements from the front.
This results in only 3 deletions, which is the minimum number possible.

Example 3:

Input: nums = [101]
Output: 1
Explanation:  
There is only one element in the array, which makes it both the minimum and maximum element.
We can remove it with 1 deletion.

 

Constraints:

  • 1 <= nums.length <= 105
  • -105 <= nums[i] <= 105
  • The integers in nums are distinct.

Approach Overview

Problem Overview: You receive an integer array and must remove both the minimum and maximum values using the fewest deletions. Deletions can only occur from the front or the back of the array, so the task reduces to choosing the best sequence of prefix and/or suffix removals.

Approach 1: Calculate Minimum Deletions from Three Possible Strategies (Time: O(n), Space: O(1))

First scan the array to locate the indices of the minimum and maximum values. Once you know their positions, three deletion strategies exist: remove elements only from the front, only from the back, or from both ends. If the smaller index is left and the larger index is right, the options become right + 1 deletions from the front, n - left deletions from the back, or a mixed strategy of (left + 1) + (n - right). Compute all three and return the minimum. The approach works because the order of deletions does not matter once both indices are known. This is the most direct greedy formulation of the problem and only requires a single traversal to find the min and max positions.

Approach 2: Single Pass Minimization of Deletions (Time: O(n), Space: O(1))

This variation combines index discovery and deletion calculation into a single scan. As you iterate through the array, update the current positions of the minimum and maximum elements. After each update, compute the potential deletion counts using the same three strategies (front, back, both sides) and track the smallest value seen so far. The key idea is incremental evaluation instead of waiting until the end of the scan. The algorithm still relies on the same greedy insight: once the positions of min and max are known, the optimal removal must be one of the three boundary strategies. Since only a few integers are stored, the space usage stays constant.

Recommended for interviews: The three-strategy greedy solution is what most interviewers expect. It clearly demonstrates reasoning about boundary operations in an array and reduces the problem to a small set of deterministic cases. Explaining why only three deletion strategies exist shows strong problem decomposition skills.

Approach 1: Approach 1: Calculate Minimum Deletions from Three Possible Strategies

To solve this problem efficiently, we identify the indices of the minimum and maximum elements in the array. With these indices, we consider the following three strategies for deleting the two elements:

  1. Remove both from the front: The target is to delete elements from the start of the array up to the farthest of the min or max indices.
  2. Remove both from the back: Here, we delete from the end of the array up to the farthest of the min or max indices in reverse direction.
  3. Remove one from each end: This involves taking both ends into consideration by removing elements from the start to the nearest of the min or max and from the end to the nearest of the other. This often results in fewer deletions than the previous strategies in certain scenarios.

Calculate the number of deletions for each strategy and return the minimum among them.

The C solution finds the indices of the minimum and maximum elements. Using these indices, we calculate the number of deletions required using three strategies as explained above: deleting from the start, deleting from the end, or a combination. The minimum of these values is returned.

Code

C

C++

Java

Python

C#

JavaScript

Complexity

Time Complexity: O(n), where n is the number of elements in the array, as we traverse the array to find min and max elements.
Space Complexity: O(1), as no additional space proportional to input size is used.

Try this approach in the editor →

Approach 2: Approach 2: Single Pass Minimization of Deletions

This approach also involves determining the indices of the minimum and maximum elements but optimizes the decision-making within a single loop. As the positions of min and max are found, potential deletions are calculated on the fly by maintaining tentative strategies and updating the minimal deletions required, thus avoiding any extra passes for separate calculations.

In this optimized C solution, minimal deletions from both ends and a mixed strategy are calculated dynamically within a single loop pass. It minimizes overhead by having in-line calculations.

Code

C

C++

Complexity

Time Complexity: O(n) — one sweep to find indices and calculate deletions.
Space Complexity: O(1).

Try this approach in the editor →

Approach 3: Default Approach

Code

Python

Java

C++

Go

TypeScript

Try this approach in the editor →

Complexity Comparison

ApproachComplexity
Approach 1: Calculate Minimum Deletions from Three Possible Strategies

Time Complexity: O(n), where n is the number of elements in the array, as we traverse the array to find min and max elements.
Space Complexity: O(1), as no additional space proportional to input size is used.

Approach 2: Single Pass Minimization of Deletions

Time Complexity: O(n) — one sweep to find indices and calculate deletions.
Space Complexity: O(1).

Default Approach

Detailed Complexity Analysis

ApproachTimeSpaceWhen to Use
Three Strategy Greedy CalculationO(n)O(1)General case. Clear reasoning and easiest to explain in interviews.
Single Pass MinimizationO(n)O(1)When combining scanning and evaluation in one traversal for slightly cleaner runtime flow.

Video Solution

Removing Minimum and Maximum From Array | LeetCode Weekly contest 269 | DSAAditya Rajiv3,668 views views

Watch 9 more video solutions →

Frequently Asked Questions

Is Removing Minimum and Maximum From Array easy or hard?
The problem is typically classified as Medium because the implementation is simple but the key insight involves analyzing boundary deletion strategies. Once you recognize that only three removal patterns exist—front, back, or both sides—the solution becomes straightforward.
Removing Minimum and Maximum From Array Python/Java solution
Python and Java implementations follow the same logic: scan the array to track the indices of the minimum and maximum values, normalize their order using min and max, then compute the three deletion counts. Return the smallest value. The runtime is O(n) with constant extra space.
How to solve Removing Minimum and Maximum From Array in O(n)?
Traverse the array once to find the indices of the smallest and largest elements. Let the smaller index be left and the larger index be right. Calculate three possible deletion counts: remove from the front (right + 1), remove from the back (n - left), or remove from both ends ((left + 1) + (n - right)). The minimum of these three values gives the answer in linear time.
What is the best approach for Removing Minimum and Maximum From Array?
The best approach is a greedy strategy that evaluates three deletion options after locating the indices of the minimum and maximum elements. You either delete from the front until the farther index is removed, delete from the back until the nearer index is removed, or remove elements from both sides. Computing the minimum of these three values yields the optimal answer in O(n) time and O(1) space.
Is Removing Minimum and Maximum From Array asked at Google/Amazon/Meta?
Array boundary problems and greedy deletion strategies frequently appear in interviews at companies like Amazon, Google, and Meta. Variants of this question test reasoning about indices, prefix/suffix operations, and minimizing operations under constraints. The problem is commonly used in coding practice platforms to build these skills.
What data structure is used in Removing Minimum and Maximum From Array?
The problem primarily uses a simple array and index tracking. No advanced data structures are required because the solution only needs to locate the minimum and maximum values and reason about their positions relative to the array boundaries.
What is the time complexity of Removing Minimum and Maximum From Array?
The optimal solution runs in O(n) time because the array must be scanned to find the positions of the minimum and maximum elements. After obtaining the indices, computing the three deletion strategies takes constant time. Space complexity remains O(1) since only a few integer variables are stored.

Ready to solve this problem?

Practice Removing Minimum and Maximum From Array with our built-in code editor and test cases.

Practice on FleetCode