If a word has the word "Cat" in it, case insensitive, return
true.
hasCat("") → false
hasCat("cat") → true
hasCat("xcatx") → true
public boolean hasCat(String s) {
}
If a word has the word "Cat" in it, case insensitive, return true. hasCat("") → false hasCat("cat") → true hasCat("xcatx
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
If a word has the word "Cat" in it, case insensitive, return true. hasCat("") → false hasCat("cat") → true hasCat("xcatx
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!