I have a 2D array: (int[,] sz = new int[52, 5];)
filled with int32s (all of them is between 1 and 90). I need to decide if there is at least one number between 1 and 90, that is not contained in the array.I only need a yes or no answer.
I tried with Array.Exists
, but it didn't work (I probably didn't use it properly).
I'm looking for the most simple solution (just started recently, I'm far from expert), and I would apreciate a little help :)