LeetCode: Height Checker
Question
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.
Solution #1
def height_checker(heights)
counter = 0
sorted_heights = heights.sort
sorted_heights.each_with_index do |height, index|
counter += 1 if heights[index] != height
end
counter
end
Solution #2
def height_checker(heights)
counter = 0
heights.sort.each_with_index { |height,index| counter += 1 if height != heights[index] }
counter
end
Comments