summaryrefslogtreecommitdiff
path: root/progs/a715.py
blob: 13c696b8ea155558e1b207dc8a530bb9aa52c7fd (plain)
1
2
3
4
5
6
def unique_Characters(str):
    for i in range(len(str)):
        for j in range(i + 1,len(str)): 
            if (str[i] == str[j]):
                return False;
    return True;