pub fn BrutalForceSearch(text: &str, pattern: &str) -> isize
Perform brute force substring search.
text
pattern
Returns the index of the first occurrence of pattern in text, or -1 if not found.
-1