easy array questions
#include <iostream>
using namespace std;
// reverse the array inplace
// remove duplicates
// check an element
// check a range
// move all zeros to end
// rotate array
// merge 2 sorted array
// bubble sort
// insertion sort
int main() {
cout << "Hello World!";
return 0;
}INFO