package
0.0.0-20241220224003-b7cf03a90b2b
Repository: https://github.com/szhou12/leetcode-go.git
Documentation: pkg.go.dev

# README

18. 4Sum

Solution idea

思路与 15. 3Sum 一致,在threesome 外面再套一个指针

Time complexity = $O(n \times (n^2 + n^2))$ = $O(n^3)$