1051. Height Checker
π© Easy
Question
Input: [1,1,4,2,1,3]
Output: 3
Explanation:
Students with heights 4, 1 and 3 are not standing in the right positions.Code
def heightChecker(self, heights: List[int]) -> int:
s = sorted(heights)
count = 0
for i in range(len(heights)):
if s[i] != heights[i]:
count += 1
return countLast updated