summaryrefslogtreecommitdiff
path: root/progs/a420.py
blob: 1c47c8349fa3ec57e4d373014a66d4a2314be102 (plain)
1
2
3
4
5
6
def find_Max_Num(arr,n) : 
    arr.sort(reverse = True) 
    num = arr[0] 
    for i in range(1,n) : 
        num = num * 10 + arr[i] 
    return num