Q24 Error in findZero Method
I got this wrong because I got confused on what <= vs < did. In arrays, it should ALWAYS be < arr.length to avoid out of bounds error. <= arr.length -1 also works. In this case, if an array did not have 0, then it would try to index at arr.length which results in error.