DINGA DINGA
article thumbnail
728x90

www.hackerrank.com/challenges/tutorial-intro/problem

 

Intro to Tutorial Challenges | HackerRank

Introduction to the Tutorial Challenges

www.hackerrank.com

Algorithms > Sorting

 

배열과 숫자가 주어지고, 배열에서 숫자의 인덱스를 찾아 출력하는 문제이다.

 

코드

int introTutorial(int V, int arr_count, int* arr) {
    int i = 0;
    for (; i < arr_count; i++){
        if (V == arr[i])
            break;
    }
    return i;
}

for문을 이용해 arr[i]가 V와 같은지 판단하고, 일치하면 i가 V의 인덱스 값이므로 break하고 i를 리턴한다.

 

728x90