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.
Agree, when a Kata is related to Math or Geometry you should take a short class about it. GL sir.
Oh my... I feel bad about not thinking of this and implementing my solution in a much more complicated way!
Such an elegant solution!
This comment is hidden because it contains spoiler information about the solution
Tried to find silver-bullet for this task on wiki || other sources, so, here it is)
Nice solution!
let a = +"123"; // 123
let a = Number("123"); // 123
To convert to a number explicitly, you can call Number(val), or, in short, put a unary plus "+" before the expression
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Love it :)
As someone new to coding, I like how easy it is to understand and read.