Skip to content

Instantly share code, notes, and snippets.

#include <iostream>
#include <cstdlib>
#include <ctime>
#include <algorithm>
using namespace std;
// Comparison function for qsort
int compare(const void* a, const void* b) {
return (*(int*)a - *(int*)b);