Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
WORTH NOTING....
If you are learning Java for Android, this solution WILL NOT WORK.
Android (Google) chose to use a different Regex format all together.
This solution will run in JRE and Java online like this, but would not run in the Android Platform.
https://developer.android.com/reference/java/util/regex/Pattern.
manual notification, see above
This comment is hidden because it contains spoiler information about the solution
When you (or someone else) mark it as having spoiler content, only people who haven't completed the kata can't see it. Please, keep your posts (when it's about the same problem) in a single thread.
You did it just below. You asked for help, but nobody answered you. It's no use to flood the Discourse page, nobody is getting paid here. You can try and see if you can find help on the Discord CodeWars channel.
did you try this
hi please use a spoiler tag when posting code (I have added the tag)
What do you mean? The array is given to you, you don't have to change it. You just have to return a string based on the number of names in the array. You are doing this in Java, correct? The starter code already declares the argument for you:
public static String whoLikesIt(String... names) {