MCPcopy Create free account
hub / github.com/LjyYano/LeetCode / L0018_FourSum

Class L0018_FourSum

src/main/java/L0018_FourSum.java:16–119  ·  view source on GitHub ↗

题目链接:https://leetcode.cn/problems/4sum/ 给你一个由 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 你可以按 任意顺序 返回答案。

Source from the content-addressed store, hash-verified

source not stored for this graph (policy: none)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected