mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
21 lines
460 B
Python
21 lines
460 B
Python
|
# Created by sarathkaul on 14/11/19
|
||
|
|
||
|
|
||
|
def remove_duplicates(sentence: str) -> str:
|
||
|
"""
|
||
|
Reomove duplicates from sentence
|
||
|
>>> remove_duplicates("Python is great and Java is also great")
|
||
|
'Java Python also and great is'
|
||
|
"""
|
||
|
sen_list = sentence.split(" ")
|
||
|
check = set()
|
||
|
|
||
|
for a_word in sen_list:
|
||
|
check.add(a_word)
|
||
|
|
||
|
return " ".join(sorted(check))
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
print(remove_duplicates("INPUT_SENTENCE"))
|