Skip to content
View ouiam-dot's full-sized avatar

Block or report ouiam-dot

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. optimized-path-finder optimized-path-finder Public

    Find the shortest path and the least number of turns between two squares in a grid

    TypeScript 1 1

  2. qadamcsqueezy/generator qadamcsqueezy/generator Public

    A tool that generates a whole project for you. A ready to go application in no time.

  3. Meme-finder Meme-finder Public

    We all have the right meme/reference on mind at a certain moment, sometimes we fail to find the one we have in mind. This project is especially for the epiphany of finding the right meme/reference …

    TypeScript 1

  4. MEANStackCrashCourse MEANStackCrashCourse Public

    Forked from NMZivkovic/MEANStackCrashCourse

    This repository contains examples used in blogpost - https://rubikscode.net/2017/10/09/mean-stack-crash-course-using-mongodb-with-node-js-express-and-angular-4/

    TypeScript

  5. MergeSort.ts MergeSort.ts
    1
    function mergeSort(numbers: number[]): number[] {
    2
    
                  
    3
        // If only one element - already sorted.
    4
        if (numbers.length === 1) {
    5
            return numbers;