Strange Counter
             Hacker Rank Solution                Strange Counter     Hey guys ,welcome to another blog on  hacker rank solution . this time we gonna discuss a hacker rank  algorithim  problem, which is named as Strange Counter    Dashboard> Algorithms> Implementation >Strange Counter       Solution:                   This one is little tricky question , After a close observation one will find it easy. the first solution arises in mind is by iterating through for loop till i==t and setting intital-value to 1 and count=3 and decreasing the value of "vount" by 1 at each iteration and as the value of "count" equals to 1 , we will double the initial-value and will initialise count to initial value.                                    But here a problem arises , which is time complexity , iter...