Sorts an array using the introsort algorithm. ```js const arr = [2, 5, 10, 5, 32, 6]; intro(arr); // [2, 5, 5, 6, 10, 32] intro(arr, (a, b) => b - a); // [32, 10, 6, 5, 5, 2] ``` [Reference](https://en.wikipedia.org/wiki/Introsort) **Update README.md**.
Sorts an array using the introsort algorithm.
Reference
Update README.md.