6 kyu
I love big nums and I cannot lie
428 of 823joh_pot
Description:
Write a function that given an array of numbers >= 0, will arrange them such that they form the biggest number.
For example:
[1, 2, 3] --> "321" (3-2-1)
[3, 30, 34, 5, 9] --> "9534330" (9-5-34-3-30)
The results will be large so make sure to return a string.
Strings
Arrays
Algorithms
Similar Kata:
Stats:
Created | Oct 5, 2015 |
Published | Oct 5, 2015 |
Warriors Trained | 3163 |
Total Skips | 139 |
Total Code Submissions | 9045 |
Total Times Completed | 823 |
JavaScript Completions | 428 |
C# Completions | 99 |
Ruby Completions | 53 |
Python Completions | 222 |
CoffeeScript Completions | 9 |
C++ Completions | 65 |
Total Stars | 97 |
% of votes with a positive feedback rating | 91% of 163 |
Total "Very Satisfied" Votes | 140 |
Total "Somewhat Satisfied" Votes | 16 |
Total "Not Satisfied" Votes | 6 |