Skip to content
View classAndrew's full-sized avatar
🍉
1, 2, 4, 8, 16, 32, 64, 128, 256
🍉
1, 2, 4, 8, 16, 32, 64, 128, 256
Block or Report

Block or report classAndrew

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
classAndrew/README.md

Pinned

  1. cubicoid cubicoid Public

    Three-dimensional graphing utility written in C++ and with OpenGL (glfw, glad, and glm).

    C++ 1 1

  2. ccalc ccalc Public

    Numerical methods and calculator written in C. (Integration and differentiation of several variables and more!). Ultimately turning into a math library at this point with support for multivariable …

    C 1

  3. SoftSim SoftSim Public

    A Typescript soft body simulator.

    TypeScript

  4. pyOneLine pyOneLine Public

    Collection of Python one liners written as a joke

    Python

  5. scrabble.py scrabble.py
    1
    from collections import Counter
    2
    
                  
    3
    # for K, M-length dictionary words, and an N-tile hand, you can expect a complexity of
    4
    # O(KM * lg M) Assuming letter counting and comparing is done in O(n) time (it isn't but
    5
    # it can be with the cost of lots of memory) There's a pretty large coefficient of 2^26 since 
  6. SPH Solver Using Gaussian Smoothing ... SPH Solver Using Gaussian Smoothing Kernel
    1
    #define BOOST_LOG_DYN_LINK 1
    2
    
                  
    3
    #include <iostream>
    4
    #include <boost/log/trivial.hpp>
    5
    #include <SDL2/SDL.h>