noisefilter19 / LeetCode_Algorithms

A collection of solutions for Medium/Hard LeetCode problems. Educational resource
110 stars 356 forks source link

Add Go solution for 15. 3Sum #1083

Open preethamrn opened 2 years ago

preethamrn commented 2 years ago

Go solution for 3Sum using sort and left, right pointers to solve the 2Sum subproblem.