Skip to content
View alex-md's full-sized avatar
  • Student
  • Phoenix, AZ
  • 00:20 (UTC -07:00)

Highlights

  • Pro

Block or report alex-md

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

Pinned Loading

  1. jsreact jsreact Public

    A collection of useful developer tools and misc. side projects

    HTML

  2. p5.js pathfinder p5.js pathfinder
    1
    /* Pathfinding Visualizer using P5.js*/
    2
    
                  
    3
    const grid = [];
    4
    const cols = 50;
    5
    const rows = 35;
  3. Solves sudoku puzzles Solves sudoku puzzles
    1
    import itertools
    2
    
                  
    3
    ROWS = 9
    4
    COLS = 9
    5
    CELLS = ROWS * COLS