1051. Height Checker
🟩 Easy
Question
Students are asked to stand in non-decreasing order of heights for an annual photo.
Return the minimum number of students not standing in the right positions. (This is the number of students that must move in order for all students to be standing in non-decreasing order of height.)
Example 1:
Note:
1 <= heights.length <= 100
1 <= heights[i] <= 100
Code
Last updated
Was this helpful?