2020年11月11日

力扣第四天:最接近的三数之和

摘要: 和昨天做的三数之和相差不大 新了解到绝对值:Math.abs(); class Solution { public int threeSumClosest(int[] nums, int target) { Arrays.sort(nums); int n = nums.length; int m 阅读全文

posted @ 2020-11-11 09:58 暮山寒雪 阅读(21) 评论(0) 推荐(0)

导航