Daily bit(e) of C++ | std::find_end
Daily bit(e) of C++ #406, The algorithm for finding the last instance of a subrange in a range: std::find_end.
The std::find_end algorithm operates similarly to std::search; however, instead of returning the first instance of a subrange in a range, it returns the last.