Skip to content
View nitishji's full-sized avatar

Block or report nitishji

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 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

Popular repositories Loading

  1. privacypolicy privacypolicy Public

    Forked from hbohra98/privacypolicy

    HTML 1

  2. nitish.h nitish.h Public

  3. Beginners_algorithm_guide Beginners_algorithm_guide Public

    It's a public repo just to keep track of all the important algorithms, implemented in different languages in the most efficient way.

    C++ 8

  4. Data-Structures Data-Structures Public

    Forked from hbohra98/Data-Structures

    C++ 1

  5. JAVA JAVA Public

  6. Binary-search Binary-search Public

    class BinarySearchExample{ public static void binarySearch(int arr[], int first, int last, int key){ int mid = (first + last)/2; while( first <= last ){ if ( arr[mid] < key ){ first = mid + 1; }els…