Skip to content
View Deva-cell's full-sized avatar

Block or report Deva-cell

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.

Content in all repositories owned by your account will be closed.
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
Deva-cell/README.md
  • 👋 Hi, I’m @Deva-cell
  • 👀 I’m interested in ...
  • 🌱 I’m currently learning ...
  • 💞️ I’m looking to collaborate on ...
  • 📫 How to reach me ...
  • 😄 Pronouns: ...
  • ⚡ Fun fact: ...

#include <stdio.h> int removeDuplicates(int* arr, int arrSize) { if(arrSize == 0){ return 0; } int j = 0; for(int i=1; i<arrSize; i++){ if(arr[i] != arr[j]){ j++;

    arr[j] = arr[i];
}

} return j+1; }

Popular repositories Loading

  1. Deva-cell Deva-cell Public

    Config files for my GitHub profile.