Leetcode 1051. Height Checker

2021-03-02 16:30:05 浏览数 (1)

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

1. Description

2. Solution

  • Version 1
代码语言:javascript复制
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/

0 人点赞