Skip to content
View MonaMobeen's full-sized avatar
💻
Rising Star
💻
Rising Star
Block or Report

Block or report MonaMobeen

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
MonaMobeen/Readme.md

I'm Memoona.

😎 Know Me?

  • 🌺 I have contributed to many projects of React and full stack application.

  • 💎 I’m broadening my knowledge in Data Structures and Algorithms for long-term play.

  • 🌺 I’m currently working on Real Time projects.

  • 💎 All of my projects are available at My Portfolio

  • 👩🏽‍🤝‍👩🏻 I’m looking to collaborate with other content developers.

  • 🌟 Fun factor I play games and participate in extracurricular activities.

Let's connect and build something amazing together!🤩:

Pinned

  1. Data-Structures Data-Structures Public

    A repo, designed to help you prepare for technical interviews at top tech companies like Meta (Facebook), Amazon, Apple, Netflix, and Google (MAANG). The focus is on building a strong foundation in…

    C++ 1

  2. Divide and Conquer Sort Divide and Conquer Sort
    1
    // merge the two arrays: left and right
    2
    function merge(left, right) {
    3
      let resultArray = [],
    4
        leftIndex = 0,
    5
        rightIndex = 0;
  3. AirCanvas AirCanvas Public

    Its a sample application built using JavaScript Core and its Framework React JS.

    JavaScript 1

  4. Orion Orion Public

    a React-based CMS platform

    CSS 1

  5. Imperia-BestWay Imperia-BestWay Public

    Forked from amupedia2021/amupedia-web

    Simple website that will blow your mind!

    JavaScript 1

  6. Reverse Nodes in k-Group Reverse Nodes in k-Group
    1
    /**
    2
     * Definition for singly-linked list.
    3
     * struct ListNode {
    4
     *     int val;
    5
     *     ListNode *next;