Leetcode 1051. Height Checker

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Height Checker

2. Solution

  • Version 1
1
2
3
4
5
6
7
8
class Solution:
def heightChecker(self, heights):
count = 0
result = sorted(heights)
for i in range(len(heights)):
if heights[i] != result[i]:
count += 1
return count

Reference

  1. https://leetcode.com/problems/height-checker/
如果有收获,可以请我喝杯咖啡!