Dcoder icon

I don't like Repetition @ Dcoder

By Lochard | As a newbie programmer | 2 Jul 2023


Problem: The problem is simple, you are given a word. You need to remove the repeating characters.

Input: Input contains a word w.

Output: Print the output according to the problem explained.

Constraints: 1≤w length≤100

Sample Input: AaabBbbc

Sample Output: 

AabBc

a = []
for c in input():
  if c not in a:
    a.append(c)
print(''.join(a))

How do you rate this article?

1


Lochard
Lochard

20240228 Arrived in the UK for about 2 week. All my fears persist. Some are even getting worse. https://github.com/locharp/asylum_diary/


As a newbie programmer
As a newbie programmer

Sharing entry level codes. My snippets on GitHub https://github.com/locharp/code-snippets

Send a $0.01 microtip in crypto to the author, and earn yourself as you read!

20% to author / 80% to me.
We pay the tips from our rewards pool.