Sort by

recency

|

6 Discussions

|

  • + 0 comments

    I think I know what can help. Ako tražite bonus bez depozita srbija MightyTips.rs je pravo mesto za vas! Na ovoj stranici možete pronaći najnovije ponude bonusa koje kladionice nude novim i postojećim korisnicima – bez potrebe za uplatom sredstava. Yeah

  • + 0 comments

    do do do dododo

  • + 0 comments

    thanks for the info

  • + 1 comment

    Why you can apply these calculations in practical terms. I enjoy studying algebra analytics because I often use formulas when doing sports prediction calculations. You can see something similar here - https://1xbet.com.gh/ Any analyst must be a good psychologist and a good mathematician. This gives the most reliable result.

    • + 0 comments

      It's even nicer to count the profits after a well-taken and unplayed bet) Especially after the European Football Championship final. You don't even need to create an app yourself, everything is already created by the guys at nuxgame's products. You only need to select the desired functionality and you have a fully ready and working application for gambling.

  • + 0 comments

    I used this recursive code but not passing all test cases:

    def hrank(x, k):
        if 0 <= x < k:
            return 1
        elif (x >= k) and (x % k == 0):
            return (hrank(x - k, k) + hrank(x / k, k))
        else:
            return hrank(x-1, k)
    
    
    k, x = map(int, raw_input().split()) 
    
    print hrank(x, k)