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 am here, too! I just spent hours on another kata writing an iterative solution that also preserved the data type of "int" rather than first transforming the input to a "string". I was so proud. Once I viewed the solutions, there shined a Linq one-liner. I'm sure there's value in being able to write iterative solutions, but, there comes a point that it just doesn't make as much sense. (Like right now) lol Did you find any good, hard resources for Linq? As of now I'm doing as Aelion and kvarcas91 are suggesting
Or, you can always check other solutions, analyze them and then implement it.
keep rewriting your solutions - practice! :)
This comment is hidden because it contains spoiler information about the solution
1 - The function will be constant and will not change in future uses.
2 - Avoid a new assignment to the variable due to an error in the programming.
Or people are just trolling and you have to read "InWUBbetweenWUBWUBtheWUBlines".
Or promoted based on lines of code you write :)
This comment is hidden because it contains spoiler information about the solution
What is the reason for the const declaration here?
Much appreciated!
I implemented an iterative approach - wondering what you need to learn in order to get to thinking intuitively about mapping in javascript?
Any resources or approaches you could recommend to me would be great.
Thank you :)
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Read the question again :)
We do't want to square the entire number - we square EACH value in the number
So much typing!