wes d2a2ba9e15 first commit 4 سال پیش
..
README.md d2a2ba9e15 first commit 4 سال پیش
code.cpp d2a2ba9e15 first commit 4 سال پیش
unitTest.cpp d2a2ba9e15 first commit 4 سال پیش

README.md

Purge and Organize

by Alex Golubov tags: arrays, data_structures, sorting, numbers

Summary

Given an array of numbers, write a function that returns an array that... Has all duplicate elements removed. Is sorted from least value to greatest value. Examples uniqueSort([1, 2, 4, 3]) ➞ [1, 2, 3, 4] uniqueSort([1, 4, 4, 4, 4, 4, 3, 2, 1, 2]) ➞ [1, 2, 3, 4] uniqueSort([6, 7, 3, 2, 1]) ➞ [1, 2, 3, 6, 7] Notes N/A

Instructions

Given an array of numbers, write a function that returns an array that...

  1. Has all duplicate elements removed.
  2. Is sorted from least value to greatest value.

Examples

uniqueSort([1, 2, 4, 3]) ➞ [1, 2, 3, 4]

uniqueSort([1, 4, 4, 4, 4, 4, 3, 2, 1, 2]) ➞ [1, 2, 3, 4]

uniqueSort([6, 7, 3, 2, 1]) ➞ [1, 2, 3, 6, 7]

Notes

N/A