628. Maximum Product of Three Numbers

最后答案 class Solution {     public int maximumProduct(int[] nums) {         int n=nums.length-1;         int sum=0;         Arrays.sort(nums);                               return Math.max(nums[0]*nums[
相关文章
相关标签/搜索