Skip to content
View karahanbuhan's full-sized avatar

Block or report karahanbuhan

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. pngme pngme Public

    Command line program that lets you hide secret messages in PNG files.

    Rust 2

  2. Rust function to find all primes up... Rust function to find all primes up to any given limit using The Sieve of Eratosthenes.
    1
    /// In mathematics, The Sieve of Eratosthenes is an ancient algorithm for finding all prime numbers up to any given limit.
    2
    ///
    3
    /// For more information, check: https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes.
    4
    ///
    5
    /// Returns a list of all prime numbers up to [lim].