摘要: class Solution { public int twoCitySchedCost(int[][] costs) { int len = costs.length; int t = len/2; Arrays.sort(costs,(a,b)->{return a[0]-a[1]-(b[0]- 阅读全文
posted @ 2020-10-13 13:51 dlooooo 阅读(54) 评论(0) 推荐(0) 编辑