Challenge 6: A Subarray with a Sum of 0
In this exercise, you will find a subarray whose sum turns out to be zero. Let's try it out!
We'll cover the following...
Problem statement
You must implement the bool findSubZero(int[] arr, int size)
function, which will take in an array of positive and negative integers. ...