- 1. Input, print and numbers
- 2. Integer and float numbers
- 3. Conditions: if, then, else
- 4. For loop with range
- 5. Strings
- 6. While loop
- 7. Lists
- 8. Functions and recursion
- 9. Two-dimensional lists (arrays)
- 10. Sets
- 11. Dictionaries
- 12. JavaScript
- 13. HTML5 and CSS
- 14. Responsive Design with Bootstrap
- 15. jQuery
Ad place
The number of distinct elements
Statement
Given a list of numbers with all of its elements sorted in ascending order, determine and print the quantity of distinct elements in it.In all the problems input the data using input()
and print the result using print()
.
12# Read an integer:# a = int(input())XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Input:
1 2 2 3 3 3XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Output:
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Saved solutions
Tests
Input | Correct answer | |
---|---|---|
1 2 2 3 3 3 | 3 | |
1 2 3 4 5 | 5 | |
1 1 1 1 1 | 1 | |
1 1 2 2 2 3 4 5 6 7 | 7 | |
-100 -99 -98 -97 -96 | 5 | |
-100 -100 -98 -50 1 | 4 | |
-64 -45 -38 -16 -14 -7 2 53 70 80 80 | 10 |