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

Highlights

  • Pro
Block or Report

Block or report TheXer

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
TheXer/README.md

Moje github stats

Pinned

  1. Jachym Jachym Public

    Skautský discord bot

    Python 12 3

  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).