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.
Thanks a lot. Converting rental_date to date type corrected the situation. I overlooked that rental_date was of type time_stamp. Probably because of this, the comparison with the date type was incorrect. I'll keep it on mind.
Very cool
The error in the path description:
For x = 1 and y = 1, the output should be 1.
Path:(0,0) --> (0,1) --> (1,1), 1 turn at (0,1)
Coordinates of the second point in the path are wrong (0,1). The correct coordinates is (1,0). The correct path is: Path:(0,0) --> (1,0) --> (1,1), 1 turn at (1,0).
The same error in the second example.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
I completely agree. Debugging was torture. Displaying the query result is required. There is no normal diagnostic information in the task.
Bad non-deterministic tests. The same solution failed the test with an incomprehensible error. At the next test of the same solution, suddenly the solution was passed. The result of the query is not displayed, the difference between the solution and the correct solution is not displayed in a tabular form with error highlighting. As a result, there is no normal diagnostic information for debugging.
The description isn't complete. The data schema of the "prospect" table is not fully specified - it has an "id" column that is not specified in the description.
This comment is hidden because it contains spoiler information about the solution
Using LIMIT 1 is fundamentally wrong. This cuts off some of the correct answers in the case when there are several pairs of actors with the maximum number of meetings. In the tests, there is only one pair of actors with the maximum number of meetings. However, in real life, there may be several pairs - correct answers. So in general this solution is wrong.
This comment is hidden because it contains spoiler information about the solution
bad trick
Great brilliant solution!
You're right
Loading more items...