Last active
June 9, 2022 04:52
-
-
Save talenguyen/ec94579a13ee6190107f5472babf2391 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Given a list of non negative integers. Write code to make the largest number. | |
Example 1: | |
- Input: arr = {2, 10} | |
- Output: "210" | |
Example 2: | |
- Input: arr = {3, 30, 34, 5, 9} | |
- Output: "9534330" | |
*/ | |
void main() { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment