Posts by Alan Bertoldo • 13 points
1 post
-
0
votes2
answers248
viewsQ: Checking repeated character in Python list
Hello! I’m trying to develop a program that reads a string and returns a boolean if there are repeated characters. I need enough on that score: ("") // False ("oo") // False ("po") // True…