Check Array Rotation
The first line contains an Integer 't' which denotes the number of test cases or queries to be run. Then the test cases follow.
First line of each test case or query contains an integer 'N' representing the size of the array/list.
Second line contains 'N' single space separated integers representing the elements in the array/list.
For each test case, print the value of 'K' or the index from which which the array/list has been rotated.
Output for every test case will be printed in a separate line.
1 <= t <= 10^2
2 <= N <= 10^5
Time Limit: 1 sec
1
6
5 6 1 2 3 4
2
2
5
3 6 8 9 10
4
10 20 30 1
0
3
#include <iostream>using namespace std;
#include "solution.h"
int main(){
int t; cin >> t; while (t--) {
int size; cin >> size; int *input = new int[size];
for (int i = 0; i < size; i++) { cin >> input[i]; }
cout << arrayRotateCheck(input, size) << endl; delete[] input; } return 0;}
int arrayRotateCheck(int *input, int size){ //Write your code here int min = input[0]; int index = 0; for(int i = 1 ; i<size ; i++){ if(input[i] < min){ min = input[i]; index = i; } } return index;}
Comments
Post a Comment