Intro to Tutorial Challenges

  • + 0 comments

    My C code 😁😎

    int introTutorial(int V, int arr_count, int* arr) {
        int index = 0;
        while(arr[index] != V){
            index++;
        }
        return index;
    }