当前位置:网站首页>LeetCode1051(C#)
LeetCode1051(C#)
2022-07-07 15:38:00 【有趣就行】
题目
学校打算为全体学生拍一张年度纪念照。根据要求,学生需要按照 非递减 的高度顺序排成一行。
排序后的高度情况用整数数组 expected 表示,其中 expected[i] 是预计排在这一行中第 i 位的学生的高度(下标从 0 开始)。
给你一个整数数组 heights ,表示 当前学生站位 的高度情况。heights[i] 是这一行中第 i 位学生的高度(下标从 0 开始)。
返回满足 heights[i] != expected[i] 的 下标数量 。
示例1:
输入:heights = [1,1,4,2,1,3]
输出:3
解释:
高度:[1,1,4,2,1,3]
预期:[1,1,1,2,3,4]
下标 2 、4 、5 处的学生高度不匹配。
示例 2:
输入:heights = [5,1,2,3,4]
输出:5
解释:
高度:[5,1,2,3,4]
预期:[1,2,3,4,5]
所有下标的对应学生高度都不匹配。
示例 3:
输入:heights = [1,2,3,4,5]
输出:0
解释:
高度:[1,2,3,4,5]
预期:[1,2,3,4,5]
所有下标的对应学生高度都匹配。
代码
- Linq 一句扫天下
public class Solution
{
public int HeightChecker(int[] heights)
{
return heights.OrderBy(h => h).
Zip(heights, (e,h) => (first : e, second : h)).
Count(eh => eh.first != eh.second);
}
}
边栏推荐
- [fan Tan] those stories that seem to be thinking of the company but are actually very selfish (I: building wheels)
- PLC:自动纠正数据集噪声,来洗洗数据集吧 | ICLR 2021 Spotlight
- 【饭谈】Web3.0到来后,测试人员该何去何从?(十条预言和建议)
- First in China! Todesk integrates RTC technology into remote desktop, with clearer image quality and smoother operation
- Sator推出Web3游戏“Satorspace” ,并上线Huobi
- SIGGRAPH 2022最佳技术论文奖重磅出炉!北大陈宝权团队获荣誉提名
- [Seaborn] combination chart: facetgrid, jointgrid, pairgrid
- LeetCode 1774. 最接近目标价格的甜点成本 每日一题
- QT video transmission
- Repair method of firewall system crash and file loss, material cost 0 yuan
猜你喜欢
Process from creation to encapsulation of custom controls in QT to toolbar (I): creation of custom controls
Pychart ide Download
NeRF:DeepFake的最终替代者?
How to add aplayer music player in blog
LeetCode刷题day49
Shallow understanding Net core routing
Siggraph 2022 best technical paper award comes out! Chen Baoquan team of Peking University was nominated for honorary nomination
让保险更“保险”!麒麟信安一云多芯云桌面中标中国人寿, 助力金融保险信息技术创新发展
How to choose the appropriate automated testing tools?
专精特新软件开发类企业实力指数发布,麒麟信安荣誉登榜
随机推荐
Shallow understanding Net core routing
从DevOps到MLOps:IT工具怎样向AI工具进化?
skimage学习(1)
电脑无法加域,ping域名显示为公网IP,这是什么问题?怎么解决?
LeetCode 213. 打家劫舍 II 每日一题
DNS 系列(一):为什么更新了 DNS 记录不生效?
【视频/音频数据处理】上海道宁为您带来Elecard下载、试用、教程
QML beginner
mysql实现两个字段合并成一个字段查询
SlashData开发者工具榜首等你而定!!!
Repair method of firewall system crash and file loss, material cost 0 yuan
With the latest Alibaba P7 technology system, mom doesn't have to worry about me looking for a job anymore
浅谈 Apache Doris FE 处理查询 SQL 源码解析
LeetCode 1155. 掷骰子的N种方法 每日一题
DAPP defi NFT LP single and dual currency liquidity mining system development details and source code
第二十四届中国科协湖南组委会调研课题组一行莅临麒麟信安调研考察
LeetCode 648(C#)
Reflections on "product managers must read: five classic innovative thinking models"
Biped robot controlled by Arduino
Share the latest high-frequency Android interview questions, and take you to explore the Android event distribution mechanism