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 comment is hidden because it contains spoiler information about the solution
Forgot that the "character" was actually a string. Ugh.
best, in my opinion
if you work with bytes, it's even faster, and you don't have to assume that it's all ASCII, because you're removing substrings that start and end with parentheses, thus are correct UTF-8 substrings, so the string remains UTF-8
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Nice job, very elegant!
https://docs.rs/itertools/0.10.1/itertools/fn.join.html
For people that are interested