...

/

Removed std::random_shuffle

Removed std::random_shuffle

This lessons will provide a better alternative to random_shuffle.

We'll cover the following...

The random_shuffle(first, last) and random_shuffle(first, last, rng) functions were marked already as deprecated in C++14. The reason was that in most cases it used the rand() function, ...