Python Program to find largest element in an array

0

Python Program to find largest element in an array

  • In this program we learn how to write a code to find largest element in an array in python.

Source Code:

#Follow @Programmerfect

# Python3 program to find maximum
# in arr[] of size n

# python function to find maximum
# in arr[] of size n
def largest(arr,n):

    # Initialize maximum element
    max = arr[0]

    # Traverse array elements from second
    # and compare every element with
    # current max
    for i in range(1, n):
        if arr[i] > max:
            max = arr[i]
    return max

# Driver Code
arr = [10, 324, 45, 90, 9808,1000000,250000000,450000000000]
n = len(arr)
Ans = largest(arr,n)
print ("Largest in given array is",Ans) 

 


 

Post a Comment

0Comments
Post a Comment (0)