Non-Repeated Characters in String
Finding Count of Characters that are not repeated in the string.

🚀 Software Engineer at TechM | Ex Merkle | Design Enthusiast 🎨 | Graduate of KLS Gogte Institute of Technology 🎓 | Connector of People & Ideas 💡 | | React.js Aficionado | Eager Learner & Growth Advocate 🌱
Here is a problem I recently came with an interview. Let's see the way we can solve this using python
Problem
A data Compression software utilizes various steps to compress a string of data. One of the steps involves finding the count of characters that are not repeated in the string. Write an algorithm for the software developer to find the count of characters that are not repeated in the string.
Input : The Input consists of a string
Output : Print the non-repeated characters and the count of characters that are not repeated. if no characters are found print 0
My approach :
If you have a better way to solve this problem, do comment down below.







