Keywords detector
Return true if the input contains "girlfriend". Otherwise false.
Sample Code:
function 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!