Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
1 Posted Topic
Re: The old fashin way to find min and max is to iterate through the collection and update a min and max variables. like so: min = matrix[3][2];//just init this with something from the matrix for(int i=0; i<numRows; i++) for(int j=0; j<numCols; j++) like this: I think you can also build … |
The End.