# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
544228 | 2022-04-01T12:38:50 Z | Trisanu_Das | Reversing a Sequence (IOI16_reverse) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> using namespace std; #define int int64_t int[] reverse(int a[]){ int n = sizeof(a) / sizeof((int)1) reverse(a, a + n); return a; }