leetcode1051

Posted asenyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode1051相关的知识,希望对你有一定的参考价值。

 1 class Solution:
 2     def heightChecker(self, heights: List[int]) -> int:
 3         n = len(heights)
 4         h2 = sorted(heights)
 5         count = 0
 6         for i in range(n):
 7             if heights[i] != h2[i]:
 8                 count += 1
 9         
10         return count

这道题目的思路,将原数组排序保存到另一个数组中,然后对比这两个数组中的每一项,如果值不同,则将计数器加1。

最后返回计数器的值。

以上是关于leetcode1051的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode --- 1051. Height Checker 解题报告

LeetCode 1051. 高度检查器

LeetCode 1051. 高度检查器

LeetCode 1051. Height Checker

leetcode1051

算法leetcode1051. 高度检查器(rust和go)