Posts
 
Reputation
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
~5K People Reached
Favorite Forums
Favorite Tags
java x 2

1 Posted Topic

Member Avatar for vehement66

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 …

Member Avatar for jwenting
0
5K

The End.