Skip to content

Commit 56038bf

Browse files
committed
minor change
1 parent 228709c commit 56038bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Arrays/three_largest_no.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020

21-
def three_max_noo(arr:list)-> list:
21+
def three_max_no(arr:list)-> list:
2222
# give int minvalue to a,b,
2323
max_1,max_2,max_3= -9999,-9999,-9999
2424
# we will iterate through the array and compare the values
@@ -35,6 +35,6 @@ def three_max_noo(arr:list)-> list:
3535

3636
# example-1
3737
arr=[141,1,17,-7,-17,-27,18,541,8,7,7]
38-
print(three_max_noo(arr))
38+
print(three_max_no(arr))
3939

4040
# sample output [541, 141, 18]

0 commit comments

Comments
 (0)