Finish this priority queue method that takes two pointers asinputs, the begin points to the beginning of a vector(vector.begin()), the end points to the end of avector(vector.begin()+vector.size()):
void arrSeq(int* begin, int*end){
priority_queue<int,std::vector<int>,customComparatorr>q;
}
Solution