Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Quiz
2. Question 1
Summary

Instruction

Let's start with Question 1!

Exercise

Write a function named unique_len(element_list) that accepts a list and returns the number of unique elements in the list.

Stuck? Here's a hint!

The easiest and quickest way is to create a set from the list and return its length.