int Min[m];
for(int i=0; i<m;i++){
int Min_Element=INT_MAX;
for(int j=0;j<n;j++){
Min_Element = min ( Min_Element , Target[i][j]);
}
Min[i]=Min_Element;
}
Can someone tell me the whole explaination about the algorithm above to me please..
I still can't figure out the detail about how the Min_Element = min ( Min_Element , Target[i][j]); works..