会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
PEAR2020
博客园
首页
新随笔
联系
订阅
管理
2023年6月23日
Leetcode: Arrays.sort() - comparator
摘要: 1. 一般可以用简易版: Arrays.sort(lst, (a,b) -> a[0]-b[0]); 但是在遇到a,b是large numbers时候遇到困难,改成: Arrays.sort(points,(o1,o2)->{ if(o1[1] == o2[1]) return 0; if(o1[1
阅读全文
posted @ 2023-06-23 11:47 PEAR2020
阅读(26)
评论(0)
推荐(0)
编辑
公告