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.
Yeah, I did this originally as well... I think the tests should probably be changed to accept a list of tuples.
i think you missed it
"Your function will return a list of nodes"
i've done the same error too)
Hi I'm confused with this error message.
Your path is not the shortest path. Try again!:
[(0,0), (0,1), (0,2), (0,3), (1,3), (2,3), (2,2), (2,1), (3,1), (4,1), (4,2), (4,3), (4,4)] should equal
[(0,0), (0,1), (0,2), (0,3), (1,3), (2,3), (2,2), (2,1), (3,1), (4,1), (4,2), (4,3), (4,4)]
What went wrong with my output?
Did you modify the input? Because the pasted one is not the original test data.
If it would start at 12:15, then a 90-minute meeting would take until 13:45, which does not fit into A's schedule.
Hi,
A | 09:00 - 11:30, 13:30 - 16:00, 16:00 - 17:30, 17:45 - 19:00
B | 09:15 - 12:00, 14:00 - 16:30, 17:00 - 17:30
C | 11:30 - 12:15, 15:00 - 16:30, 17:45 - 19:00
I have been wondering why this case should return None if we want to find the available 90-minute meeting.
Isn't 12:15 the time we are looking for?
hi,
Many thanks :)
i just noticed that I misread the prompt!!
It was case-insensitive
a
appears twice and1
appears twice, there you have why 2 (one fora
and one for1
).Hi,
"aA11" -> 2 # 'a' and '1'
why 2? Isn't it supposed to count ONLY those that appear more than once?