• + 1 comment

    Still broken!! Seems like the internal mechanism is counting the number of items in the list, which it uses to assert the test results. So output should be a list so it counts the number of elements. Purchased all test cases and for some wierd reason, even though testcase #1 and #2 fail, seems like #3 and #4 pass, and the output is an integer (total number of elements in the list) just like in the first 2.

    • + 0 comments

      ...was using IO.inspect without options, thats why it was failing, since inspect does not show the whole list if its too long, passing limit: :infinity to the inspect function's options fixed it. Nice!