You are viewing a single comment's thread. Return to all comments →
My C code 😁😎
int introTutorial(int V, int arr_count, int* arr) { int index = 0; while(arr[index] != V){ index++; } return index; }
Seems like cookies are disabled on this browser, please enable them to open this website
Intro to Tutorial Challenges
You are viewing a single comment's thread. Return to all comments →
My C code 😁😎