Find a substring within a string. Return the int value of the position in the string where the substring starts. Know the Big O notation for your algorithm.
Sigiloso
Just use for loop through the initial string with a nest for loop through the string at length of substring. Check if string[a] == substring[a], check full string within nested loop. If not, then back to initial loop incrementing and checking full string again.