Skip to content
View deepsoumyaaa's full-sized avatar
:shipit:
muhehehehhehe
:shipit:
muhehehehhehe

Highlights

  • Pro

Block or report deepsoumyaaa

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
deepsoumyaaa/README.md

"jack of all trades, master of none the most."

Pinned Loading

  1. toki toki Public

    TypeScript

  2. ecs-app ecs-app Public

    HCL 2

  3. prefsum.cpp prefsum.cpp
    1
    vector<int> prefSum(N + 1);
    2
    prefSum[0] = 0;
    3
    for(int i = 0; i < N; ++i) {
    4
      prefSum[i + 1] = prefSum[i] + nums[i];
    5
    }