Distinct distinct
¶
Returns a sorted list of unique elements from the input.
Info
- The output is always sorted in ascending order
- Works with numbers, strings, and other comparable types
- Maintains the type of the input (array → array, list → list)
Tip
Use distinct to remove duplicates from data sets