We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Write a C program to find duplicate elements in an integer array. Return the index of the duplicate elements if found else return -1.
Example:
int arr[5] = {1,2,2,3,4};
so here the integer 2 is repeated, hence it will return index 1 and 2.
You can access the files here: https://github.com/hitaarthh/C-Basics/blob/main/duplicateElement.c
The text was updated successfully, but these errors were encountered:
@hitaarthh Can u assign me for this issue?
Sorry, something went wrong.
@Suraksha-Rajagopalan Yes, you may proceed.
Pushed the necessary changes. #2
Suraksha-Rajagopalan
No branches or pull requests
Write a C program to find duplicate elements in an integer array. Return the index of the duplicate elements if found else return -1.
Example:
so here the integer 2 is repeated, hence it will return index 1 and 2.
You can access the files here: https://github.com/hitaarthh/C-Basics/blob/main/duplicateElement.c
The text was updated successfully, but these errors were encountered: