Menu
Coddy logo textTech

Practice #1

Lesson 9 of 11 in Coddy's Sets in Python course.

challenge icon

Challenge

Easy

Write 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

All lessons in Sets in Python