알고리즘 공부/정렬1 [LeetCode] Largest Number (Python/파이썬/Bubble Sorting/버블 정렬) Given a list of non-negative integers nums, arrange them such that they form the largest number. Note: The result may be very large, so you need to return a string instead of an integer. 음이 아닌 정수 리스트 nums이 주어지면 가장 큰 수를 구성하도록 정렬하세요. 참고: 결과가 매우 클 수 있으므로 정수 대신 문자열을 반환해야 합니다. Example 1: Input: nums = [10,2] Output: "210" Example 2: Input: nums = [3,30,34,5,9] Output: "9534330" Example 3: Input: nums.. 2021. 12. 14. 이전 1 다음 728x90 반응형