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
the translation from Celsius to Farenheit is fixed but the output text about freezing/non-freezing temp is still wrong
Normally, I would agree to this but we pride ourselves on having 'best practice' code. So it is only fair to do basic checks.
Python tests fail with
File "", line 9
Test.describe('Given test cases:')
^
SyntaxError: invalid syntax
You might want to fix it
No failure cases defined or used in test. What if the time is illegal (h>23;m,s>59)?
The test code for Java is utterly wrong. celsius = (fahrenheit - 32) * (5/9) not (fahrenheit - 32) + (5/9). Also when temp > 0 it is not freezing temperature.
There is a solution that passes without looking for "three fifty". can we have a test for that?
does not contain "three fifty" test, yet still passes smh
Since a string is returned, it could make sense to add non-integer answer test cases.
This comment is hidden because it contains spoiler information about the solution