Skip to content
View guilsa's full-sized avatar
👋
@ Looking for projects
👋
@ Looking for projects
Block or Report

Block or report guilsa

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. minimax-tictactoe minimax-tictactoe Public

    Tictactoe using minimax, fully tested

    Ruby 3 2

  2. news-scraper news-scraper Public

    HTML 2 1

  3. space-x-api-react-native space-x-api-react-native Public

    React Native, React Query and React Navigation Shared Element interacting with SpaceX

    JavaScript 1

  4. texas-hold-em-poker-node-js texas-hold-em-poker-node-js Public

    JavaScript 1

  5. writenow writenow Public

    Journaling app, tracks your writing streak and other things

    JavaScript 1

  6. Algorithm Problems Algorithm Problems
    1
    // Climbing Stairs (5/13)
    2
    //  - can be modeled as a graph problem
    3
    //  - starting from 0 we can take 1 step and get to 1 or take 2 steps and get to 2
    4
    //  - then from 1 we can take 1 step and get to 2 or take 2 steps and get to 3, and so on
    5
    //  - if we get to n from a branch, we've found one way