I have a 2D array as follows
int[][] seatsPrices = {{10,10,10,10,10,10,10,10,10,10},
{10,10,10,10,10,10,10,10,10,10},
{10,10,10,10,10,10,10,10,10,10},
{10,10,20,20,20,20,20,20,10,10},
{10,10,20,20,20,20,20,20,10,10},
{10,10,20,20,20,20,20,20,10,10},
{20,20,30,30,40,40,30,30,20,20},
{20,30,30,40,50,50,40,30,30,20},
{30,40,50,50,50,50,50,50,40,30}};
I'm asking the user to give a number. Let's say he gives 20. So, I want to code to compare that value with the seatsPrices array iteratively and find any i,j indexes of the seatsPrices array which its values is 20, and print it. I should probably use findAny() but I cannot figure out how to use it. Note: I need to find only one "20" and stop. Thus, using two nested loop, it causes some problems for me.