Skip to content
View Polydynamical's full-sized avatar
Block or Report

Block or report Polydynamical

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

  1. fibprimes fibprimes Public

    The music of Fibonacci and prime numbers

    C 26

  2. AMC-Trainer AMC-Trainer Public

    Generate math problems from American Mathematical Competition in browser.

    HTML 10 2

  3. zipfai zipfai Public

    Zipfai is an attempt to prove Zipf's Law and implement it to generate AI outputs.

    Python 2

  4. BinaryClock BinaryClock Public

    A cool Binary Clock made in Python

    Python

  5. Branchless 1-line Solution to FizzBuzz Branchless 1-line Solution to FizzBuzz
    1
    for n in range(1, 101): print("fizz" * (n % 3 == 0) + "buzz" * (n % 5 == 0) + ((n % 3 != 0) and (n % 5 != 0)) * str(n));
  6. oscillations oscillations Public

    Interactive Visualizer of Damped Oscillations

    JavaScript 1