给定⼀个数组,要求在这个数组中找出 4 个数之和为 0 的所有组合。
输入
Given array nums = [1, 0, -1, 0, -2, 2], and target = 0.
输出
[-1, 0, 0, 1], [-2, -1, 1, 2], [-2, 0, 0, 2]