LeetCode 3Sum
Link to Problem
Description: given an array of numbers, return all unique triplets that add up to 0
Pseudocode
Sort the array
Declare an empty array result
Loop over the sorted array and for each iteration: within the loop . . .
Check if the inde...
jimboslice.hashnode.dev2 min read