Skip to content
View OmarKharouba's full-sized avatar

Block or report OmarKharouba

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. gitrekt-msa-discussions gitrekt-msa-discussions Public

    Discussions service of Quora clone project for the "Architecture of Massively Scalable Apps" course

    Java

  2. codeologists codeologists Public

    Forked from SEGUC17/codeologists

    Web platform for booking football courts online

    JavaScript

  3. train-scheduling-prolog train-scheduling-prolog Public

    Forked from aabdelzaher/train-scheduling-prolog

    Trains scheduling application using Constraint Programming

    TypeScript

  4. CompetitiveProgramming CompetitiveProgramming Public

    Solutions for some competitive programming problems using Java and C++

    Java

  5. streams streams Public

    Simple Video streaming application using React and Redux

    JavaScript

  6. LeetCode-59-Spial-Matrix-II.md LeetCode-59-Spial-Matrix-II.md
    1
    # LeetCode 59. Spiral Matrix II
    2
    ## Intuition
    3
    We will build the matrix cell by cell in the same spiral order from cell 1 to cell n<sup>2</sup>.
    4
    We will start by adding the 1 to its cell in the matrix ( the cell [0,0] ) and simulate the spiral order step by step, at each step we add the next number to the current cell.
    5