I will write a memorandum of the python method used by the author who is challenging competitive programming with python.
Add element to end of list ʻappend () ` Get list with duplicate list removed
x = [1, 3, 5, 5,]
list(set(x))
# x = [1, 3, 5]
Recommended Posts