Given two strings implement a function which determines whether the characters in the second string is a substring of
the characters in the first string (check if second string exists as continuous/unbroken chain of characters the
first string).
| Challenge | Solution |
Don’t use String.contains method.
isSubstring("go home", "ome") // true
isSubstring("go home", "me") // true
isSubstring("go home", "abc") // false