Encuentra el último índice de un carácter en una string
Dada una string str y un carácter x, encuentre el último índice de x en str. Ejemplos: C++ // CPP program to find last index of // character x in given string. #include <iostream> using namespace std; // Returns last index of x if it is present. // Else returns -1. int findLastIndex(string& str, … Continue reading «Encuentra el último índice de un carácter en una string»