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.
holy moley, what's going on here?
This comment is hidden because it contains spoiler information about the solution
This is smart ππͺ
oof
Clean, I like it :)
I wrote the function to accept arguments in a way which allows you to write the arguments out like a molecular formula. I.e. CO2 -> do_reaction(C, 1, H, 2), or H2O do_reacion(H, 2, 0, 1)
Jeeez, Nice n Clean
I did not know you can do ternary operators inside a regex expression! Nice π :)
Can you comment and explaination of this. I can't quite wrap my head around it. Cool solution πππππ
This is neat. I like it
This is super clean. Nice job.
This comment is hidden because it contains spoiler information about the solution
I like the use of regex matching and replacement to both pull the time and convert it into seconds. It is a one liner, but perfectly readable π
$r =~ s/(\d+)|(\d+)|(\d+)/$13600+$260+$3/e;