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.
Good use of pattern matching.
Instead of matching tediously , is it a possible we can use a tuple since both of these are all same to match with
counterparts i.e (')', '(', '{', '}', '[' , ']') => (Braces::LParenthesis , Braces::RParenthesis, and so on..) ?
I would love to hear from you.
This is clever technique , might be long , but it displays a technique on tackling a problem. Deepens understanding in pattern matching , conditions , implementing struct methods, and borrowing/referencing.
Love it.
Is there a simple we can avoid using chars().count()?
This is the thought i had but framing the idea was a bit difficult. I don't know if you ever feel that sometimes, Ofcourse you're a programmer.