Ad
  • Default User Avatar

    I see, I had thought the instructions would be specific to the chosen language. Thank you.

  • Default User Avatar

    (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)]

  • Default User Avatar

    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).