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.
its brainfugd its an esoteric language where only 8 characters are used and you have to manually change every bit in memory
how this shit really work I didn't understand any f***thing
Could someone please explain //thanks;
it's good but why wouldn't you just leave some space to make more confortable :)
This comment is hidden because it contains spoiler information about the solution
replaceAll is not available in Node 14 and it's the most recent node version available here.
it's fucking doesn't work
replaceAll isn't a prototype? do i look as a fool to you codewars?
This comment is hidden because it contains spoiler information about the solution
well...what can i say
function rowSumOddNumbers(n) {
var s=0;
for(let i=0;i<n;i++){
s+=(n*(n-1))+1+2*i;
}
//not to much but I need more work
return s;
}
This comment has been deleted.