The challenge

Students are asked to stand in non-decreasing order of heights for an annual photo.

Return the minimum number of students that must move in order for all students to be standing in non-decreasing order of height.

Notice that when a group of students is selected they can reorder in any possible way between themselves and the non selected students remain on their seats.

Example 1:

Example 2:

Example 3:

Constraints:

  • 1 <= heights.length <= 100
  • 1 <= heights[i] <= 100

The solution

The easiest way to solve this is to sort a copy of the array, then compare which values are different.

class Solution {
    // our method
    public int heightChecker(int[] heights) {
        // clone the input array
        int[] heights2 = Arrays.copyOf(heights, heights.length);
        
        // sort the new array to compare against
        Arrays.sort(heights2);
        
        // keep a count to return
        int count = 0;

        // loop through the input array
        for (int i=0; i<heights.length; i++) {
            // if the sorted value doesn't match
            // then increment
            if (heights[i]!=heights2[i]) count++;
        }
        
        // return our count
        return count;
    }
}