diff options
Diffstat (limited to 'progs/a420.py')
-rw-r--r-- | progs/a420.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/a420.py b/progs/a420.py new file mode 100644 index 0000000..1c47c83 --- /dev/null +++ b/progs/a420.py @@ -0,0 +1,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
\ No newline at end of file |