You are viewing a single comment's thread. Return to all comments →
In C++
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; vector<int> f(n); for(int i = 0; i < f.size(); i++){ cin >> f[i]; } for(int i = 0; i < f.size(); i++){ cout << f[i] << " "; } }
`
Seems like cookies are disabled on this browser, please enable them to open this website
Day 15: Linked List
You are viewing a single comment's thread. Return to all comments →
In C++
`