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.
Hi, I'm new here. Thanks for the Kata :)
I think, there are some issues with the Random Tests. Or is my execution just wrong?!
This example sould be valid, no?!
flour: 4/4 cup = 1 cup (200g) = 200g = 'enough ingredients'
.Why does it expect
"need flour"
, though?!Log:
This comment is hidden because it contains spoiler information about the solution
Thanks for the report. It should be fixed now.
First time submitting an issue, hope I'm not going about it the wrong way.
Final fixed test recipe is:
{ oil: '3 tbsp', flour: '2 cup', sugar: '0.5', milk: '1 cup' }
'Sugar' has no unit. Instructions don't seem to cover missing units.
You can bake a basic cake is using the following ingredients
Corrected:
You can bake a basic cake by using the following ingredients
.
Fixed, thanks!
All other are seprated by a space but
A classical question for an interview job and very important to know it. Unfortunately it's a duplicate of a kata previously published: https://www.codewars.com/kata/find-the-duplicated-number-in-a-consecutive-unsorted-list-tougher-version
And many others with very similar.
Description specifies two different rules for which duplicate to return. The second is wrong.
Returning
-1
is not a good choice. It might be a valid return value as well ( you never specify that the array only contains nonnegative numbers ).undefined
or in this case maybeNaN
(!) might have been better choices, if you don't want to throw anError
.map[] === true
( in the reference solution ) is a bit of an antipattern, isn't it? It's aBoolean
already.