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.
Your solution seems correct, but did not handle the edge case below.
Danke you for the clarification
We're playing the code golf (https://en.wikipedia.org/wiki/Code_golf) game, tl;dr write a solution with the minimal number of characters. Yes, in real, production code, you'd use
const
orlet
(var
is still valid, but most modern code useslet
unlessvar
is absolutely necessary, since it has slightly different behavior https://stackoverflow.com/a/11444416/12101554), but this is still valid JavaScript.Use const, let or var!!!
*in professional code, yes
in codegolf (crafting a solution with the fewest characters/bytes), however, anything goes
Thank you! Much appreciated.
if you omit
var
,const
orlet
, the variable is automatically attached to the global object. this is considered bad practice, howeverLiterally just a math problem
This is just brilliant!
Clever solution, I learned something new from it, thanks.
This comment is hidden because it contains spoiler information about the solution
This kata asks you to solve sudoku that require guessing and to throw errors if there's more than one solution.
you need to have the code inside of the curly braces
{
and}
, not below.This feels like a 10 kyu kata.
This comment is hidden because it contains spoiler information about the solution
Loading more items...