# Non-Repeated Characters in String

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 :


%[https://gist.github.com/sixthcodebrewer/ba8f47a6e66a52ecb385b8f9d60e72ee]

If you have a better way to solve this problem, do comment down below. 

![3a854213c52fdcfe4643cf0c6d956c74.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1627732316741/dYccytK85.png)


