summaryrefslogtreecommitdiff
path: root/progs/a712.py
blob: 72c3bfc4c8f7b94fff1facb9d8713d98d02a9118 (plain)
1
2
3
4
5
6
7
def check(string) :
    p = set(string) 
    s = {'0', '1'} 
    if s == p or p == {'0'} or p == {'1'}: 
        return ("Yes") 
    else : 
        return ("No")