Leetcode: Arrays.sort()
Posted PEAR2020
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode: Arrays.sort()相关的知识,希望对你有一定的参考价值。
Arrays.sort(points,(o1,o2)-> if(o1[1] == o2[1]) return 0; if(o1[1] < o2[1]) return -1; return 1; )
根据dp[1]进行升序排列,O(NlogN)
以上是关于Leetcode: Arrays.sort()的主要内容,如果未能解决你的问题,请参考以下文章