aboutsummaryrefslogtreecommitdiff
path: root/SequenceEquation/SequenceEquation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'SequenceEquation/SequenceEquation.cpp')
-rw-r--r--SequenceEquation/SequenceEquation.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/SequenceEquation/SequenceEquation.cpp b/SequenceEquation/SequenceEquation.cpp
deleted file mode 100644
index 1714728..0000000
--- a/SequenceEquation/SequenceEquation.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-#include<bits/stdc++.h>
-
-using namespace std;
-
-int main(){
- int n, count = 1;
- cin >> n;
- vector<int> v(n);
- map<int, int> mp;
- for(auto &x : v){
- cin >> x;
- mp[x] = count;
- count++;
- }
- for(auto x : mp){
- auto it = find(v.begin(), v.end(), x.second);
- cout << "value: " << x.first << " Index: " << x.second << endl;
- cout << it - v.begin() + 1<< endl;
- }
-
-
-
-
- return 0;
-}