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.
Because "Not all paths return a value".
But this can be fixed by removing the
if(bmi >30)
, since all values under 30 are already checked.The only possible values left then are the ones over 30, so the default value to return is "Obese";
Later I realized that the IF statement can be removed safely because, if N <= 3, it will never iterate through the FOR statement, thus, returning the same array.
This comment is hidden because it contains spoiler information about the solution