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.
this is useless information, it should instead say what the input will look like (or say nothing if that's already implied)
Description should be language-agnostic. The example block should be replaced with something more generalized since the property of
Player
can only bename
/Name
in all of the languages, so there's no need to include the function nameCool kata, but the Python instructions could use some clarity improvements
Thanks for sharing
"unique array of positive numbers."
this is incorrect, what is meant is:
"array of unique positive numbers.
This kata is a subject to deduplication process here: https://github.com/codewars/content-issues/issues/176.
Please join the discussion to help us identify duplicate kata and retire them.
This comment is hidden because it contains spoiler information about the solution
JS Node 18. should be enabled
Ruby 3.0 should be enabled
I don't understand, I can only pass all the cases on the attempt if I return a leaderboard with size 501 but I get an out of bounds error with size 500. How do I return a list of size 500 with 500 objects but the indexes have to start at 1?
Also, Im getting this error:
The code that caused this warning is on line 52 of the file main.py. To get rid of this warning, change code that looks like this:
BeautifulSoup(YOUR_MARKUP})
to this:
BeautifulSoup(YOUR_MARKUP, "html.parser")
markup_type=markup_type))
my code looks like this: soup = BeautifulSoup(page.content, "html.parser")
why is that wrong?
Thanks
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
How can I handle the 1-based indexing? The second element of the position list has to be the first on the leaderboard, and the 500th element must be the 501st on the list but there can only be 500 in the list? I don't see any way around this