0
/ 20
Given a string, return true if the number of appearances of "is" anywhere in the string is equal to the number of appearances of "not"...
Given a string, return true if the number of appearances of "is" anywhere in the string is equal to the number of appearances of "not" anywhere in the string (case sensitive).
Examples:
equalIsNot("This is not") -> false
equalIsNot("This is notnot") -> true
equalIsNot("noisxxnotyynotxisi") -> true
Your feedback will appear here when you check your answer.