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.
The test is actually correct; I got the same "error" as well, but if you include the minute at 12:15, up to and including 13:29, it comes out to exactly 90. An easy way to figure this out is by considering 9:00 to 9:04, which is a total of 5 minutes (9:00, 9:01, 9:02, 9:03, 9:04).
Javascript tests are broken. An input of:
[[["09:00","11:30"],["13:30","16:00"],["16:00","17:30"],["17:45","19:00"]],[["09:15","12:00"],["14:00","16:30"],["17:00","17:30"]],[["11:30","12:15"],["15:00","16:30"],["17:45","19:00"]]]
and duration of:
90
is expecting a return of
12.15
but this would collide with the meeting which begins at13:30
.Can this be fixed please? Thanks!
This comment is hidden because it contains spoiler information about the solution