알고리즘 23일차

Panther·2021년 8월 23일
0

Algorithm

목록 보기
11/15

문제 출처: https://leetcode.com/problems/height-checker/

func heightChecker(_ heights: [Int]) -> Int {
    var sorted = heights.sorted(by: <)
    var count = 0
    for i in 0..<sorted.count {
        if heights[i] != sorted[i] {
            count += 1
        } else {
            
        }
    }
    return count
}

0개의 댓글