Submission #823096

# Submission time Handle Problem Language Result Execution time Memory
823096 2023-08-12T08:03:11 Z ajay Reversing a Sequence (IOI16_reverse) C++14
Compilation error
0 ms 0 KB
/* Ajay Jadhav */

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <deque>
#include <vector>
#include <cstdlib>
#include <iomanip>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <stack>
#include <ctime>
#include <string.h>
#include <climits>
#include <cstring>
using namespace std;


#define ll          long long
#define pb          push_back
#define pii         pair<int,int>
#define vi          vector<int>
#define vii         vector<pii>
#define mi          map<int,int>
#define mii         map<pii,int>
#define all(a)      (a).begin(),(a).end()
#define x           first
#define y           second
#define sz(x)       (int)x.size()
#define hell        1000000007
#define rep(i,a,b)  for(int i=a;i<b;i++)
#define endl        '\n'

vector<long long> reverse(vector<long long> a)
{
    int n = a.size();
    for (int i = 0; i < n; i++)
    {
        swap(a[i], a[n - i - 1]);
    }
    return a;
}

signed main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t = 1;
    // cin>>t;
    while (t--)
    {
        solve();
    }
    return 0;
}

Compilation message

reverse.cpp: In function 'int main()':
reverse.cpp:57:9: error: 'solve' was not declared in this scope
   57 |         solve();
      |         ^~~~~