Skip to content
View tomasssalles's full-sized avatar
  • DeepL SE
  • Cologne, Germany

Organizations

@DeepLcom

Block or report tomasssalles

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

Pinned Loading

  1. NextKraftwerke/PyConfig NextKraftwerke/PyConfig Public

    Improving administration of Python Config files

    Python 21 7

  2. basics basics Public

    Textbook implementations of CS basics.

    Rust

  3. imagineon/TextbookRSA imagineon/TextbookRSA Public

    A textbook implementation of RSA encryption for teaching purposes.

    Swift 1 1

  4. Mergesort (in-place, O(log(n)) space) Mergesort (in-place, O(log(n)) space)
    1
    def mergesort_in_place(seq: list[int]):
    2
        """
    3
        Variant of mergesort without using the usual O(n) additional space (where n = len(seq)).
    4
        In fact, no additional space is used to store the elements of the sequence. Eliminating the
    5
        recursion would probably save even more space, but the theoretical guarantee would