Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to find the max value in a 2d array

public class MyClass { 
    public static void main(String args[]) { 
        int arr[][] = { 
         {1,2,3,4,5}, 
         {100,101,102,103,10491}, 
         {2,80,70,57,66}, 
         {1000,10001,65,34,54} 
        }; 
 
        int max = Integer.MIN_VALUE; 
        for(int i = 0; i < arr.length; i++){ 
            for(int j = 0; j < arr[i].length; j++){ 
                if(arr[i][j] > max){ 
                    max = arr[i][j]; 
                } 
            } 
             
        } 
        System.out.println("Maximum Value : " + max); 
    } 
}
Source by www.quora.com #
 
PREVIOUS NEXT
Tagged: #find #max #array
ADD COMMENT
Topic
Name
2+6 =