Problem 925. Unique - Very Very Large Numbers

Given a vector column, with some very large numbers, create the ascending sort and unique vector.

Input: A (column vector)

Output: B (unique and ascending sorted column vector)

Examples: [5;4;3;2;2;1] outputs [1;2;3;4;5]

[9223372036854775808;9223372036854775806] outputs [9223372036854775806;9223372036854775808]

Solution Stats

47.95% Correct | 52.05% Incorrect
Last Solution submitted on Mar 03, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers75

Suggested Problems

More from this Author294

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!