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.
I disagree this being a best practice. It is clever and looks simple. Sure. But it is also not maintainable. As soon as point boundaries change, you have to rewrite the whole logic.
This comment is hidden because it contains spoiler information about the solution
Looks clever, but this code is not easy to maintain. In case points change, and boundaries are no longer divisable by 10, this whole approach has to be rewritten instead of just updating the points.
I don't think nesting ternaries is a good practice. It makes code harder to read.
I believe a more verbose and a less "cool" solution with a series of ifs would be more dev friendly.
Wouldn't this be an incorrect solution as it removes more than what was requested? (spaces vs all whitespaces)
Wait until you see all of my code using "var" wherever possible :)
This is really weird.
Isn't into_iter giving you a copy, while iter giving you a reference? Why is making a copy faster?
Overriding the prototype is definitely not a good practice.
But other than that, this code is simple and that is a good thing.
Sure, it won't be optimal for running anagramm checks for millions of items, but that was not a requirement. Usually if something has to handle big data you know either because it is obvious from the context, or you are told that.
In this case premature optimization would only made the code more complex and thus harder to read and understand. And that can be bad.
The speed of sort is irrelevant for an array of a couple of items and only a handful of invocations. Readability and maintainability is way more important for such cases.