Practice #1
Lesson 9 of 11 in Coddy's Sets in Python course.
Challenge
EasyWrite a function remove_duplicates that takes a list of numbers as input and returns a list of unique numbers (removing duplicates) in ascending order.
Try it yourself
def remove_duplicates(numbers):
# Write code here