#include "bogoSort.h"

void sort_array(int N)
{
	shuffle_array(0, N - 1);
}
