+ 1
How to remove duplicates from list including original one in Python?
Eg:- a=["a", "g", "f", "g", "s", "f"] Final list should be , ["a", "s"]
6 odpowiedzi
+ 2
Here's the solution in case you haven't solved it yet. https://code.sololearn.com/cZt66Hiu3e5w/?ref=app
+ 7
Pls use the description section to post ur try(code) so that we can help with that.
+ 1
Hint: Try to build a dictionary whose keys are the unique elements of this list and whose values are the frequencies of each letter. Once you have done that, retrieve the keys that have zero frequencies.
+ 1
Ramdas Pawar did you solve it?
+ 1
Duplicates can be removed i.e. as in this example:
https://code.sololearn.com/cskwrdXNy0lL/?ref=app
+ 1
Thanks #QTWizard..😀😀