Arrays: Left Rotation

  • + 0 comments

    This is my code and it passes all the test cases.

    include

    using namespace std;

    int main() { int n,d; int a[n]; for(int m=0;m>a[m]; } cin>>d; for(int i=1;i<=d;i++) { int k=0; for(int j=1;j

    return 0; }