diff options
Diffstat (limited to 'codechef/ReversalSorting/main.cpp')
| -rw-r--r-- | codechef/ReversalSorting/main.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/codechef/ReversalSorting/main.cpp b/codechef/ReversalSorting/main.cpp new file mode 100644 index 0000000..1a88262 --- /dev/null +++ b/codechef/ReversalSorting/main.cpp @@ -0,0 +1,23 @@ +#include<bits/stdc++.h> + +using namespace std; + +int main () { + ios_base::sync_with_stdio(false); + cin.tie(NULL); + int tt; + cin >> tt; + while(tt--){ + int n, x; + cin >> n >> x; + vector<int> v(n); + for(int &i : v) cin >> i; + vector<vector<int>> sa; + // 1 2 2 3 2 2 3 3 + for(int i = 0; i < v.size(); i++) { + for(int j = 0; j < v.size(); j++){ + + } + } + } +} |
