2016年11月30日 星期三

[LeetCode] 18. 4Sum

轉自LeetCode

Given an array S of n integers, are there elements abc, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum of target.
Note: The solution set must not contain duplicate quadruplets.
For example, given array S = [1, 0, -1, 0, -2, 2], and target = 0.

A solution set is:
[
  [-1,  0, 0, 1],
  [-2, -1, 1, 2],
  [-2,  0, 0, 2]
]
<Solution>

這題和 3Sum 思路是一樣的

只是變成4個數,且 target 可以指定

所以在原本的架構上,再多一層 for 迴圈

以及要拿掉一些檢查條件,像是不用檢查是不是為正數,因為 target 有可能是正的

code 如下

c++

Java

沒有留言:

張貼留言