Create a function: find index of first non-repeating lowercase letter; return -1 if none.
The NonRepeatingFinder class finds the index of the first non-repeating character in a given string by iterating through each character and checking for duplicates.
class NonRepeatingFinder {
String inputString;
int stringLength;
public ...