Let
a = [9 9 9 9 9 9 8 8 8 8 7 7 7 6 6 6 5 5 4 2 1] b = [1 1 1 3 3 3 3 3 4 4 4 4 4 10 10 10]
Output should be
[9 8 7 6 5 4 2 1 3 10]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers110
Suggested Problems
-
Return a list sorted by number of occurrences
2895 Solvers
-
Find the sum of the elements in the "second" diagonal
1204 Solvers
-
Given a window, how many subsets of a vector sum positive
873 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
400 Solvers
-
366 Solvers
More from this Author9
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I think the description and test suite on this problem is slightly off. When I see 'union' I already assume that no duplicates are permitted and order is irrelevant.