Keywords detector
Return true if the input contains "girlfriend". Otherwise false.
Sample Code:
def spotCheck(str):
# Enter your logic here...
Examples:
Input: 'I have a girlfriend on my monitor.'
Output: True
Explanation: "girlfriend" to be found in the input.
Input: 'This world shall know code.'
Output: False
Explanation: "girlfriend" 404 not found!