Skip to content

Instantly share code, notes, and snippets.

#include <iostream>
#include <windows.h>
#include <algorithm>
#include <ctime>
using namespace std;
class Vector {
unsigned int capacity = 10;
int* data = new int[capacity];
unsigned int length = 0;