summaryrefslogtreecommitdiff
path: root/progs/a972.py
blob: b1586565fc7ad351b3404748c80e0ce6de6c4b67 (plain)
1
2
3
4
5
6
7
8
def find_Rotations(str): 
    tmp = str + str
    n = len(str) 
    for i in range(1,n + 1): 
        substring = tmp[i: i+n] 
        if (str == substring): 
            return i 
    return n