From fec13c421fac9a3a8595851ab970b9ebd89c7537 Mon Sep 17 00:00:00 2001 From: Himanshu Porwal <56030087+himanshu-17@users.noreply.github.com> Date: Fri, 8 Oct 2021 19:09:07 +0530 Subject: [PATCH] Create 1hp.py --- 1hp.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 1hp.py diff --git a/1hp.py b/1hp.py new file mode 100644 index 0000000..c1a58e3 --- /dev/null +++ b/1hp.py @@ -0,0 +1,25 @@ +# 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] +n = len(arr) +Ans = largest(arr,n) +print ("Largest in given array is",Ans) + +# This code is contributed by Smitha Dinesh Semwal