Q: Write a function that list any 3 elements that sum to zero, from an array of integers.
Notes:
Example Input: [-5, 1, 10, 2, 3] // array of integers Output: [(-5, -5, 10), (-5, 2, 3)] // array of tuples