summaryrefslogtreecommitdiff
path: root/progs/a580.py
blob: 3bc645a33163e0bfcdb5ee8e64efff725b6ac9a3 (plain)
1
2
3
4
5
6
7
8
def first_Repeated_Char(str): 
    h = {}
    for ch in str:
        if ch in h: 
            return ch;
        else: 
            h[ch] = 0
    return '\0'