1 Star 0 Fork 0

徐长贺/Leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
_1051.java 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
Fisher Coder 提交于 6年前 . add 1051
package com.fishercoder.solutions;
import java.util.Arrays;
/**
* 1051. Height Checker
*
* Students are asked to stand in non-decreasing order of heights for an annual photo.
* Return the minimum number of students not standing in the right positions.
* (This is the number of students that must move in order for all students to be standing in non-decreasing order of height.)
*
* Example 1:
* Input: [1,1,4,2,1,3]
* Output: 3
* Explanation:
* Students with heights 4, 3 and the last 1 are not standing in the right positions.
*
* Note:
*
* 1 <= heights.length <= 100
* 1 <= heights[i] <= 100
* */
public class _1051 {
public static class Solution1 {
public int heightChecker(int[] heights) {
int[] originals = Arrays.copyOf(heights, heights.length);
Arrays.sort(heights);
int count = 0;
for (int i = 0; i < originals.length; i++) {
if (heights[i] != originals[i]) {
count++;
}
}
return count;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/isulong/Leetcode.git
git@gitee.com:isulong/Leetcode.git
isulong
Leetcode
Leetcode
master

搜索帮助