文章作者:Tyan 博客:noahsnail.com | CSDN | 简书
1. Description
2. Solution
- Version 1
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
- https://leetcode.com/problems/height-checker/