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.
This comment is hidden because it contains spoiler information about the solution
Please use spoiler flag next time.
This comment is hidden because it contains spoiler information about the solution
This series of courses is very effective for learning RexExp :
https://www.codewars.com/kata/5735e39313c205fe39001173
Training JS #37 up to #42
This comment is hidden because it contains spoiler information about the solution
A lot of typos in the description and should be modified to explain well~~
The description is inadequate as well. What even is a min/max auction? When do I pay min, when max? Can I pay inbetween?
Hi. Did you read the available documentation for creating a kata? https://github.com/codewars/codewars.com/wiki/Tutorial%3A-Create-Your-First-Kata
Language reference can be found here: https://github.com/Codewars/codewars.com/wiki/Language-JavaScript
console.log is not the way you do TDD here. You should be able to see a skeleton of what tests should look like by clicking on new kata and clicking 'insert example' or just by looking at tests of other katas.
Instead of
console.log(action([[20,100],[30,90],[120,150]])120)
you should haveassert.equal(action([[20,100],[30,90],[120,150]]), 120)
.Until you figure that stuff out, you should unpublish the kata until it's ready.
hi b1ts.
this is my 1st kata to publish n' i find some trouble to insert the test cases...
can u help me to edit it normally?
console.log(action([[20,100],[30,150],[120,150]])draw);
console.log(action([[20,100],[30,90],[120,150]])120);
console.log(action([[20,100],[30,120],[120,150]])150);
console.log(action([[20,100],[30,90],[110,150]])110);