We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff38d52 commit 506bf89Copy full SHA for 506bf89
2_intermediate/chapter11/solutions/remove_duplicates.py
@@ -3,6 +3,7 @@
3
# The function should look through a list,
4
# Find all duplicate elements, and remove them
5
# Sort the resulting list
6
+# YOU MAY NOT USE THE set() function IN PYTHON. Use this problem to practice list iteration!
7
# Hint: To sort a list, use sorted(list)
8
# Another hint: Use list.count(element)
9
# To count the number of times that element appears
0 commit comments