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[
相關文章
相關標籤/搜索