From 4629a3857b2c57418b86a3b3a7180ecb15e763e3 Mon Sep 17 00:00:00 2001 From: RijuDasgupta9116 <63913601+RijuDasgupta9116@users.noreply.github.com> Date: Thu, 1 Oct 2020 00:00:40 +0530 Subject: [PATCH] Update Largest Number.py --- Largest Number.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Largest Number.py b/Largest Number.py index cd6b450..af973d5 100644 --- a/Largest Number.py +++ b/Largest Number.py @@ -2,7 +2,7 @@ Given a list of non negative integers, arrange them such that they form the largest number. Example -Given [1, 20, 23, 4, 8], the largest formed number is 8423201. +Given [1, 20, 23, 4, 8], the largest formed number is 8423201. And also reverse the number......... """ __author__ = 'Daniel' @@ -49,4 +49,4 @@ def cmp(self, a, b): if __name__ == "__main__": assert Solution().largestNumber([0, 0]) == "0" - assert Solution().largestNumber([1, 20, 23, 4, 8]) == "8423201" \ No newline at end of file + assert Solution().largestNumber([1, 20, 23, 4, 8]) == "8423201"