Given a vector, v, of positive integers, return a vector, w, by sorting v in ascending order, such that primary sorting is done by the first digit (representing the largest value), secondary sorting by the second digit (next largest value), and so on.
Example:
v = [14 3 268 14 210 1 80];
w = [1 14 14 210 268 3 80];
As shown above, in cases of multiple integers starting with the same digits, such as 1 and 14, shorter integers take precedence.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers87
Suggested Problems
-
Return a list sorted by number of occurrences
2891 Solvers
-
6715 Solvers
-
Create a matrix X, where each column is a shifted copy of the vector v
224 Solvers
-
Replace Nonzero Numbers with 1
446 Solvers
-
Convert from Fahrenheit to Celsius
28119 Solvers
More from this Author45
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Good problem and I love the level idea.