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.
Well, it's a property of
circle
object. As JS is a dynamically typed language you have to either handle cases if there's no such property, or hope that everything will be okay ;)This comment is hidden because it contains spoiler information about the solution
As for Python, PEP8 says:
'Function names should be lowercase, with words separated by underscores as necessary to improve readability.'
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Test failed, though submission was successful in Python?
Python version, and perhaps other as well, requires function to be named remove_char, while it is not mentioned in the description.
This comment is hidden because it contains spoiler information about the solution
Thanks for reply. As for the style, it is not about what is doable, but what is the best practive. See for example:
http://www.sqlstyle.guide/
https://github.com/meadmaker/sql-style-guide
Following style rules like above allows to communicate effectively your code.
Sweet gods of query, that was fantastic! I am looing forward to more of your challenges.
To improve this one, I upvote for clearer description and prevention of using predetermined actors id to return the desired data.
Every query of currency table results in the below:
PG::UndefinedTable: ERROR: relation "currency" does not exist
LINE 1: SELECT count(*) AS "count" FROM (SELECT * FROM CURRENCY) AS ...
Moreover, please work on SQL style (like please don't name tables in UPPERCASES) as well as clarity of the question itself. Analysing existing approved SQL katas would give you strong impression how they should look like. Good luck with improving!
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Could please anyone advise, just for expanding our knowledge, how to make the table DISPLAY up to two decimal places? Meaning if a row returns 12.3, I would like to see 12.30. Much appreciated!
This comment is hidden because it contains spoiler information about the solution
Loading more items...