Skip to content
View TheXer's full-sized avatar
👻
Boo Boo!
👻
Boo Boo!
  • Brno, Czech Republic

Block or report TheXer

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
TheXer/README.md

Moje github stats

Pinned Loading

  1. Jachym Jachym Public

    Skautský discord bot

    Python 11 2

  2. CollatzConjecture CollatzConjecture Public

    Counting the Collatz Conjecture through recursion.

    Python

  3. DelkaClenstviSkautIS DelkaClenstviSkautIS Public

    Repo pro vyřešení délky členství ve SkautISu

    Python

  4. package-tracking package-tracking Public

    Forked from botisko/package-tracking

    An utility for finding delivery status for Ceska posta

    Python

  5. Josephus problem solution in Python Josephus problem solution in Python
    1
    # This is a solution to the Josephus Problem.
    2
    
                  
    3
    # This snippet has three parts:
    4
    #   1. bin(num)[3:] converts an integer to a binary representation and we take the biggest bit in binary with slicing
    5
    #   3. + "1" add an one to the binary (that we took out previously).