Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- PYTHON
- 맥북
- github
- 데이콘
- Kaggle
- leetcode
- 코로나19
- 금융문자분석경진대회
- 자연어처리
- 편스토랑 우승상품
- 프로그래머스
- ChatGPT
- 파이썬
- 편스토랑
- ubuntu
- 캐치카페
- programmers
- 더현대서울 맛집
- AI 경진대회
- 우분투
- Docker
- hackerrank
- gs25
- 프로그래머스 파이썬
- SW Expert Academy
- Git
- Baekjoon
- Real or Not? NLP with Disaster Tweets
- 백준
- dacon
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 1051. Height Checker (Python) 본문
728x90
반응형
Students are asked to stand in non-decreasing order of heights for an annual photo.
Return the minimum number of students that must move in order for all students to be standing in non-decreasing order of height.
Notice that when a group of students is selected they can reorder in any possible way between themselves and the non selected students remain on their seats.
Example 1:
Input: heights = [1,1,4,2,1,3]
Output: 3
Explanation:
Current array : [1,1,4,2,1,3]
Target array : [1,1,1,2,3,4]
On index 2 (0-based) we have 4 vs 1 so we have to move this student.
On index 4 (0-based) we have 1 vs 3 so we have to move this student.
On index 5 (0-based) we have 3 vs 4 so we have to move this student.
Example 2:
Input: heights = [5,1,2,3,4]
Output: 5
Example 3:
Input: heights = [1,2,3,4,5]
Output: 0
Constraints:
- 1 <= heights.length <= 100
- 1 <= heights[i] <= 100
Solution
class Solution:
def heightChecker(self, heights: List[int]) -> int:
sorted_height = sorted(heights)
cnt = 0
for i, height in enumerate(heights):
if sorted_height[i] != height:
cnt = cnt + 1
return cnt
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 203. Remove Linked List Elements (Python) (0) | 2020.09.29 |
---|---|
[leetCode] 1417. Reformat The String (Python) (0) | 2020.09.28 |
[leetCode] 925. Long Pressed Name (Python) (0) | 2020.09.25 |
[leetCode] 686. Repeated String Match (Python) (0) | 2020.09.24 |
[leetCode] 1207. Unique Number of Occurrences (Python) (0) | 2020.09.23 |
Comments