日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Leetcode 18. 四数之和 (每日一题 20211011)

發布時間:2025/4/5 编程问答 17 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Leetcode 18. 四数之和 (每日一题 20211011) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
給你一個由 n 個整數組成的數組?nums ,和一個目標值 target 。請你找出并返回滿足下述全部條件且不重復的四元組?[nums[a], nums[b], nums[c], nums[d]] :0 <= a, b, c, d?< n a、b、c 和 d 互不相同 nums[a] + nums[b] + nums[c] + nums[d] == target 你可以按 任意順序 返回答案 。示例 1:輸入:nums = [1,0,-1,0,-2,2], target = 0 輸出:[[-2,-1,1,2],[-2,0,0,2],[-1,0,0,1]] 示例 2:輸入:nums = [2,2,2,2,2], target = 8 輸出:[[2,2,2,2]]鏈接:https://leetcode-cn.com/problems/4sumclass Solution:def fourSum(self, nums: List[int], target: int) -> List[List[int]]:result = []if not nums or len(nums) < 4:return resultnums.sort()length = len(nums)for i in range(length-3):if i > 0 and nums[i]==nums[i-1]:continueif nums[i] + nums[length-3] + nums[length-2] + nums[length-1] < target:continueif nums[i] + nums[i+1] + nums[i+2] + nums[i+3] > target:breakfor j in range(i+1,length-2):if j > i+1 and nums[j]==nums[j-1]:continueif nums[i] + nums[j] + nums[length-1] + nums[length-2] < target:continueif nums[i] + nums[j] + nums[j+1] + nums[j+2] > target:breakleft, right = j + 1, length - 1while left < right:total = nums[i] + nums[j] + nums[left] + nums[right] if total == target:result.append([nums[i],nums[j],nums[left],nums[right]])left += 1while left < right and nums[left] == nums[left - 1]:left += 1right -= 1while left < right and nums[right] == nums[right + 1]:right -= 1elif total < target:left += 1else:right -= 1return result

總結

以上是生活随笔為你收集整理的Leetcode 18. 四数之和 (每日一题 20211011)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。