Featured
-
Binary search in C++
If you want to find the presence of a element in a
by kumar.abhishek
Tags
Use of any_of function in C++
any_of function is used to test condition on the elements in a range[first,last), it will return true if the test condition is true for any of the element in the range, else it will return false or if the range is empty. To use this function we h...