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.
Expected: ''It\'s a white array'', instead got: ''It\'s a black array''
Log
Test for: arr=[13,0,1,11,10,3,5,4,16]
But it contains both 5 and 13? is that not a black array?
Hey I passed it yestoday a friend just put the variables in backwards still the same ABC and it worked so my code is posted now, honestly dont know why it dosent work the other way around and times out but it works now
This comment is hidden because it contains spoiler information about the solution
Write function bmi that calculates body mass index (bmi = weight / height ^ 2).
even if you change it to (weight / (height ^2)), the test code still comes out as 26+ which gives you obese not normal since normal is set to under 25. I don`t know how you wanted the bmi to be calculated since in the question its even high value.
if bmi <= 18.5 return "Underweight"
if bmi <= 25.0 return "Normal"
if bmi <= 30.0 return "Overweight"
if bmi > 30 return "Obese"
yes xD i realised that just now ... thank you
Expected: ''false'', instead got: 'false'
What...?
This comment is hidden because it contains spoiler information about the solution