Skip to content
View ROTARTSI82's full-sized avatar

Organizations

@RotartsiORG

Block or report ROTARTSI82

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

    See all branches!! code for cs electives (neural nets, compilers)

    Rust

  2. Chess Chess Public

    Chess

    C++

  3. VirtualBell VirtualBell Public

    VirtualBell app while we are at home because of COVID-19

    HTML 2 1

  4. QuizBot QuizBot Public

    Half-completed quizbowl bot.

    JavaScript

  5. c++ command-line sudoku solver c++ command-line sudoku solver
    1
    // Sudoku solver by Grant Yang
    2
    // 
    3
    // How it works:
    4
    // It finds the constraints on the possible values for each cell,
    5
    // and then just does a brute-force recursive tree search.