I've seen a lot of topics about finding position of specified element in array, but I can't apply their solutions to my problem or find appropriate.
I have a jagged array:
double[][][] _distance = new double[_mapSize][_mapSize][1];
//incorrect, but for clarifying array's structure
And I need to get indexes of minimum element.
If
_distance[2][5][0]
is minimum, I need to get "2" and "5"
Thanks in advance!