We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57013d6 commit 90e598eCopy full SHA for 90e598e
char.py
@@ -0,0 +1,8 @@
1
+def deleteReoccurringCharacters(string):
2
+ outputString = ''
3
+ for char in string:
4
+ if char not in outputString:
5
+ outputString += char
6
+ return outputString
7
+
8
+print deleteReoccurringCharacters("aabbcc")
0 commit comments