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.
I see, I had thought the instructions would be specific to the chosen language. Thank you.
(sorry, my first comments and getting used to the interface)
Thanks for the clarification on the function name.
I see the list of tuple response type in the Example section in the instructions:
Example:
convertFracs [(1, 2), (1, 3), (1, 4)]
shouldBe
[(6, 12), (4, 12), (3, 12)]For Python, the instructions indicate the return type should be a list of tuples.
convertFracs [(1, 2), (1, 3), (1, 4)]
shouldBe
[(6, 12), (4, 12), (3, 12)]But the tests expect the return type to be a list of lists.
Also the name of the function is different in the instructions (convertFracs) versus the tests (convert_fracts).