会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
xumeng2022
博客园
首页
新随笔
联系
订阅
管理
2023年6月20日
(Leetcode)将数组按照绝对值大小从大到小排序
摘要: 【少说多做,少想多做】 ```java nums = IntStream.of(nums). boxed(). sorted((o1,o2)->Math.abs(o2)-Math.abs(o1)) .mapToInt(Integer::intValue).toArray(); ``` + IntSt
阅读全文
posted @ 2023-06-20 15:49 山风拂水弦
阅读(366)
评论(0)
推荐(0)
公告