Skip to content
View s-truax's full-sized avatar

Block or report s-truax

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

    Some ideas in Haskell.

    Haskell

  2. euler euler Public

    Python

  3. rad-arithmetic rad-arithmetic Public

    Python code for performing base-N arithmetic.

    Python

  4. nea-up nea-up Public

    Python 1

  5. Taylor series for Euler's number Taylor series for Euler's number
    1
    (define (fact n)
    2
      (define (helper n total)
    3
        (if (= 0 n)
    4
        total
    5
        (helper (- n 1) (* n total))))
  6. Cosine taylor expansion Cosine taylor expansion
    1
    (define (fact n)
    2
      (define (helper n total)
    3
        (if (= 0 n)
    4
        total
    5
        (helper (- n 1) (* total n))))