Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added cpp solution for Concatenation-of-Array #238

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

Divyamsirswal
Copy link

#include<bits/stdc++.h>
using namespace std;

vector<long long> concatArray(vector<long long>& arr){
  vector<long long> temp;
  for(int i=0;i<arr.size();i++){
    temp.push_back(arr[i]);
  }
  for(int i=0;i<arr.size();i++){
    temp.push_back(arr[i]);
  }
  return temp;
}

int main(){
  long long num;
  cin>>num;

  vector<long long> arr(num);

  for(int i=0;i<num;i++){
    cin>>arr[i];
  }

  vector<long long> temp = concatArray(arr);

  for(int i=0;i<temp.size();i++){
    cout<<temp[i]<<" ";
  }

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant