Solution Review: Searching a String
In the following lesson, we will go over the solution of the challenge: Searching a String.
Task
In this challenge, you were provided a string in which you had to find the first occurrence of a three-letter word. The only constraint was that the word must only contain lower-case letters.
Solution
The first ...