summaryrefslogtreecommitdiff
path: root/progs/a646.py
blob: 450cbd784f3f84f08bfec3132aa826b5b8b721bf (plain)
1
2
3
4
5
6
7
8
9
10
11
def validate(n): 
    for i in range(10): 
        temp = n;  
        count = 0; 
        while (temp): 
            if (temp % 10 == i): 
                count+=1;  
            if (count > i): 
                return False
            temp //= 10; 
    return True