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.
Весьма оригинальное и неожиданное решение)
5.0/9.0 can just be 5/9 -- Python 3 automatically converts ints to floats when needed. That's why // (floor divide) is a thing.
Ideally it should be pothole_case(or snakecase as you call it). I guess they are used to typing in other languages more than Python?
But yes, they should not be in CamelCase.
Why are these naming the functions in camelcase (convertToCelsius) instead of snakecase (convert_to_celsius)?
I'm curious about whether setting a default parameter is wise here - what if somebody using this particular implementation decided to override the default with an argument? The code would fail to return the correct answer, as outlined in the specification. What are others' thoughts on this as a general practice?