0
I'm trying to write a program that randomly picks n number of elements from a vector
i figured out to use a for loop to print a random index of the vector n times but how do i make it not repeat an index more than onece?
1 Antwort
+ 1
std::set<size_t> used_indices;